diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2017-08-15 22:32:52 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2017-08-30 19:18:37 +0200 |
commit | 2bc5e3ac40fc1b6f7d329a1727c78e8a820d5cf6 (patch) | |
tree | 365c61709f4fbed6eaea31ded910f6f59a917356 /test/cpp/common/BUILD | |
parent | 30b4e74296e612ee404707c8b61b4fc11ba6aadc (diff) |
Moving visibility and package creation to the build system.
Diffstat (limited to 'test/cpp/common/BUILD')
-rw-r--r-- | test/cpp/common/BUILD | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/test/cpp/common/BUILD b/test/cpp/common/BUILD index be9c279f13..e2b6365b13 100644 --- a/test/cpp/common/BUILD +++ b/test/cpp/common/BUILD @@ -14,14 +14,9 @@ licenses(["notice"]) # Apache v2 -load("//bazel:grpc_build_system.bzl", "grpc_cc_test") +load("//bazel:grpc_build_system.bzl", "grpc_cc_test", "grpc_package") -package( - features = [ - "-layering_check", - "-parse_headers", - ], -) +grpc_package(name = "test/cpp/common") grpc_cc_test( name = "alarm_cpp_test", |