Merge pull request #16914 from soheilhy/worktree-bench

Fix bazel for //test/cpp/microbenchmarks/...
pull/16737/merge
Soheil Hassas Yeganeh 6 years ago committed by GitHub
commit 56f77e7163
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      test/cpp/microbenchmarks/BUILD

@ -24,7 +24,7 @@ grpc_cc_test(
external_deps = [
"benchmark",
],
deps = ["//test/core/util:gpr_test_util",]
deps = ["//test/core/util:gpr_test_util"],
)
grpc_cc_library(
@ -41,6 +41,7 @@ grpc_cc_library(
],
deps = [
"//:grpc++_unsecure",
"//:lb_server_load_reporting_filter",
"//src/proto/grpc/testing:echo_proto",
"//test/core/util:grpc_test_util_unsecure",
"//test/cpp/util:test_config",
@ -68,6 +69,13 @@ grpc_cc_binary(
deps = [":helpers"],
)
grpc_cc_binary(
name = "bm_call_create",
testonly = 1,
srcs = ["bm_call_create.cc"],
deps = [":helpers"],
)
grpc_cc_binary(
name = "bm_cq",
testonly = 1,

Loading…
Cancel
Save