aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/microbenchmarks/BUILD
diff options
context:
space:
mode:
authorGravatar Vizerai <jsking@google.com>2018-05-10 13:26:23 -0700
committerGravatar Vizerai <jsking@google.com>2018-05-10 13:26:23 -0700
commit95393cf5304ba0a5a1eb3e3c9720c25f70ac519c (patch)
treef7a90812c600d07b42782e8298497b930cd962f5 /test/cpp/microbenchmarks/BUILD
parent41e4cedb7012a55376322b142d74eae5e86b95e3 (diff)
Fixed opencensus benchmark to be compliant with grpc benchmarks.
Diffstat (limited to 'test/cpp/microbenchmarks/BUILD')
-rw-r--r--test/cpp/microbenchmarks/BUILD12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/cpp/microbenchmarks/BUILD b/test/cpp/microbenchmarks/BUILD
index 67f7e440b0..247a2e9d5d 100644
--- a/test/cpp/microbenchmarks/BUILD
+++ b/test/cpp/microbenchmarks/BUILD
@@ -150,3 +150,15 @@ grpc_cc_binary(
srcs = ["bm_chttp2_hpack.cc"],
deps = [":helpers"],
)
+
+grpc_cc_binary(
+ name = "bm_opencensus_plugin",
+ testonly = 1,
+ srcs = ["bm_opencensus_plugin.cc"],
+ language = "C++",
+ deps = [
+ ":helpers",
+ "//:grpc_opencensus_plugin",
+ "//src/proto/grpc/testing:echo_proto",
+ ],
+)