aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/def_parser
diff options
context:
space:
mode:
authorGravatar Yun Peng <pcloudy@google.com>2017-09-04 13:47:21 +0200
committerGravatar Yun Peng <pcloudy@google.com>2017-09-05 09:56:25 +0200
commitf6fff466f022d7a174cb9d35d92dc8014e88854b (patch)
treee550c6bf749e0d9545c429214379130df45a6119 /third_party/def_parser
parent87c31aacfa16abfa781accf709947b6ff729beaf (diff)
Update visibilities of targets in def_parser
Change-Id: Ie8b7dfe207f05f69fdd4499c38cb8baefa3d997f
Diffstat (limited to 'third_party/def_parser')
-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__",
+ ],
)