aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2017-05-09 00:55:27 +0200
committerGravatar Nicolas "Pixel" Noble <pixel@nobis-crew.org>2017-05-09 01:11:11 +0200
commitfec014b937bf8bed424e67eaffe9c8445e1712d1 (patch)
treeaae12a8ccedd58825caae337723a3090f3075766 /test
parent1c7cdd5f23e31987d61a0bb77aceaecca7f04571 (diff)
Adding metrics_server.
Diffstat (limited to 'test')
-rw-r--r--test/cpp/util/BUILD14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/cpp/util/BUILD b/test/cpp/util/BUILD
index 93aaeaa59f..56e8601a68 100644
--- a/test/cpp/util/BUILD
+++ b/test/cpp/util/BUILD
@@ -118,3 +118,17 @@ grpc_cc_library(
"protobuf_clib",
],
)
+
+grpc_cc_library(
+ name = "metrics_server_lib",
+ srcs = [
+ "metrics_server.cc",
+ ],
+ hdrs = [
+ "metrics_server.h",
+ ],
+ deps = [
+ "//src/proto/grpc/testing:metrics_proto",
+ "//:grpc++",
+ ],
+)