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

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

Issue 1324263003: Blimp: create MessageDispatcher class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp-protos
Patch Set: Fix tryserver entries. Created 5 years, 3 months 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 d5fc25d974fe2e6c643304a5231610641610c97d..4aaaf3977815269455aa48d3332152b639d0ad5f 100644
--- a/blimp/common/proto/BUILD.gn
+++ b/blimp/common/proto/BUILD.gn
@@ -4,7 +4,14 @@
import("//third_party/protobuf/proto_library.gni")
-proto_library("proto") {
+static_library("proto") {
Dirk Pranke 2015/10/01 00:50:48 my earlier question about why this isn't a group()
Kevin M 2015/10/01 21:41:21 Sorry, I didn't catch that comment. No reason why
+ public_deps = [
+ ":proto_lib",
+ "//third_party/protobuf:protobuf_lite",
+ ]
+}
+
+proto_library("proto_lib") {
sources = [
"blimp_message.proto",
"client_control.proto",

Powered by Google App Engine
This is Rietveld 408576698