github.com/shashidharatd/test-infra@v0.0.0-20171006011030-71304e1ca560/mungegithub/mungers/matchers/comment/BUILD (about) 1 package(default_visibility = ["//visibility:public"]) 2 3 load( 4 "@io_bazel_rules_go//go:def.bzl", 5 "go_library", 6 "go_test", 7 ) 8 9 go_test( 10 name = "go_default_test", 11 srcs = [ 12 "command_test.go", 13 "comment_test.go", 14 "finder_test.go", 15 "interactions_test.go", 16 "notification_test.go", 17 "operators_test.go", 18 "pinger_test.go", 19 ], 20 library = ":go_default_library", 21 ) 22 23 go_library( 24 name = "go_default_library", 25 srcs = [ 26 "command.go", 27 "comment.go", 28 "finder.go", 29 "interactions.go", 30 "notification.go", 31 "operators.go", 32 "pinger.go", 33 ], 34 deps = [ 35 "//mungegithub/github:go_default_library", 36 "//vendor/github.com/google/go-github/github:go_default_library", 37 ], 38 ) 39 40 filegroup( 41 name = "package-srcs", 42 srcs = glob(["**"]), 43 tags = ["automanaged"], 44 visibility = ["//visibility:private"], 45 ) 46 47 filegroup( 48 name = "all-srcs", 49 srcs = [":package-srcs"], 50 tags = ["automanaged"], 51 )