OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//testing/test.gni") | 6 import("//testing/test.gni") |
7 | 7 |
8 component("cc") { | 8 component("cc") { |
9 sources = [ | 9 sources = [ |
10 "animation/animation.cc", | 10 "animation/animation.cc", |
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
217 "output/delegating_renderer.cc", | 217 "output/delegating_renderer.cc", |
218 "output/delegating_renderer.h", | 218 "output/delegating_renderer.h", |
219 "output/direct_renderer.cc", | 219 "output/direct_renderer.cc", |
220 "output/direct_renderer.h", | 220 "output/direct_renderer.h", |
221 "output/dynamic_geometry_binding.cc", | 221 "output/dynamic_geometry_binding.cc", |
222 "output/dynamic_geometry_binding.h", | 222 "output/dynamic_geometry_binding.h", |
223 "output/filter_operation.cc", | 223 "output/filter_operation.cc", |
224 "output/filter_operation.h", | 224 "output/filter_operation.h", |
225 "output/filter_operations.cc", | 225 "output/filter_operations.cc", |
226 "output/filter_operations.h", | 226 "output/filter_operations.h", |
| 227 "output/forced_redraw_swap_promise.cc", |
| 228 "output/forced_redraw_swap_promise.h", |
227 "output/geometry_binding.cc", | 229 "output/geometry_binding.cc", |
228 "output/geometry_binding.h", | 230 "output/geometry_binding.h", |
229 "output/gl_frame_data.cc", | 231 "output/gl_frame_data.cc", |
230 "output/gl_frame_data.h", | 232 "output/gl_frame_data.h", |
231 "output/gl_renderer.cc", | 233 "output/gl_renderer.cc", |
232 "output/gl_renderer.h", | 234 "output/gl_renderer.h", |
233 "output/gl_renderer_draw_cache.cc", | 235 "output/gl_renderer_draw_cache.cc", |
234 "output/gl_renderer_draw_cache.h", | 236 "output/gl_renderer_draw_cache.h", |
235 "output/latency_info_swap_promise.cc", | 237 "output/latency_info_swap_promise.cc", |
236 "output/latency_info_swap_promise.h", | 238 "output/latency_info_swap_promise.h", |
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1039 "//ui/gfx/geometry", | 1041 "//ui/gfx/geometry", |
1040 "//ui/gl", | 1042 "//ui/gl", |
1041 "//ui/gl:test_support", | 1043 "//ui/gl:test_support", |
1042 ] | 1044 ] |
1043 | 1045 |
1044 # This target should not require the Chrome executable to run. | 1046 # This target should not require the Chrome executable to run. |
1045 assert_no_deps = [ "//chrome" ] | 1047 assert_no_deps = [ "//chrome" ] |
1046 } | 1048 } |
1047 # When adding support for isolates, please have a look at run-time dependencies | 1049 # When adding support for isolates, please have a look at run-time dependencies |
1048 # in the cc_unittests_run target in cc_tests.gyp. | 1050 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |