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 247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
258 "output/shader.h", | 258 "output/shader.h", |
259 "output/software_output_device.cc", | 259 "output/software_output_device.cc", |
260 "output/software_output_device.h", | 260 "output/software_output_device.h", |
261 "output/software_renderer.cc", | 261 "output/software_renderer.cc", |
262 "output/software_renderer.h", | 262 "output/software_renderer.h", |
263 "output/static_geometry_binding.cc", | 263 "output/static_geometry_binding.cc", |
264 "output/static_geometry_binding.h", | 264 "output/static_geometry_binding.h", |
265 "output/swap_promise.h", | 265 "output/swap_promise.h", |
266 "output/texture_mailbox_deleter.cc", | 266 "output/texture_mailbox_deleter.cc", |
267 "output/texture_mailbox_deleter.h", | 267 "output/texture_mailbox_deleter.h", |
268 "output/viewport_selection_bound.cc", | |
269 "output/viewport_selection_bound.h", | |
270 "output/vulkan_context_provider.h", | 268 "output/vulkan_context_provider.h", |
271 "output/vulkan_in_process_context_provider.cc", | 269 "output/vulkan_in_process_context_provider.cc", |
272 "output/vulkan_in_process_context_provider.h", | 270 "output/vulkan_in_process_context_provider.h", |
273 "playback/clip_display_item.cc", | 271 "playback/clip_display_item.cc", |
274 "playback/clip_display_item.h", | 272 "playback/clip_display_item.h", |
275 "playback/clip_path_display_item.cc", | 273 "playback/clip_path_display_item.cc", |
276 "playback/clip_path_display_item.h", | 274 "playback/clip_path_display_item.h", |
277 "playback/compositing_display_item.cc", | 275 "playback/compositing_display_item.cc", |
278 "playback/compositing_display_item.h", | 276 "playback/compositing_display_item.h", |
279 "playback/decoded_draw_image.cc", | 277 "playback/decoded_draw_image.cc", |
(...skipping 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1017 "//ui/gfx/geometry", | 1015 "//ui/gfx/geometry", |
1018 "//ui/gl", | 1016 "//ui/gl", |
1019 "//ui/gl:test_support", | 1017 "//ui/gl:test_support", |
1020 ] | 1018 ] |
1021 | 1019 |
1022 # This target should not require the Chrome executable to run. | 1020 # This target should not require the Chrome executable to run. |
1023 assert_no_deps = [ "//chrome" ] | 1021 assert_no_deps = [ "//chrome" ] |
1024 } | 1022 } |
1025 # When adding support for isolates, please have a look at run-time dependencies | 1023 # When adding support for isolates, please have a look at run-time dependencies |
1026 # in the cc_unittests_run target in cc_tests.gyp. | 1024 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |