summaryrefslogtreecommitdiffhomepage
path: root/pkg/tmutex/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/tmutex/BUILD')
-rw-r--r--pkg/tmutex/BUILD17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/tmutex/BUILD b/pkg/tmutex/BUILD
new file mode 100644
index 000000000..5d1614d35
--- /dev/null
+++ b/pkg/tmutex/BUILD
@@ -0,0 +1,17 @@
+package(licenses = ["notice"]) # BSD
+
+load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
+
+go_library(
+ name = "tmutex",
+ srcs = ["tmutex.go"],
+ importpath = "gvisor.googlesource.com/gvisor/pkg/tmutex",
+ visibility = ["//:sandbox"],
+)
+
+go_test(
+ name = "tmutex_test",
+ size = "medium",
+ srcs = ["tmutex_test.go"],
+ embed = [":tmutex"],
+)