diff options
author | Makarand Dharmapurikar <makarandd@google.com> | 2017-04-18 13:55:10 -0700 |
---|---|---|
committer | Makarand Dharmapurikar <makarandd@google.com> | 2017-04-18 13:55:10 -0700 |
commit | 466c286604479113bfcf04f8a20f2394da08e5b2 (patch) | |
tree | 9a76f35fdb681d097b5488f835f91c75d2c9f983 /test/core/security/BUILD | |
parent | 6a8e2c24088cdaa0291e12e6b2eeaa078a31f4b1 (diff) |
removed default visibility
Diffstat (limited to 'test/core/security/BUILD')
-rw-r--r-- | test/core/security/BUILD | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test/core/security/BUILD b/test/core/security/BUILD index 6ecda33309..a81e1d366b 100644 --- a/test/core/security/BUILD +++ b/test/core/security/BUILD @@ -29,8 +29,6 @@ licenses(["notice"]) # 3-clause BSD -package(default_visibility = ["//test/cpp:__subpackages__"],) - load("//test/core/util:grpc_fuzzer.bzl", "grpc_fuzzer") grpc_fuzzer( @@ -46,7 +44,8 @@ cc_library( srcs = ["oauth2_utils.c"], hdrs = ["oauth2_utils.h"], deps = ["//:grpc"], - copts = ['-std=c99'] + copts = ['-std=c99'], + visibility = ["//test/cpp:__subpackages__"], ) cc_test( |