aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_rules/go/tools/filter_tags/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tools/build_rules/go/tools/filter_tags/BUILD')
-rw-r--r--tools/build_rules/go/tools/filter_tags/BUILD19
1 files changed, 0 insertions, 19 deletions
diff --git a/tools/build_rules/go/tools/filter_tags/BUILD b/tools/build_rules/go/tools/filter_tags/BUILD
deleted file mode 100644
index d1dc3faaa9..0000000000
--- a/tools/build_rules/go/tools/filter_tags/BUILD
+++ /dev/null
@@ -1,19 +0,0 @@
-package(default_visibility = ["//visibility:public"])
-
-load("//tools/build_rules/go:def.bzl", "go_prefix", "go_library", "go_binary", "go_test")
-
-go_library(
- name = "filter_tags_lib",
- srcs = ["filter_tags.go"],
-)
-
-go_binary(
- name = "filter_tags",
- library = ":filter_tags_lib",
-)
-
-go_test(
- name = "filter_tags_test",
- srcs = ["filter_tags_test.go"],
- library = ":filter_tags_lib",
-)