summaryrefslogtreecommitdiffhomepage
path: root/tools/go_marshal/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tools/go_marshal/BUILD')
-rw-r--r--tools/go_marshal/BUILD14
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/go_marshal/BUILD b/tools/go_marshal/BUILD
new file mode 100644
index 000000000..c862b277c
--- /dev/null
+++ b/tools/go_marshal/BUILD
@@ -0,0 +1,14 @@
+load("@io_bazel_rules_go//go:def.bzl", "go_binary")
+
+package(licenses = ["notice"])
+
+go_binary(
+ name = "go_marshal",
+ srcs = ["main.go"],
+ visibility = [
+ "//:sandbox",
+ ],
+ deps = [
+ "//tools/go_marshal/gomarshal",
+ ],
+)