diff options
author | Sree Kuchibhotla <sreek@google.com> | 2017-02-22 10:45:13 -0800 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2017-02-22 10:45:13 -0800 |
commit | e8a1a50465d944ef321481e9a10f17a5284a0fa4 (patch) | |
tree | a4de8125264f7555b2f35d5c6a5da19995357180 /test/cpp/util/BUILD | |
parent | fac16f6d3dc272c354ce5bad9900720359b64b61 (diff) | |
parent | 81f81c26f6c309eb6e8f7ce499f8ad9f9de40609 (diff) |
Merge branch 'master' into surface_test_bazel
Diffstat (limited to 'test/cpp/util/BUILD')
-rw-r--r-- | test/cpp/util/BUILD | 13 |
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", + ], ) |