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

Side by Side Diff: blimp/common/proto/BUILD.gn

Issue 1450423002: Add glue between the client and engine for Blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@blimp_ipc2
Patch Set: Address comments! Created 5 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 group("proto") { 7 group("proto") {
8 public_deps = [ 8 public_deps = [
9 ":blimp_proto", 9 ":blimp_proto",
10 "//third_party/protobuf:protobuf_lite", 10 "//third_party/protobuf:protobuf_lite",
(...skipping 13 matching lines...) Expand all
24 # Only expose the target to the "blimp_proto" target. 24 # Only expose the target to the "blimp_proto" target.
25 visibility = [ ":blimp_proto" ] 25 visibility = [ ":blimp_proto" ]
26 26
27 sources = [ 27 sources = [
28 "blimp_message.proto", 28 "blimp_message.proto",
29 "common.proto", 29 "common.proto",
30 "compositor.proto", 30 "compositor.proto",
31 "control.proto", 31 "control.proto",
32 "input.proto", 32 "input.proto",
33 "navigation.proto", 33 "navigation.proto",
34 "render_widget.proto",
35 "size.proto",
34 ] 36 ]
35 37
36 cc_generator_options = "dllexport_decl=BLIMP_PROTO_EXPORT:" 38 cc_generator_options = "dllexport_decl=BLIMP_PROTO_EXPORT:"
37 cc_include = "blimp/common/proto/blimp_proto_export.h" 39 cc_include = "blimp/common/proto/blimp_proto_export.h"
38 40
39 defines = [ "BLIMP_PROTO_IMPLEMENTATION" ] 41 defines = [ "BLIMP_PROTO_IMPLEMENTATION" ]
40 42
41 # Warn if clang creates exit destructors 43 # Warn if clang creates exit destructors
42 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] 44 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ]
43 } 45 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698