| 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("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 | 6 |
| 7 component("cc") { | 7 component("cc") { |
| 8 sources = [ | 8 sources = [ |
| 9 "animation/animation.cc", | 9 "animation/animation.cc", |
| 10 "animation/animation.h", | 10 "animation/animation.h", |
| (...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 "resources/memory_history.cc", | 396 "resources/memory_history.cc", |
| 397 "resources/memory_history.h", | 397 "resources/memory_history.h", |
| 398 "resources/platform_color.h", | 398 "resources/platform_color.h", |
| 399 "resources/prioritized_resource.cc", | 399 "resources/prioritized_resource.cc", |
| 400 "resources/prioritized_resource.h", | 400 "resources/prioritized_resource.h", |
| 401 "resources/prioritized_resource_manager.cc", | 401 "resources/prioritized_resource_manager.cc", |
| 402 "resources/prioritized_resource_manager.h", | 402 "resources/prioritized_resource_manager.h", |
| 403 "resources/priority_calculator.cc", | 403 "resources/priority_calculator.cc", |
| 404 "resources/priority_calculator.h", | 404 "resources/priority_calculator.h", |
| 405 "resources/release_callback.h", | 405 "resources/release_callback.h", |
| 406 "resources/resource.cc", | |
| 407 "resources/resource.h", | 406 "resources/resource.h", |
| 408 "resources/resource_format.cc", | 407 "resources/resource_format.cc", |
| 409 "resources/resource_format.h", | 408 "resources/resource_format.h", |
| 410 "resources/resource_pool.cc", | 409 "resources/resource_pool.cc", |
| 411 "resources/resource_pool.h", | 410 "resources/resource_pool.h", |
| 412 "resources/resource_provider.cc", | 411 "resources/resource_provider.cc", |
| 413 "resources/resource_provider.h", | 412 "resources/resource_provider.h", |
| 414 "resources/resource_update.cc", | 413 "resources/resource_update.cc", |
| 415 "resources/resource_update.h", | 414 "resources/resource_update.h", |
| 416 "resources/resource_update_controller.cc", | 415 "resources/resource_update_controller.cc", |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 963 "//ui/gfx/geometry", | 962 "//ui/gfx/geometry", |
| 964 "//ui/gl", | 963 "//ui/gl", |
| 965 ] | 964 ] |
| 966 | 965 |
| 967 if (is_android) { | 966 if (is_android) { |
| 968 isolate_file = "cc_perftests.isolate" | 967 isolate_file = "cc_perftests.isolate" |
| 969 } | 968 } |
| 970 } | 969 } |
| 971 # When adding support for isolates, please have a look at run-time dependencies | 970 # When adding support for isolates, please have a look at run-time dependencies |
| 972 # in the cc_unittests_run target in cc_tests.gyp. | 971 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |