diff options
author | Craig Tiller <ctiller@google.com> | 2017-05-01 14:26:49 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-05-01 14:26:49 -0700 |
commit | c610985aeb3931c53726e742707aa1a8b2fe84b9 (patch) | |
tree | 586cddcd4ed8380f659c681f9c5a4010553cffb0 /test/cpp | |
parent | b72a74ae039d666cf6cfc60477289c03dc5b5933 (diff) | |
parent | 50da5ec21d3d8be5e76b9809242821f9e5badba1 (diff) |
Merge branch 'hiertune' into epex4+epoll1
Diffstat (limited to 'test/cpp')
-rw-r--r-- | test/cpp/util/BUILD | 30 |
1 files changed, 27 insertions, 3 deletions
diff --git a/test/cpp/util/BUILD b/test/cpp/util/BUILD index c83f89eb90..9dde22b4d1 100644 --- a/test/cpp/util/BUILD +++ b/test/cpp/util/BUILD @@ -34,8 +34,8 @@ licenses(["notice"]) # 3-clause BSD cc_binary( name = "testso.so", srcs = [], - deps = ["//:grpc++_unsecure"], linkshared = 1, + deps = ["//:grpc++_unsecure"], ) cc_library( @@ -104,5 +104,29 @@ cc_test( ], ) - - +cc_binary( + name = "grpc_cli", + srcs = [ + "cli_call.cc", + "cli_call.h", + "cli_credentials.cc", + "cli_credentials.h", + "config_grpc_cli.h", + "grpc_cli.cc", + "grpc_tool.cc", + "grpc_tool.h", + "proto_file_parser.cc", + "proto_file_parser.h", + "proto_reflection_descriptor_database.cc", + "proto_reflection_descriptor_database.h", + "service_describer.cc", + "service_describer.h", + "test_config.h", + "test_config_cc.cc", + ], + deps = [ + "//:grpc++", + "//external:gflags", + "//src/proto/grpc/reflection/v1alpha:reflection_proto", + ], +) |