| 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 mojom("test_interfaces") { | 89 mojom("test_interfaces") { |
| 90 testonly = true | 90 testonly = true |
| 91 sources = [ | 91 sources = [ |
| 92 "traits_test_service.mojom", | 92 "traits_test_service.mojom", |
| 93 ] | 93 ] |
| 94 | 94 |
| 95 public_deps = [ | 95 public_deps = [ |
| 96 ":interfaces", | 96 ":interfaces", |
| 97 ] | 97 ] |
| 98 } | 98 } |
| 99 | |
| 100 cc_source_set("struct_traits") { | |
| 101 sources = [ | |
| 102 "begin_frame_args_struct_traits.h", | |
| 103 "compositor_frame_metadata_struct_traits.cc", | |
| 104 "compositor_frame_metadata_struct_traits.h", | |
| 105 "compositor_frame_struct_traits.cc", | |
| 106 "compositor_frame_struct_traits.h", | |
| 107 "copy_output_request_struct_traits.cc", | |
| 108 "copy_output_request_struct_traits.h", | |
| 109 "copy_output_result_struct_traits.cc", | |
| 110 "copy_output_result_struct_traits.h", | |
| 111 "filter_operation_struct_traits.h", | |
| 112 "filter_operations_struct_traits.h", | |
| 113 "frame_sink_id_struct_traits.h", | |
| 114 "local_surface_id_struct_traits.h", | |
| 115 "quads_struct_traits.cc", | |
| 116 "quads_struct_traits.h", | |
| 117 "render_pass_struct_traits.cc", | |
| 118 "render_pass_struct_traits.h", | |
| 119 "selection_struct_traits.h", | |
| 120 "shared_quad_state_struct_traits.h", | |
| 121 "surface_id_struct_traits.h", | |
| 122 "surface_info_struct_traits.h", | |
| 123 "surface_reference_struct_traits.h", | |
| 124 "surface_sequence_struct_traits.h", | |
| 125 "texture_mailbox_struct_traits.h", | |
| 126 "transferable_resource_struct_traits.cc", | |
| 127 "transferable_resource_struct_traits.h", | |
| 128 ] | |
| 129 public_deps = [ | |
| 130 ":interfaces_shared_cpp_sources", | |
| 131 "//base", | |
| 132 "//cc", | |
| 133 "//cc/surfaces:surface_id", | |
| 134 "//gpu/ipc/common:struct_traits", | |
| 135 "//mojo/common:struct_traits", | |
| 136 "//skia/public/interfaces", | |
| 137 "//skia/public/interfaces:struct_traits", | |
| 138 "//ui/events:events_base", | |
| 139 "//ui/events/mojo:struct_traits", | |
| 140 "//ui/gfx", | |
| 141 "//ui/gfx:selection_bound", | |
| 142 "//ui/gfx/geometry/mojo:struct_traits", | |
| 143 "//ui/gfx/mojo:mojo", | |
| 144 "//ui/gfx/mojo:struct_traits", | |
| 145 ] | |
| 146 } | |
| OLD | NEW |