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 ":proto_lib", | 9 ":blimp_proto", |
10 "//third_party/protobuf:protobuf_lite", | 10 "//third_party/protobuf:protobuf_lite", |
11 ] | 11 ] |
12 } | 12 } |
13 | 13 |
14 proto_library("proto_lib") { | 14 component("blimp_proto") { |
| 15 # Only expose the target to the "proto" group. |
| 16 visibility = [ ":proto" ] |
| 17 |
| 18 public_deps = [ |
| 19 ":proto_internal", |
| 20 ] |
| 21 } |
| 22 |
| 23 proto_library("proto_internal") { |
| 24 # Only expose the target to the "blimp_proto" target. |
| 25 visibility = [ ":blimp_proto" ] |
| 26 |
15 sources = [ | 27 sources = [ |
16 "blimp_message.proto", | 28 "blimp_message.proto", |
17 "common.proto", | 29 "common.proto", |
18 "compositor.proto", | 30 "compositor.proto", |
19 "control.proto", | 31 "control.proto", |
20 "input.proto", | 32 "input.proto", |
| 33 "navigation.proto", |
21 ] | 34 ] |
| 35 |
| 36 cc_generator_options = "dllexport_decl=BLIMP_PROTO_EXPORT:" |
| 37 cc_include = "blimp/common/proto/blimp_proto_export.h" |
| 38 |
| 39 defines = [ "BLIMP_PROTO_IMPLEMENTATION" ] |
| 40 |
| 41 # Warn if clang creates exit destructors |
| 42 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
22 } | 43 } |
OLD | NEW |