| 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 23 matching lines...) Expand all Loading... |
| 34 "//ui/gfx/ipc/geometry", | 34 "//ui/gfx/ipc/geometry", |
| 35 "//ui/gfx/ipc/skia", | 35 "//ui/gfx/ipc/skia", |
| 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 "display_compositor.mojom", |
| 44 "filter_operation.mojom", | 45 "filter_operation.mojom", |
| 45 "filter_operations.mojom", | 46 "filter_operations.mojom", |
| 46 "frame_sink_id.mojom", | 47 "frame_sink_id.mojom", |
| 47 "local_frame_id.mojom", | 48 "local_frame_id.mojom", |
| 48 "mojo_compositor_frame_sink.mojom", | 49 "mojo_compositor_frame_sink.mojom", |
| 49 "quads.mojom", | 50 "quads.mojom", |
| 50 "render_pass.mojom", | 51 "render_pass.mojom", |
| 51 "render_pass_id.mojom", | 52 "render_pass_id.mojom", |
| 52 "returned_resource.mojom", | 53 "returned_resource.mojom", |
| 53 "selection.mojom", | 54 "selection.mojom", |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 "//mojo/common:struct_traits", | 110 "//mojo/common:struct_traits", |
| 110 "//skia/public/interfaces:struct_traits", | 111 "//skia/public/interfaces:struct_traits", |
| 111 "//ui/events:events_base", | 112 "//ui/events:events_base", |
| 112 "//ui/events/mojo:struct_traits", | 113 "//ui/events/mojo:struct_traits", |
| 113 "//ui/gfx", | 114 "//ui/gfx", |
| 114 "//ui/gfx:selection_bound", | 115 "//ui/gfx:selection_bound", |
| 115 "//ui/gfx/geometry/mojo:struct_traits", | 116 "//ui/gfx/geometry/mojo:struct_traits", |
| 116 "//ui/gfx/mojo:struct_traits", | 117 "//ui/gfx/mojo:struct_traits", |
| 117 ] | 118 ] |
| 118 } | 119 } |
| OLD | NEW |