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