| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 "render_pass_id.mojom", | 52 "render_pass_id.mojom", |
| 53 "returned_resource.mojom", | 53 "returned_resource.mojom", |
| 54 "selection.mojom", | 54 "selection.mojom", |
| 55 "shared_quad_state.mojom", | 55 "shared_quad_state.mojom", |
| 56 "surface_id.mojom", | 56 "surface_id.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", |
| 66 "//ui/gfx/geometry/mojo", | 67 "//ui/gfx/geometry/mojo", |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 "frame_sink_id_struct_traits.h", | 105 "frame_sink_id_struct_traits.h", |
| 105 "local_frame_id_struct_traits.h", | 106 "local_frame_id_struct_traits.h", |
| 106 "quads_struct_traits.cc", | 107 "quads_struct_traits.cc", |
| 107 "quads_struct_traits.h", | 108 "quads_struct_traits.h", |
| 108 "render_pass_id_struct_traits.h", | 109 "render_pass_id_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_reference_struct_traits.h", |
| 114 "surface_sequence_struct_traits.h", | 116 "surface_sequence_struct_traits.h", |
| 115 "transferable_resource_struct_traits.cc", | 117 "transferable_resource_struct_traits.cc", |
| 116 "transferable_resource_struct_traits.h", | 118 "transferable_resource_struct_traits.h", |
| 117 ] | 119 ] |
| 118 public_deps = [ | 120 public_deps = [ |
| 119 ":interfaces_shared_cpp_sources", | 121 ":interfaces_shared_cpp_sources", |
| 120 "//base", | 122 "//base", |
| 121 "//cc", | 123 "//cc", |
| 122 "//cc/surfaces:surface_id", | 124 "//cc/surfaces:surface_id", |
| 123 "//gpu/ipc/common:struct_traits", | 125 "//gpu/ipc/common:struct_traits", |
| 124 "//mojo/common:struct_traits", | 126 "//mojo/common:struct_traits", |
| 125 "//skia/public/interfaces:struct_traits", | 127 "//skia/public/interfaces:struct_traits", |
| 126 "//ui/events:events_base", | 128 "//ui/events:events_base", |
| 127 "//ui/events/mojo:struct_traits", | 129 "//ui/events/mojo:struct_traits", |
| 128 "//ui/gfx", | 130 "//ui/gfx", |
| 129 "//ui/gfx:selection_bound", | 131 "//ui/gfx:selection_bound", |
| 130 "//ui/gfx/geometry/mojo:struct_traits", | 132 "//ui/gfx/geometry/mojo:struct_traits", |
| 131 "//ui/gfx/mojo:struct_traits", | 133 "//ui/gfx/mojo:struct_traits", |
| 132 ] | 134 ] |
| 133 } | 135 } |
| OLD | NEW |