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("//mojo/public/tools/bindings/mojom.gni") | 6 import("//mojo/public/tools/bindings/mojom.gni") |
7 | 7 |
8 component("ipc") { | 8 component("ipc") { |
9 output_name = "cc_ipc" | 9 output_name = "cc_ipc" |
10 | 10 |
(...skipping 25 matching lines...) Expand all Loading... |
36 ] | 36 ] |
37 } | 37 } |
38 | 38 |
39 mojom("interfaces") { | 39 mojom("interfaces") { |
40 sources = [ | 40 sources = [ |
41 "begin_frame_args.mojom", | 41 "begin_frame_args.mojom", |
42 "compositor_frame.mojom", | 42 "compositor_frame.mojom", |
43 "compositor_frame_metadata.mojom", | 43 "compositor_frame_metadata.mojom", |
44 "filter_operation.mojom", | 44 "filter_operation.mojom", |
45 "filter_operations.mojom", | 45 "filter_operations.mojom", |
| 46 "mojo_compositor_frame_sink.mojom", |
46 "quads.mojom", | 47 "quads.mojom", |
47 "render_pass.mojom", | 48 "render_pass.mojom", |
48 "render_pass_id.mojom", | 49 "render_pass_id.mojom", |
49 "returned_resource.mojom", | 50 "returned_resource.mojom", |
50 "selection.mojom", | 51 "selection.mojom", |
51 "shared_quad_state.mojom", | 52 "shared_quad_state.mojom", |
52 "surface_id.mojom", | 53 "surface_id.mojom", |
53 "surface_sequence.mojom", | 54 "surface_sequence.mojom", |
54 "transferable_resource.mojom", | 55 "transferable_resource.mojom", |
55 ] | 56 ] |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 "//mojo/common:struct_traits", | 105 "//mojo/common:struct_traits", |
105 "//skia/public/interfaces:struct_traits", | 106 "//skia/public/interfaces:struct_traits", |
106 "//ui/events:events_base", | 107 "//ui/events:events_base", |
107 "//ui/events/mojo:struct_traits", | 108 "//ui/events/mojo:struct_traits", |
108 "//ui/gfx", | 109 "//ui/gfx", |
109 "//ui/gfx:selection_bound", | 110 "//ui/gfx:selection_bound", |
110 "//ui/gfx/geometry/mojo:struct_traits", | 111 "//ui/gfx/geometry/mojo:struct_traits", |
111 "//ui/gfx/mojo:struct_traits", | 112 "//ui/gfx/mojo:struct_traits", |
112 ] | 113 ] |
113 } | 114 } |
OLD | NEW |