aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--third_party/def_parser/BUILD8
1 files changed, 7 insertions, 1 deletions
diff --git a/third_party/def_parser/BUILD b/third_party/def_parser/BUILD
index 4366a341da..9159a2ce32 100644
--- a/third_party/def_parser/BUILD
+++ b/third_party/def_parser/BUILD
@@ -15,6 +15,9 @@ cc_binary(
deps = [
":def_parser_lib",
],
+ visibility = [
+ "//src:__pkg__",
+ ],
)
py_test(
@@ -27,5 +30,8 @@ py_test(
filegroup(
name = "srcs",
srcs = glob(["**"]),
- visibility = ["//third_party:__pkg__"],
+ visibility = [
+ "//src:__pkg__",
+ "//third_party:__pkg__",
+ ],
)