aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/microbenchmarks/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'test/cpp/microbenchmarks/BUILD')
-rw-r--r--test/cpp/microbenchmarks/BUILD14
1 files changed, 13 insertions, 1 deletions
diff --git a/test/cpp/microbenchmarks/BUILD b/test/cpp/microbenchmarks/BUILD
index 0efa88c9ab..b391f8766f 100644
--- a/test/cpp/microbenchmarks/BUILD
+++ b/test/cpp/microbenchmarks/BUILD
@@ -32,5 +32,17 @@ licenses(["notice"]) # 3-clause BSD
cc_test(
name = "noop-benchmark",
srcs = ["noop-benchmark.cc"],
- deps = ["//:grpc++", "//external:benchmark"],
+ deps = ["//external:benchmark"],
+)
+
+cc_test(
+ name = "bm_fullstack",
+ srcs = ["bm_fullstack.cc"],
+ deps = ["//:grpc++", "//external:benchmark", "//test/core/util:grpc_test_util", "//src/proto/grpc/testing:echo_proto"],
+)
+
+cc_test(
+ name = "bm_closure",
+ srcs = ["bm_closure.cc"],
+ deps = ["//:grpc", "//external:benchmark"],
)