aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/microbenchmarks/BUILD
diff options
context:
space:
mode:
authorGravatar Jim King <jsking@google.com>2018-06-18 17:01:26 -0700
committerGravatar GitHub <noreply@github.com>2018-06-18 17:01:26 -0700
commit01cbab60f3602d353a73d139204fd0f5058a5c4a (patch)
tree3384420ab3dcf00513a03954159a84b8556ed87d /test/cpp/microbenchmarks/BUILD
parent34e7515cc62dffab608d655a66303eb7476aa29f (diff)
parentf9f0b54d381eb0aa5828c2190a7fd0cc1b949da9 (diff)
Merge pull request #15070 from Vizerai/filter_port
Adding opencensus grpc plugin with bazel support.
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 d51a0e3dc5..7b27aed4c3 100644
--- a/test/cpp/microbenchmarks/BUILD
+++ b/test/cpp/microbenchmarks/BUILD
@@ -149,3 +149,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",
+ ],
+)