summaryrefslogtreecommitdiffhomepage
path: root/tools/yamltest/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tools/yamltest/BUILD')
-rw-r--r--tools/yamltest/BUILD13
1 files changed, 13 insertions, 0 deletions
diff --git a/tools/yamltest/BUILD b/tools/yamltest/BUILD
new file mode 100644
index 000000000..475b3badd
--- /dev/null
+++ b/tools/yamltest/BUILD
@@ -0,0 +1,13 @@
+load("//tools:defs.bzl", "go_binary")
+
+package(licenses = ["notice"])
+
+go_binary(
+ name = "yamltest",
+ srcs = ["main.go"],
+ visibility = ["//visibility:public"],
+ deps = [
+ "@com_github_xeipuuv_gojsonschema//:go_default_library",
+ "@in_gopkg_yaml_v2//:go_default_library",
+ ],
+)