diff options
Diffstat (limited to 'tools/go_stateify/BUILD')
-rw-r--r-- | tools/go_stateify/BUILD | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tools/go_stateify/BUILD b/tools/go_stateify/BUILD new file mode 100644 index 000000000..edbeb4e2d --- /dev/null +++ b/tools/go_stateify/BUILD @@ -0,0 +1,9 @@ +package(licenses = ["notice"]) # Apache 2.0 + +load("@io_bazel_rules_go//go:def.bzl", "go_binary") + +go_binary( + name = "stateify", + srcs = ["main.go"], + visibility = ["//visibility:public"], +) |