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 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
387 "raster/tile_task.h", | 387 "raster/tile_task.h", |
388 "raster/zero_copy_raster_buffer_provider.cc", | 388 "raster/zero_copy_raster_buffer_provider.cc", |
389 "raster/zero_copy_raster_buffer_provider.h", | 389 "raster/zero_copy_raster_buffer_provider.h", |
390 "resources/memory_history.cc", | 390 "resources/memory_history.cc", |
391 "resources/memory_history.h", | 391 "resources/memory_history.h", |
392 "resources/platform_color.h", | 392 "resources/platform_color.h", |
393 "resources/release_callback.h", | 393 "resources/release_callback.h", |
394 "resources/resource.h", | 394 "resources/resource.h", |
395 "resources/resource_format.cc", | 395 "resources/resource_format.cc", |
396 "resources/resource_format.h", | 396 "resources/resource_format.h", |
| 397 "resources/resource_format_utils.cc", |
| 398 "resources/resource_format_utils.h", |
397 "resources/resource_pool.cc", | 399 "resources/resource_pool.cc", |
398 "resources/resource_pool.h", | 400 "resources/resource_pool.h", |
399 "resources/resource_provider.cc", | 401 "resources/resource_provider.cc", |
400 "resources/resource_provider.h", | 402 "resources/resource_provider.h", |
401 "resources/resource_util.h", | 403 "resources/resource_util.h", |
402 "resources/returned_resource.h", | 404 "resources/returned_resource.h", |
403 "resources/scoped_resource.cc", | 405 "resources/scoped_resource.cc", |
404 "resources/scoped_resource.h", | 406 "resources/scoped_resource.h", |
405 "resources/scoped_ui_resource.cc", | 407 "resources/scoped_ui_resource.cc", |
406 "resources/scoped_ui_resource.h", | 408 "resources/scoped_ui_resource.h", |
(...skipping 608 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 |