summaryrefslogtreecommitdiffhomepage
path: root/pkg/state/statefile/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/state/statefile/BUILD')
-rw-r--r--pkg/state/statefile/BUILD22
1 files changed, 22 insertions, 0 deletions
diff --git a/pkg/state/statefile/BUILD b/pkg/state/statefile/BUILD
new file mode 100644
index 000000000..d6c89c7e9
--- /dev/null
+++ b/pkg/state/statefile/BUILD
@@ -0,0 +1,22 @@
+load("//tools:defs.bzl", "go_library", "go_test")
+
+package(licenses = ["notice"])
+
+go_library(
+ name = "statefile",
+ srcs = ["statefile.go"],
+ visibility = ["//:sandbox"],
+ deps = [
+ "//pkg/binary",
+ "//pkg/compressio",
+ "//pkg/state/wire",
+ ],
+)
+
+go_test(
+ name = "statefile_test",
+ size = "small",
+ srcs = ["statefile_test.go"],
+ library = ":statefile",
+ deps = ["//pkg/compressio"],
+)