OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//cc/cc.gni") | 6 import("//cc/cc.gni") |
7 import("//mojo/public/tools/bindings/mojom.gni") | 7 import("//mojo/public/tools/bindings/mojom.gni") |
8 | 8 |
9 cc_component("ipc") { | 9 cc_component("ipc") { |
10 output_name = "cc_ipc" | 10 output_name = "cc_ipc" |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 "filter_operations.mojom", | 46 "filter_operations.mojom", |
47 "frame_sink_id.mojom", | 47 "frame_sink_id.mojom", |
48 "local_frame_id.mojom", | 48 "local_frame_id.mojom", |
49 "mojo_compositor_frame_sink.mojom", | 49 "mojo_compositor_frame_sink.mojom", |
50 "quads.mojom", | 50 "quads.mojom", |
51 "render_pass.mojom", | 51 "render_pass.mojom", |
52 "returned_resource.mojom", | 52 "returned_resource.mojom", |
53 "selection.mojom", | 53 "selection.mojom", |
54 "shared_quad_state.mojom", | 54 "shared_quad_state.mojom", |
55 "surface_id.mojom", | 55 "surface_id.mojom", |
| 56 "surface_info.mojom", |
56 "surface_reference.mojom", | 57 "surface_reference.mojom", |
57 "surface_sequence.mojom", | 58 "surface_sequence.mojom", |
58 "transferable_resource.mojom", | 59 "transferable_resource.mojom", |
59 ] | 60 ] |
60 | 61 |
61 public_deps = [ | 62 public_deps = [ |
62 "//gpu/ipc/common:interfaces", | 63 "//gpu/ipc/common:interfaces", |
63 "//mojo/common:common_custom_types", | 64 "//mojo/common:common_custom_types", |
64 "//skia/public/interfaces", | 65 "//skia/public/interfaces", |
65 "//ui/events/mojo:interfaces", | 66 "//ui/events/mojo:interfaces", |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 "filter_operations_struct_traits.h", | 105 "filter_operations_struct_traits.h", |
105 "frame_sink_id_struct_traits.h", | 106 "frame_sink_id_struct_traits.h", |
106 "local_frame_id_struct_traits.h", | 107 "local_frame_id_struct_traits.h", |
107 "quads_struct_traits.cc", | 108 "quads_struct_traits.cc", |
108 "quads_struct_traits.h", | 109 "quads_struct_traits.h", |
109 "render_pass_struct_traits.cc", | 110 "render_pass_struct_traits.cc", |
110 "render_pass_struct_traits.h", | 111 "render_pass_struct_traits.h", |
111 "selection_struct_traits.h", | 112 "selection_struct_traits.h", |
112 "shared_quad_state_struct_traits.h", | 113 "shared_quad_state_struct_traits.h", |
113 "surface_id_struct_traits.h", | 114 "surface_id_struct_traits.h", |
| 115 "surface_info_struct_traits.h", |
114 "surface_reference_struct_traits.h", | 116 "surface_reference_struct_traits.h", |
115 "surface_sequence_struct_traits.h", | 117 "surface_sequence_struct_traits.h", |
116 "transferable_resource_struct_traits.cc", | 118 "transferable_resource_struct_traits.cc", |
117 "transferable_resource_struct_traits.h", | 119 "transferable_resource_struct_traits.h", |
118 ] | 120 ] |
119 public_deps = [ | 121 public_deps = [ |
120 ":interfaces_shared_cpp_sources", | 122 ":interfaces_shared_cpp_sources", |
121 "//base", | 123 "//base", |
122 "//cc", | 124 "//cc", |
123 "//cc/surfaces:surface_id", | 125 "//cc/surfaces:surface_id", |
124 "//gpu/ipc/common:struct_traits", | 126 "//gpu/ipc/common:struct_traits", |
125 "//mojo/common:struct_traits", | 127 "//mojo/common:struct_traits", |
126 "//skia/public/interfaces:struct_traits", | 128 "//skia/public/interfaces:struct_traits", |
127 "//ui/events:events_base", | 129 "//ui/events:events_base", |
128 "//ui/events/mojo:struct_traits", | 130 "//ui/events/mojo:struct_traits", |
129 "//ui/gfx", | 131 "//ui/gfx", |
130 "//ui/gfx:selection_bound", | 132 "//ui/gfx:selection_bound", |
131 "//ui/gfx/geometry/mojo:struct_traits", | 133 "//ui/gfx/geometry/mojo:struct_traits", |
132 "//ui/gfx/mojo:struct_traits", | 134 "//ui/gfx/mojo:struct_traits", |
133 ] | 135 ] |
134 } | 136 } |
OLD | NEW |