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

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

Issue 2462183002: GRPC Stream implementation of HeliumStream
Patch Set: Fixed a few minor 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
Index: blimp/common/proto/BUILD.gn
diff --git a/blimp/common/proto/BUILD.gn b/blimp/common/proto/BUILD.gn
index c75c5b981a6fa763be725b33be793f23d1bf8611..6538ac1281c1df545249def929568b75a8c92316 100644
--- a/blimp/common/proto/BUILD.gn
+++ b/blimp/common/proto/BUILD.gn
@@ -1,4 +1,4 @@
-# Copyright 2015 The Chromium Authors. All rights reserved.
+# Copyright 2016 The Chromium Authors. All rights reserved.
Garrett Casto 2016/11/11 00:15:52 You don't change the copyright date when you updat
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
@@ -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" ]

Powered by Google App Engine
This is Rietveld 408576698