aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/build_rules/go/tools/filter_tags/BUILD
blob: d1dc3faaa9e29c7fd45af2289b7f521ce82dc5b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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",
)