| 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 365 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 376 "raster/task.cc", | 376 "raster/task.cc", |
| 377 "raster/task.h", | 377 "raster/task.h", |
| 378 "raster/task_category.h", | 378 "raster/task_category.h", |
| 379 "raster/task_graph_runner.h", | 379 "raster/task_graph_runner.h", |
| 380 "raster/task_graph_work_queue.cc", | 380 "raster/task_graph_work_queue.cc", |
| 381 "raster/task_graph_work_queue.h", | 381 "raster/task_graph_work_queue.h", |
| 382 "raster/texture_compressor.cc", | 382 "raster/texture_compressor.cc", |
| 383 "raster/texture_compressor.h", | 383 "raster/texture_compressor.h", |
| 384 "raster/texture_compressor_etc1.cc", | 384 "raster/texture_compressor_etc1.cc", |
| 385 "raster/texture_compressor_etc1.h", | 385 "raster/texture_compressor_etc1.h", |
| 386 "raster/tile_task_runner.cc", | 386 "raster/tile_task.cc", |
| 387 "raster/tile_task_runner.h", | 387 "raster/tile_task.h", |
| 388 "raster/tile_task_worker_pool.cc", | 388 "raster/tile_task_worker_pool.cc", |
| 389 "raster/tile_task_worker_pool.h", | 389 "raster/tile_task_worker_pool.h", |
| 390 "raster/zero_copy_tile_task_worker_pool.cc", | 390 "raster/zero_copy_tile_task_worker_pool.cc", |
| 391 "raster/zero_copy_tile_task_worker_pool.h", | 391 "raster/zero_copy_tile_task_worker_pool.h", |
| 392 "resources/memory_history.cc", | 392 "resources/memory_history.cc", |
| 393 "resources/memory_history.h", | 393 "resources/memory_history.h", |
| 394 "resources/platform_color.h", | 394 "resources/platform_color.h", |
| 395 "resources/release_callback.h", | 395 "resources/release_callback.h", |
| 396 "resources/resource.h", | 396 "resources/resource.h", |
| 397 "resources/resource_format.cc", | 397 "resources/resource_format.cc", |
| (...skipping 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1003 "//ui/gl", | 1003 "//ui/gl", |
| 1004 "//ui/gl:test_support", | 1004 "//ui/gl:test_support", |
| 1005 ] | 1005 ] |
| 1006 | 1006 |
| 1007 if (is_android) { | 1007 if (is_android) { |
| 1008 isolate_file = "cc_perftests.isolate" | 1008 isolate_file = "cc_perftests.isolate" |
| 1009 } | 1009 } |
| 1010 } | 1010 } |
| 1011 # When adding support for isolates, please have a look at run-time dependencies | 1011 # When adding support for isolates, please have a look at run-time dependencies |
| 1012 # in the cc_unittests_run target in cc_tests.gyp. | 1012 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |