Fix microbenchmarks BUILD file

pull/12402/head
Alok Kumar 8 years ago
parent 1165026d99
commit dd9916d364
  1. 18
      test/cpp/microbenchmarks/BUILD

@ -81,16 +81,20 @@ grpc_cc_binary(
grpc_cc_binary(
name = "bm_fullstack_streaming_ping_pong",
testonly = 1,
srcs = ["bm_fullstack_streaming_ping_pong.cc"],
hdrs = ["fullstack_streaming_ping_pong.h"],
srcs = [
"bm_fullstack_streaming_ping_pong.cc",
"fullstack_streaming_ping_pong.h",
],
deps = [":helpers"],
)
grpc_cc_binary(
name = "bm_fullstack_streaming_pump",
testonly = 1,
srcs = ["bm_fullstack_streaming_pump.cc"],
hdrs = ["fullstack_streaming_pump.h"],
srcs = [
"bm_fullstack_streaming_pump.cc",
"fullstack_streaming_pump.h",
],
deps = [":helpers"],
)
@ -107,8 +111,10 @@ grpc_cc_binary(
grpc_cc_binary(
name = "bm_fullstack_unary_ping_pong",
testonly = 1,
srcs = ["bm_fullstack_unary_ping_pong.cc"],
hdrs = ["fullstack_unary_ping_pong.h"],
srcs = [
"bm_fullstack_unary_ping_pong.cc",
"fullstack_unary_ping_pong.h",
],
deps = [":helpers"],
)

Loading…
Cancel
Save