summaryrefslogtreecommitdiffhomepage
path: root/pkg/context/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/context/BUILD')
-rw-r--r--pkg/context/BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/pkg/context/BUILD b/pkg/context/BUILD
new file mode 100644
index 000000000..239f31149
--- /dev/null
+++ b/pkg/context/BUILD
@@ -0,0 +1,13 @@
+load("//tools:defs.bzl", "go_library")
+
+package(licenses = ["notice"])
+
+go_library(
+ name = "context",
+ srcs = ["context.go"],
+ visibility = ["//:sandbox"],
+ deps = [
+ "//pkg/amutex",
+ "//pkg/log",
+ ],
+)