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 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 "raster/one_copy_tile_task_worker_pool.cc", | 364 "raster/one_copy_tile_task_worker_pool.cc", |
365 "raster/one_copy_tile_task_worker_pool.h", | 365 "raster/one_copy_tile_task_worker_pool.h", |
366 "raster/raster_buffer.cc", | 366 "raster/raster_buffer.cc", |
367 "raster/raster_buffer.h", | 367 "raster/raster_buffer.h", |
368 "raster/scoped_gpu_raster.cc", | 368 "raster/scoped_gpu_raster.cc", |
369 "raster/scoped_gpu_raster.h", | 369 "raster/scoped_gpu_raster.h", |
370 "raster/single_thread_task_graph_runner.cc", | 370 "raster/single_thread_task_graph_runner.cc", |
371 "raster/single_thread_task_graph_runner.h", | 371 "raster/single_thread_task_graph_runner.h", |
372 "raster/synchronous_task_graph_runner.cc", | 372 "raster/synchronous_task_graph_runner.cc", |
373 "raster/synchronous_task_graph_runner.h", | 373 "raster/synchronous_task_graph_runner.h", |
| 374 "raster/task_category.h", |
374 "raster/task_graph_runner.cc", | 375 "raster/task_graph_runner.cc", |
375 "raster/task_graph_runner.h", | 376 "raster/task_graph_runner.h", |
376 "raster/task_graph_work_queue.cc", | 377 "raster/task_graph_work_queue.cc", |
377 "raster/task_graph_work_queue.h", | 378 "raster/task_graph_work_queue.h", |
378 "raster/texture_compressor.cc", | 379 "raster/texture_compressor.cc", |
379 "raster/texture_compressor.h", | 380 "raster/texture_compressor.h", |
380 "raster/texture_compressor_etc1.cc", | 381 "raster/texture_compressor_etc1.cc", |
381 "raster/texture_compressor_etc1.h", | 382 "raster/texture_compressor_etc1.h", |
382 "raster/tile_task_runner.cc", | 383 "raster/tile_task_runner.cc", |
383 "raster/tile_task_runner.h", | 384 "raster/tile_task_runner.h", |
(...skipping 582 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
966 "//ui/gl", | 967 "//ui/gl", |
967 "//ui/gl:test_support", | 968 "//ui/gl:test_support", |
968 ] | 969 ] |
969 | 970 |
970 if (is_android) { | 971 if (is_android) { |
971 isolate_file = "cc_perftests.isolate" | 972 isolate_file = "cc_perftests.isolate" |
972 } | 973 } |
973 } | 974 } |
974 # When adding support for isolates, please have a look at run-time dependencies | 975 # When adding support for isolates, please have a look at run-time dependencies |
975 # in the cc_unittests_run target in cc_tests.gyp. | 976 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |