You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2021/02/05 06:51:33 UTC

[skywalking-data-collect-protocol] branch master updated: add cds proto definition into bazel (#46)

This is an automated email from the ASF dual-hosted git repository.

wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-data-collect-protocol.git


The following commit(s) were added to refs/heads/master by this push:
     new c3abc7e  add cds proto definition into bazel (#46)
c3abc7e is described below

commit c3abc7e3d245ca8002dcc1f9bc93d45bc10bd382
Author: Rei Shimizu <Sh...@gmail.com>
AuthorDate: Fri Feb 5 15:51:27 2021 +0900

    add cds proto definition into bazel (#46)
---
 language-agent/BUILD | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/language-agent/BUILD b/language-agent/BUILD
index 6ea7b94..60e9629 100644
--- a/language-agent/BUILD
+++ b/language-agent/BUILD
@@ -41,3 +41,22 @@ cc_grpc_library(
   grpc_only = True,
   generate_mocks = True,
 )
+
+proto_library(
+  name = "configuration_discovery_service_proto_lib",
+  srcs = ["ConfigurationDiscoveryService.proto"],
+  deps = ["//common:common_protocol_proto_lib"],
+)
+
+cc_proto_library(
+  name = "configuration_discovery_service_cc_proto",
+  deps = [":configuration_discovery_service_proto_lib"],
+)
+
+cc_grpc_library(
+  name = "configuration_discovery_service_cc_grpc",
+  srcs = [":configuration_discovery_service_proto_lib"],
+  deps = [":configuration_discovery_service_cc_proto"],
+  grpc_only = True,
+  generate_mocks = True,
+)