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 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
462 "tiles/software_image_decode_controller.cc", | 462 "tiles/software_image_decode_controller.cc", |
463 "tiles/software_image_decode_controller.h", | 463 "tiles/software_image_decode_controller.h", |
464 "tiles/tile.cc", | 464 "tiles/tile.cc", |
465 "tiles/tile.h", | 465 "tiles/tile.h", |
466 "tiles/tile_draw_info.cc", | 466 "tiles/tile_draw_info.cc", |
467 "tiles/tile_draw_info.h", | 467 "tiles/tile_draw_info.h", |
468 "tiles/tile_manager.cc", | 468 "tiles/tile_manager.cc", |
469 "tiles/tile_manager.h", | 469 "tiles/tile_manager.h", |
470 "tiles/tile_priority.cc", | 470 "tiles/tile_priority.cc", |
471 "tiles/tile_priority.h", | 471 "tiles/tile_priority.h", |
| 472 "tiles/tile_task_manager.cc", |
| 473 "tiles/tile_task_manager.h", |
472 "tiles/tiling_set_eviction_queue.cc", | 474 "tiles/tiling_set_eviction_queue.cc", |
473 "tiles/tiling_set_eviction_queue.h", | 475 "tiles/tiling_set_eviction_queue.h", |
474 "tiles/tiling_set_raster_queue_all.cc", | 476 "tiles/tiling_set_raster_queue_all.cc", |
475 "tiles/tiling_set_raster_queue_all.h", | 477 "tiles/tiling_set_raster_queue_all.h", |
476 "tiles/tiling_set_raster_queue_required.cc", | 478 "tiles/tiling_set_raster_queue_required.cc", |
477 "tiles/tiling_set_raster_queue_required.h", | 479 "tiles/tiling_set_raster_queue_required.h", |
478 "trees/blocking_task_runner.cc", | 480 "trees/blocking_task_runner.cc", |
479 "trees/blocking_task_runner.h", | 481 "trees/blocking_task_runner.h", |
480 "trees/channel_impl.h", | 482 "trees/channel_impl.h", |
481 "trees/channel_main.h", | 483 "trees/channel_main.h", |
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1003 "//ui/gl", | 1005 "//ui/gl", |
1004 "//ui/gl:test_support", | 1006 "//ui/gl:test_support", |
1005 ] | 1007 ] |
1006 | 1008 |
1007 if (is_android) { | 1009 if (is_android) { |
1008 isolate_file = "cc_perftests.isolate" | 1010 isolate_file = "cc_perftests.isolate" |
1009 } | 1011 } |
1010 } | 1012 } |
1011 # 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 |
1012 # in the cc_unittests_run target in cc_tests.gyp. | 1014 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |