aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/util/BUILD
diff options
context:
space:
mode:
authorGravatar David Garcia Quintas <dgq@google.com>2017-02-21 14:58:32 -0800
committerGravatar David Garcia Quintas <dgq@google.com>2017-02-21 14:58:32 -0800
commit388b24d5a13e61b08dbd411c1978982d1df536ec (patch)
tree010b049eaf43006a31e11bbe973bf71a8d425545 /test/cpp/util/BUILD
parente84d4213095a0d79fd1c069d568aa7ba95b571e3 (diff)
Added gflags dependency to test_config
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",
+ ],
)