aboutsummaryrefslogtreecommitdiffhomepage
path: root/BUILD
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-07-20 14:26:10 -0700
committerGravatar ncteisen <ncteisen@gmail.com>2018-07-20 14:26:10 -0700
commita9cde770ff3654aec3e2c59379310ea0ecaf0039 (patch)
treeff44b7ce6408d2db0d8302f57bd0997b8fa628d5 /BUILD
parent8cb2d0c64afd9c766ea6b4c41f3125879091d08a (diff)
parent2a52d0ddef5c9a84e28aeda948eff33e33f0fa79 (diff)
Merge branch 'master' of https://github.com/grpc/grpc into channelz-subchannels
Diffstat (limited to 'BUILD')
-rw-r--r--BUILD20
1 files changed, 20 insertions, 0 deletions
diff --git a/BUILD b/BUILD
index 8523bbb660..1c80e83cca 100644
--- a/BUILD
+++ b/BUILD
@@ -2054,6 +2054,26 @@ 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",
+ ],
+ language = "c++",
+ public_hdrs = [
+ "include/grpcpp/ext/channelz_service_plugin.h",
+ ],
+ deps = [
+ ":grpc++",
+ "//src/proto/grpc/channelz:channelz_proto",
+ ],
+ alwayslink = 1,
+)
+
+grpc_cc_library(
name = "grpc++_test",
public_hdrs = [
"include/grpc++/test/mock_stream.h",