| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 "traits_test_service.mojom", | 85 "traits_test_service.mojom", |
| 86 ] | 86 ] |
| 87 | 87 |
| 88 public_deps = [ | 88 public_deps = [ |
| 89 ":interfaces", | 89 ":interfaces", |
| 90 ] | 90 ] |
| 91 } | 91 } |
| 92 | 92 |
| 93 source_set("struct_traits") { | 93 source_set("struct_traits") { |
| 94 sources = [ | 94 sources = [ |
| 95 "begin_frame_args_struct_traits.h", |
| 95 "compositor_frame_metadata_struct_traits.cc", | 96 "compositor_frame_metadata_struct_traits.cc", |
| 96 "compositor_frame_metadata_struct_traits.h", | 97 "compositor_frame_metadata_struct_traits.h", |
| 97 "compositor_frame_struct_traits.cc", | 98 "compositor_frame_struct_traits.cc", |
| 98 "compositor_frame_struct_traits.h", | 99 "compositor_frame_struct_traits.h", |
| 99 "filter_operation_struct_traits.h", | 100 "filter_operation_struct_traits.h", |
| 100 "filter_operations_struct_traits.h", | 101 "filter_operations_struct_traits.h", |
| 101 "frame_sink_id_struct_traits.h", | 102 "frame_sink_id_struct_traits.h", |
| 102 "local_frame_id_struct_traits.h", | 103 "local_frame_id_struct_traits.h", |
| 103 "quads_struct_traits.cc", | 104 "quads_struct_traits.cc", |
| 104 "quads_struct_traits.h", | 105 "quads_struct_traits.h", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 121 "//mojo/common:struct_traits", | 122 "//mojo/common:struct_traits", |
| 122 "//skia/public/interfaces:struct_traits", | 123 "//skia/public/interfaces:struct_traits", |
| 123 "//ui/events:events_base", | 124 "//ui/events:events_base", |
| 124 "//ui/events/mojo:struct_traits", | 125 "//ui/events/mojo:struct_traits", |
| 125 "//ui/gfx", | 126 "//ui/gfx", |
| 126 "//ui/gfx:selection_bound", | 127 "//ui/gfx:selection_bound", |
| 127 "//ui/gfx/geometry/mojo:struct_traits", | 128 "//ui/gfx/geometry/mojo:struct_traits", |
| 128 "//ui/gfx/mojo:struct_traits", | 129 "//ui/gfx/mojo:struct_traits", |
| 129 ] | 130 ] |
| 130 } | 131 } |
| OLD | NEW |