diff options
author | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2017-04-13 01:40:54 +0200 |
---|---|---|
committer | Nicolas "Pixel" Noble <pixel@nobis-crew.org> | 2017-04-13 02:03:22 +0200 |
commit | 7c26eed8388c131dc5833f554414eebb6107b0cd (patch) | |
tree | 3f67e98b2f4433831af3c83208a8720ccf904041 /test/core/client_channel/BUILD | |
parent | 9c54a0c12cbb55dd96a50074868ad55126b356b9 (diff) |
Buildifier and wrapping test/cpp/* rules with our build system.
Diffstat (limited to 'test/core/client_channel/BUILD')
-rw-r--r-- | test/core/client_channel/BUILD | 24 |
1 files changed, 17 insertions, 7 deletions
diff --git a/test/core/client_channel/BUILD b/test/core/client_channel/BUILD index 55a74c6d01..78d351a77f 100644 --- a/test/core/client_channel/BUILD +++ b/test/core/client_channel/BUILD @@ -32,16 +32,26 @@ licenses(["notice"]) # 3-clause BSD load("//test/core/util:grpc_fuzzer.bzl", "grpc_fuzzer") grpc_fuzzer( - name = "uri_fuzzer_test", - srcs = ["uri_fuzzer_test.c"], - deps = ["//:gpr", "//:grpc", "//test/core/util:grpc_test_util"], - corpus = "uri_corpus", - copts = ["-std=c99"], + name = "uri_fuzzer_test", + srcs = ["uri_fuzzer_test.c"], + copts = ["-std=c99"], + corpus = "uri_corpus", + deps = [ + "//:gpr", + "//:grpc", + "//test/core/util:grpc_test_util", + ], ) cc_test( name = "lb_policies_test", srcs = ["lb_policies_test.c"], - deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util", "//test/core/end2end:cq_verifier"], - copts = ['-std=c99'] + copts = ["-std=c99"], + deps = [ + "//:gpr", + "//:grpc", + "//test/core/end2end:cq_verifier", + "//test/core/util:gpr_test_util", + "//test/core/util:grpc_test_util", + ], ) |