Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Unified Diff: blimp/common/proto/BUILD.gn

Issue 2462183002: GRPC Stream implementation of HeliumStream
Patch Set: Address gcasto comments Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « blimp/common/DEPS ('k') | blimp/common/proto/helium_service.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/common/proto/BUILD.gn
diff --git a/blimp/common/proto/BUILD.gn b/blimp/common/proto/BUILD.gn
index c75c5b981a6fa763be725b33be793f23d1bf8611..bbaa6e6477db972b3606061c3069ded363b2267e 100644
--- a/blimp/common/proto/BUILD.gn
+++ b/blimp/common/proto/BUILD.gn
@@ -7,6 +7,7 @@ import("//third_party/protobuf/proto_library.gni")
group("proto") {
public_deps = [
":blimp_proto",
+ ":helium_service",
"//third_party/protobuf:protobuf_lite",
]
}
@@ -16,10 +17,24 @@ component("blimp_proto") {
visibility = [ ":proto" ]
public_deps = [
+ ":helium_service",
":proto_internal",
]
}
+proto_library("helium_service") {
+ sources = [
+ "helium_service.proto",
+ ]
+
+ generator_plugin_label = "//third_party/grpc:grpc_cpp_plugin"
+ generator_plugin_suffix = ".grpc.pb"
+
+ deps = [
+ "//third_party/grpc:grpc++_unsecure",
+ ]
+}
+
proto_library("proto_internal") {
# Only expose the target to the "blimp_proto" target.
visibility = [ ":blimp_proto" ]
« no previous file with comments | « blimp/common/DEPS ('k') | blimp/common/proto/helium_service.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698