| 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 46 "frame_sink_id.mojom", | 46 "frame_sink_id.mojom", |
| 47 "local_frame_id.mojom", | 47 "local_frame_id.mojom", |
| 48 "mojo_compositor_frame_sink.mojom", | 48 "mojo_compositor_frame_sink.mojom", |
| 49 "quads.mojom", | 49 "quads.mojom", |
| 50 "render_pass.mojom", | 50 "render_pass.mojom", |
| 51 "render_pass_id.mojom", | 51 "render_pass_id.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_reference.mojom", |
| 56 "surface_sequence.mojom", | 57 "surface_sequence.mojom", |
| 57 "transferable_resource.mojom", | 58 "transferable_resource.mojom", |
| 58 ] | 59 ] |
| 59 | 60 |
| 60 public_deps = [ | 61 public_deps = [ |
| 61 "//gpu/ipc/common:interfaces", | 62 "//gpu/ipc/common:interfaces", |
| 62 "//mojo/common:common_custom_types", | 63 "//mojo/common:common_custom_types", |
| 63 "//skia/public/interfaces", | 64 "//skia/public/interfaces", |
| 64 "//ui/events/mojo:interfaces", | 65 "//ui/events/mojo:interfaces", |
| 65 "//ui/gfx/geometry/mojo", | 66 "//ui/gfx/geometry/mojo", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 "frame_sink_id_struct_traits.h", | 104 "frame_sink_id_struct_traits.h", |
| 104 "local_frame_id_struct_traits.h", | 105 "local_frame_id_struct_traits.h", |
| 105 "quads_struct_traits.cc", | 106 "quads_struct_traits.cc", |
| 106 "quads_struct_traits.h", | 107 "quads_struct_traits.h", |
| 107 "render_pass_id_struct_traits.h", | 108 "render_pass_id_struct_traits.h", |
| 108 "render_pass_struct_traits.cc", | 109 "render_pass_struct_traits.cc", |
| 109 "render_pass_struct_traits.h", | 110 "render_pass_struct_traits.h", |
| 110 "selection_struct_traits.h", | 111 "selection_struct_traits.h", |
| 111 "shared_quad_state_struct_traits.h", | 112 "shared_quad_state_struct_traits.h", |
| 112 "surface_id_struct_traits.h", | 113 "surface_id_struct_traits.h", |
| 114 "surface_reference_struct_traits.h", |
| 113 "surface_sequence_struct_traits.h", | 115 "surface_sequence_struct_traits.h", |
| 114 "transferable_resource_struct_traits.cc", | 116 "transferable_resource_struct_traits.cc", |
| 115 "transferable_resource_struct_traits.h", | 117 "transferable_resource_struct_traits.h", |
| 116 ] | 118 ] |
| 117 public_deps = [ | 119 public_deps = [ |
| 118 ":interfaces_shared_cpp_sources", | 120 ":interfaces_shared_cpp_sources", |
| 119 "//base", | 121 "//base", |
| 120 "//cc", | 122 "//cc", |
| 121 "//cc/surfaces:surface_id", | 123 "//cc/surfaces:surface_id", |
| 122 "//gpu/ipc/common:struct_traits", | 124 "//gpu/ipc/common:struct_traits", |
| 123 "//mojo/common:struct_traits", | 125 "//mojo/common:struct_traits", |
| 124 "//skia/public/interfaces:struct_traits", | 126 "//skia/public/interfaces:struct_traits", |
| 125 "//ui/events:events_base", | 127 "//ui/events:events_base", |
| 126 "//ui/events/mojo:struct_traits", | 128 "//ui/events/mojo:struct_traits", |
| 127 "//ui/gfx", | 129 "//ui/gfx", |
| 128 "//ui/gfx:selection_bound", | 130 "//ui/gfx:selection_bound", |
| 129 "//ui/gfx/geometry/mojo:struct_traits", | 131 "//ui/gfx/geometry/mojo:struct_traits", |
| 130 "//ui/gfx/mojo:struct_traits", | 132 "//ui/gfx/mojo:struct_traits", |
| 131 ] | 133 ] |
| 132 } | 134 } |
| OLD | NEW |