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 # Use a group here to allow external targets to depend on "cc/proto" instead of | 7 # Use a group here to allow external targets to depend on "cc/proto" instead of |
8 # cc/proto:cc_proto. We need a group because other component targets are named | 8 # cc/proto:cc_proto. We need a group because other component targets are named |
9 # "proto" which breaks component builds. A group doesn't have the same issue. | 9 # "proto" which breaks component builds. A group doesn't have the same issue. |
10 group("proto") { | 10 group("proto") { |
(...skipping 18 matching lines...) Expand all Loading... |
29 sources = [ | 29 sources = [ |
30 # TODO(dtrainor): Move protos to their correct packages once it's possible | 30 # TODO(dtrainor): Move protos to their correct packages once it's possible |
31 # to include protos from other directories/targets (crbug.com/542423). | 31 # to include protos from other directories/targets (crbug.com/542423). |
32 "compositor_message.proto", | 32 "compositor_message.proto", |
33 "display_item.proto", | 33 "display_item.proto", |
34 "display_list_recording_source.proto", | 34 "display_list_recording_source.proto", |
35 "layer.proto", | 35 "layer.proto", |
36 "layer_position_constraint.proto", | 36 "layer_position_constraint.proto", |
37 "layer_selection_bound.proto", | 37 "layer_selection_bound.proto", |
38 "layer_tree_debug_state.proto", | 38 "layer_tree_debug_state.proto", |
| 39 "layer_tree_host.proto", |
39 "layer_tree_settings.proto", | 40 "layer_tree_settings.proto", |
40 "managed_memory_policy.proto", | 41 "managed_memory_policy.proto", |
41 "memory_allocation.proto", | 42 "memory_allocation.proto", |
42 "point.proto", | 43 "point.proto", |
43 "point3f.proto", | 44 "point3f.proto", |
44 "pointf.proto", | 45 "pointf.proto", |
45 "property_tree.proto", | 46 "property_tree.proto", |
46 "rect.proto", | 47 "rect.proto", |
47 "rectf.proto", | 48 "rectf.proto", |
48 "region.proto", | 49 "region.proto", |
(...skipping 13 matching lines...) Expand all Loading... |
62 ] | 63 ] |
63 | 64 |
64 cc_generator_options = "dllexport_decl=CC_PROTO_EXPORT:" | 65 cc_generator_options = "dllexport_decl=CC_PROTO_EXPORT:" |
65 cc_include = "cc/proto/cc_proto_export.h" | 66 cc_include = "cc/proto/cc_proto_export.h" |
66 | 67 |
67 defines = [ "CC_PROTO_IMPLEMENTATION" ] | 68 defines = [ "CC_PROTO_IMPLEMENTATION" ] |
68 | 69 |
69 # Warn if clang creates exit destructors. | 70 # Warn if clang creates exit destructors. |
70 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] | 71 extra_configs = [ "//build/config/compiler:wexit_time_destructors" ] |
71 } | 72 } |
OLD | NEW |