diff options
author | Soheil Hassas Yeganeh <soheil@google.com> | 2018-10-17 16:27:59 -0400 |
---|---|---|
committer | Soheil Hassas Yeganeh <soheil@google.com> | 2018-10-17 16:27:59 -0400 |
commit | cc5fe63da0785a4f29346ac43e529d924c6f338d (patch) | |
tree | b82f9a17cbf325d91c934007533a5f6bd35b7b13 /test | |
parent | 17048446cc034eec2c35d16eab3e1640453111ec (diff) |
Fix bazel for //test/cpp/microbenchmarks/...
Fix a build failure due to missed dependency and add the bm_create_call
benchmark to the build targets.
Diffstat (limited to 'test')
-rw-r--r-- | test/cpp/microbenchmarks/BUILD | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/test/cpp/microbenchmarks/BUILD b/test/cpp/microbenchmarks/BUILD index 0c3b9ef816..6c1859ff4f 100644 --- a/test/cpp/microbenchmarks/BUILD +++ b/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", @@ -69,6 +70,13 @@ grpc_cc_binary( ) grpc_cc_binary( + name = "bm_call_create", + testonly = 1, + srcs = ["bm_call_create.cc"], + deps = [":helpers"], +) + +grpc_cc_binary( name = "bm_cq", testonly = 1, srcs = ["bm_cq.cc"], |