diff options
author | Alok Kumar <kumaralok@google.com> | 2017-09-05 17:54:56 -0700 |
---|---|---|
committer | Alok Kumar <kumaralok@google.com> | 2017-09-06 17:14:38 -0700 |
commit | e0399c29c5b062e97be419eeeca9b8164a39ac23 (patch) | |
tree | cbe06ef35b2128232fad6b6368724b99ddc04bc7 /test/cpp/microbenchmarks/BUILD | |
parent | 7a8488c4d2b0274c7c71cd15d39f0cf277a3a119 (diff) |
Partition microbenchmarks to be easily sharable for google specific transports
Diffstat (limited to 'test/cpp/microbenchmarks/BUILD')
-rw-r--r-- | test/cpp/microbenchmarks/BUILD | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/test/cpp/microbenchmarks/BUILD b/test/cpp/microbenchmarks/BUILD index fc0294da56..ad7b393c86 100644 --- a/test/cpp/microbenchmarks/BUILD +++ b/test/cpp/microbenchmarks/BUILD @@ -40,14 +40,14 @@ grpc_cc_library( "fullstack_fixtures.h", "helpers.h", ], + external_deps = [ + "benchmark", + ], deps = [ "//:grpc++_unsecure", "//src/proto/grpc/testing:echo_proto", "//test/core/util:grpc_test_util_unsecure", ], - external_deps = [ - "benchmark", - ], ) grpc_cc_binary( @@ -82,6 +82,7 @@ grpc_cc_binary( name = "bm_fullstack_streaming_ping_pong", testonly = 1, srcs = ["bm_fullstack_streaming_ping_pong.cc"], + hdrs = ["fullstack_streaming_ping_pong.h"], deps = [":helpers"], ) @@ -89,6 +90,7 @@ grpc_cc_binary( name = "bm_fullstack_streaming_pump", testonly = 1, srcs = ["bm_fullstack_streaming_pump.cc"], + hdrs = ["fullstack_streaming_pump.h"], deps = [":helpers"], ) @@ -97,8 +99,8 @@ grpc_cc_binary( testonly = 1, srcs = ["bm_fullstack_trickle.cc"], deps = [ - ":helpers", - "//test/cpp/util:test_config", + ":helpers", + "//test/cpp/util:test_config", ], ) @@ -106,6 +108,7 @@ grpc_cc_binary( name = "bm_fullstack_unary_ping_pong", testonly = 1, srcs = ["bm_fullstack_unary_ping_pong.cc"], + hdrs = ["fullstack_unary_ping_pong.h"], deps = [":helpers"], ) |