aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/util/BUILD
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2017-02-24 17:00:42 -0800
committerGravatar Craig Tiller <ctiller@google.com>2017-02-24 17:00:42 -0800
commitf30194f157c1027de4579b091a9e1be1621c4a55 (patch)
treeb5d4dcab5d34b04cae602c875806d50d19837aab /test/cpp/util/BUILD
parent510f38a711a15aa0e4c87f4677dbdfe2da32cb81 (diff)
parentef33c8752f2020aa305e9965b594dc8a92a95629 (diff)
Merge branch 'bm_meta' of github.com:ctiller/grpc into bm_meta
Diffstat (limited to 'test/cpp/util/BUILD')
-rw-r--r--test/cpp/util/BUILD13
1 files changed, 10 insertions, 3 deletions
diff --git a/test/cpp/util/BUILD b/test/cpp/util/BUILD
index 78eca8c3bd..f3cdc58986 100644
--- a/test/cpp/util/BUILD
+++ b/test/cpp/util/BUILD
@@ -37,14 +37,17 @@ cc_library(
hdrs = [
"test_config.h",
],
- deps = ["//:gpr"],
visibility = ["//test:__subpackages__"],
+ deps = [
+ "//:gpr",
+ "//external:gflags",
+ ],
)
cc_library(
name = "test_util",
srcs = [
-# "test/cpp/end2end/test_service_impl.cc",
+ # "test/cpp/end2end/test_service_impl.cc",
"byte_buffer_proto_helper.cc",
"create_test_channel.cc",
"string_ref_helper.cc",
@@ -58,6 +61,10 @@ cc_library(
"subprocess.h",
"test_credentials_provider.h",
],
- deps = ["//test/core/util:gpr_test_util", "//:grpc++", "//test/core/end2end:ssl_test_data"],
visibility = ["//test:__subpackages__"],
+ deps = [
+ "//:grpc++",
+ "//test/core/end2end:ssl_test_data",
+ "//test/core/util:gpr_test_util",
+ ],
)