aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-07-16 22:24:53 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2018-07-18 18:24:19 -0700
commitc194528844ece0d18035a29453c0dd53c0bc738b (patch)
tree34963157d41281306ff6384136ad1b79a477553e /BUILD
parent481c1d57e7fc92f74c79b9aa0f7c8f0eaa51000b (diff)
Adds C++ Channelz Service
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD18
1 files changed, 18 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 8523bbb660..8bb98862e3 100644
--- a/BUILD
+++ b/BUILD
@@ -2054,6 +2054,24 @@ grpc_cc_library(
)
grpc_cc_library(
+ name = "grpcpp_channelz",
+ srcs = [
+ "src/cpp/server/channelz/channelz_service.cc",
+ "src/cpp/server/channelz/channelz_service_plugin.cc",
+ ],
+ hdrs = [
+ "src/cpp/server/channelz/channelz_service.h",
+ "src/cpp/server/channelz/channelz_service_plugin.h",
+ ],
+ language = "c++",
+ deps = [
+ ":grpc++",
+ "//src/proto/grpc/channelz:channelz_proto",
+ ],
+ alwayslink = 1,
+)
+
+grpc_cc_library(
name = "grpc++_test",
public_hdrs = [
"include/grpc++/test/mock_stream.h",