| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 "output/render_surface_filters.cc", | 246 "output/render_surface_filters.cc", |
| 247 "output/render_surface_filters.h", | 247 "output/render_surface_filters.h", |
| 248 "output/renderer.cc", | 248 "output/renderer.cc", |
| 249 "output/renderer.h", | 249 "output/renderer.h", |
| 250 "output/renderer_capabilities.cc", | 250 "output/renderer_capabilities.cc", |
| 251 "output/renderer_capabilities.h", | 251 "output/renderer_capabilities.h", |
| 252 "output/renderer_settings.cc", | 252 "output/renderer_settings.cc", |
| 253 "output/renderer_settings.h", | 253 "output/renderer_settings.h", |
| 254 "output/shader.cc", | 254 "output/shader.cc", |
| 255 "output/shader.h", | 255 "output/shader.h", |
| 256 "output/skia_renderer.cc", |
| 257 "output/skia_renderer.h", |
| 256 "output/software_output_device.cc", | 258 "output/software_output_device.cc", |
| 257 "output/software_output_device.h", | 259 "output/software_output_device.h", |
| 258 "output/software_renderer.cc", | 260 "output/software_renderer.cc", |
| 259 "output/software_renderer.h", | 261 "output/software_renderer.h", |
| 260 "output/static_geometry_binding.cc", | 262 "output/static_geometry_binding.cc", |
| 261 "output/static_geometry_binding.h", | 263 "output/static_geometry_binding.h", |
| 262 "output/swap_promise.h", | 264 "output/swap_promise.h", |
| 263 "output/texture_mailbox_deleter.cc", | 265 "output/texture_mailbox_deleter.cc", |
| 264 "output/texture_mailbox_deleter.h", | 266 "output/texture_mailbox_deleter.h", |
| 265 "output/vulkan_context_provider.h", | 267 "output/vulkan_context_provider.h", |
| (...skipping 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1015 "//ui/gfx/geometry", | 1017 "//ui/gfx/geometry", |
| 1016 "//ui/gl", | 1018 "//ui/gl", |
| 1017 "//ui/gl:test_support", | 1019 "//ui/gl:test_support", |
| 1018 ] | 1020 ] |
| 1019 | 1021 |
| 1020 # This target should not require the Chrome executable to run. | 1022 # This target should not require the Chrome executable to run. |
| 1021 assert_no_deps = [ "//chrome" ] | 1023 assert_no_deps = [ "//chrome" ] |
| 1022 } | 1024 } |
| 1023 # When adding support for isolates, please have a look at run-time dependencies | 1025 # When adding support for isolates, please have a look at run-time dependencies |
| 1024 # in the cc_unittests_run target in cc_tests.gyp. | 1026 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |