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/core/http/BUILD | |
parent | 30b4e74296e612ee404707c8b61b4fc11ba6aadc (diff) |
Moving visibility and package creation to the build system.
Diffstat (limited to 'test/core/http/BUILD')
-rw-r--r-- | test/core/http/BUILD | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/test/core/http/BUILD b/test/core/http/BUILD index 28313082c6..fffdac5e08 100644 --- a/test/core/http/BUILD +++ b/test/core/http/BUILD @@ -12,16 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -load("//bazel:grpc_build_system.bzl", "grpc_cc_library", "grpc_cc_test", "grpc_cc_binary") +load("//bazel:grpc_build_system.bzl", "grpc_cc_library", "grpc_cc_test", "grpc_cc_binary", "grpc_package") -licenses(["notice"]) # Apache v2 +grpc_package(name = "test/core/http") -package( - features = [ - "-layering_check", - "-parse_headers", - ], -) +licenses(["notice"]) # Apache v2 load("//test/core/util:grpc_fuzzer.bzl", "grpc_fuzzer") |