| 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 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 ] | 97 ] |
| 98 } | 98 } |
| 99 | 99 |
| 100 cc_source_set("struct_traits") { | 100 cc_source_set("struct_traits") { |
| 101 sources = [ | 101 sources = [ |
| 102 "begin_frame_args_struct_traits.h", | 102 "begin_frame_args_struct_traits.h", |
| 103 "compositor_frame_metadata_struct_traits.cc", | 103 "compositor_frame_metadata_struct_traits.cc", |
| 104 "compositor_frame_metadata_struct_traits.h", | 104 "compositor_frame_metadata_struct_traits.h", |
| 105 "compositor_frame_struct_traits.cc", | 105 "compositor_frame_struct_traits.cc", |
| 106 "compositor_frame_struct_traits.h", | 106 "compositor_frame_struct_traits.h", |
| 107 "copy_output_request_struct_traits.cc", |
| 108 "copy_output_request_struct_traits.h", |
| 107 "copy_output_result_struct_traits.cc", | 109 "copy_output_result_struct_traits.cc", |
| 108 "copy_output_result_struct_traits.h", | 110 "copy_output_result_struct_traits.h", |
| 109 "filter_operation_struct_traits.h", | 111 "filter_operation_struct_traits.h", |
| 110 "filter_operations_struct_traits.h", | 112 "filter_operations_struct_traits.h", |
| 111 "frame_sink_id_struct_traits.h", | 113 "frame_sink_id_struct_traits.h", |
| 112 "local_surface_id_struct_traits.h", | 114 "local_surface_id_struct_traits.h", |
| 113 "quads_struct_traits.cc", | 115 "quads_struct_traits.cc", |
| 114 "quads_struct_traits.h", | 116 "quads_struct_traits.h", |
| 115 "render_pass_struct_traits.cc", | 117 "render_pass_struct_traits.cc", |
| 116 "render_pass_struct_traits.h", | 118 "render_pass_struct_traits.h", |
| (...skipping 18 matching lines...) Expand all Loading... |
| 135 "//skia/public/interfaces:struct_traits", | 137 "//skia/public/interfaces:struct_traits", |
| 136 "//ui/events:events_base", | 138 "//ui/events:events_base", |
| 137 "//ui/events/mojo:struct_traits", | 139 "//ui/events/mojo:struct_traits", |
| 138 "//ui/gfx", | 140 "//ui/gfx", |
| 139 "//ui/gfx:selection_bound", | 141 "//ui/gfx:selection_bound", |
| 140 "//ui/gfx/geometry/mojo:struct_traits", | 142 "//ui/gfx/geometry/mojo:struct_traits", |
| 141 "//ui/gfx/mojo:mojo", | 143 "//ui/gfx/mojo:mojo", |
| 142 "//ui/gfx/mojo:struct_traits", | 144 "//ui/gfx/mojo:struct_traits", |
| 143 ] | 145 ] |
| 144 } | 146 } |
| OLD | NEW |