OLD | NEW |
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 14 matching lines...) Expand all Loading... |
25 visibility = [ ":blimp_proto" ] | 25 visibility = [ ":blimp_proto" ] |
26 | 26 |
27 sources = [ | 27 sources = [ |
28 "blimp_message.proto", | 28 "blimp_message.proto", |
29 "compositor.proto", | 29 "compositor.proto", |
30 "ime.proto", | 30 "ime.proto", |
31 "input.proto", | 31 "input.proto", |
32 "navigation.proto", | 32 "navigation.proto", |
33 "protocol_control.proto", | 33 "protocol_control.proto", |
34 "render_widget.proto", | 34 "render_widget.proto", |
| 35 "settings.proto", |
35 "tab_control.proto", | 36 "tab_control.proto", |
36 ] | 37 ] |
37 | 38 |
38 cc_generator_options = "dllexport_decl=BLIMP_PROTO_EXPORT:" | 39 cc_generator_options = "dllexport_decl=BLIMP_PROTO_EXPORT:" |
39 cc_include = "blimp/common/proto/blimp_proto_export.h" | 40 cc_include = "blimp/common/proto/blimp_proto_export.h" |
40 | 41 |
41 defines = [ "BLIMP_PROTO_IMPLEMENTATION" ] | 42 defines = [ "BLIMP_PROTO_IMPLEMENTATION" ] |
42 | 43 |
43 # Warn if clang creates exit destructors | 44 # Warn if clang creates exit destructors |
44 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] | 45 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
45 } | 46 } |
OLD | NEW |