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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
427 "scheduler/draw_result.h", | 427 "scheduler/draw_result.h", |
428 "scheduler/scheduler.cc", | 428 "scheduler/scheduler.cc", |
429 "scheduler/scheduler.h", | 429 "scheduler/scheduler.h", |
430 "scheduler/scheduler_settings.cc", | 430 "scheduler/scheduler_settings.cc", |
431 "scheduler/scheduler_settings.h", | 431 "scheduler/scheduler_settings.h", |
432 "scheduler/scheduler_state_machine.cc", | 432 "scheduler/scheduler_state_machine.cc", |
433 "scheduler/scheduler_state_machine.h", | 433 "scheduler/scheduler_state_machine.h", |
434 "scheduler/video_frame_controller.h", | 434 "scheduler/video_frame_controller.h", |
435 "tiles/eviction_tile_priority_queue.cc", | 435 "tiles/eviction_tile_priority_queue.cc", |
436 "tiles/eviction_tile_priority_queue.h", | 436 "tiles/eviction_tile_priority_queue.h", |
| 437 "tiles/image_decode_controller.cc", |
| 438 "tiles/image_decode_controller.h", |
437 "tiles/picture_layer_tiling.cc", | 439 "tiles/picture_layer_tiling.cc", |
438 "tiles/picture_layer_tiling.h", | 440 "tiles/picture_layer_tiling.h", |
439 "tiles/picture_layer_tiling_set.cc", | 441 "tiles/picture_layer_tiling_set.cc", |
440 "tiles/picture_layer_tiling_set.h", | 442 "tiles/picture_layer_tiling_set.h", |
441 "tiles/prioritized_tile.cc", | 443 "tiles/prioritized_tile.cc", |
442 "tiles/prioritized_tile.h", | 444 "tiles/prioritized_tile.h", |
443 "tiles/raster_tile_priority_queue.cc", | 445 "tiles/raster_tile_priority_queue.cc", |
444 "tiles/raster_tile_priority_queue.h", | 446 "tiles/raster_tile_priority_queue.h", |
445 "tiles/raster_tile_priority_queue_all.cc", | 447 "tiles/raster_tile_priority_queue_all.cc", |
446 "tiles/raster_tile_priority_queue_all.h", | 448 "tiles/raster_tile_priority_queue_all.h", |
(...skipping 446 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
893 "//ui/gfx/geometry", | 895 "//ui/gfx/geometry", |
894 "//ui/gl", | 896 "//ui/gl", |
895 ] | 897 ] |
896 | 898 |
897 if (is_android) { | 899 if (is_android) { |
898 isolate_file = "cc_perftests.isolate" | 900 isolate_file = "cc_perftests.isolate" |
899 } | 901 } |
900 } | 902 } |
901 # When adding support for isolates, please have a look at run-time dependencies | 903 # When adding support for isolates, please have a look at run-time dependencies |
902 # in the cc_unittests_run target in cc_tests.gyp. | 904 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |