summaryrefslogtreecommitdiffhomepage
path: root/third_party/gvsync/seqatomictest/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/gvsync/seqatomictest/BUILD')
-rw-r--r--third_party/gvsync/seqatomictest/BUILD35
1 files changed, 35 insertions, 0 deletions
diff --git a/third_party/gvsync/seqatomictest/BUILD b/third_party/gvsync/seqatomictest/BUILD
new file mode 100644
index 000000000..d83149e81
--- /dev/null
+++ b/third_party/gvsync/seqatomictest/BUILD
@@ -0,0 +1,35 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
+
+package(licenses = ["notice"])
+
+load("//tools/go_generics:defs.bzl", "go_template_instance")
+
+go_template_instance(
+ name = "seqatomic_int",
+ out = "seqatomic_int.go",
+ package = "seqatomic",
+ suffix = "Int",
+ template = "//third_party/gvsync:generic_seqatomic",
+ types = {
+ "Value": "int",
+ },
+)
+
+go_library(
+ name = "seqatomic",
+ srcs = ["seqatomic_int.go"],
+ importpath = "gvisor.googlesource.com/gvisor/third_party/gvsync/seqatomic",
+ deps = [
+ "//third_party/gvsync",
+ ],
+)
+
+go_test(
+ name = "seqatomic_test",
+ size = "small",
+ srcs = ["seqatomic_test.go"],
+ embed = [":seqatomic"],
+ deps = [
+ "//third_party/gvsync",
+ ],
+)