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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 "scheduler/draw_result.h", | 430 "scheduler/draw_result.h", |
431 "scheduler/scheduler.cc", | 431 "scheduler/scheduler.cc", |
432 "scheduler/scheduler.h", | 432 "scheduler/scheduler.h", |
433 "scheduler/scheduler_settings.cc", | 433 "scheduler/scheduler_settings.cc", |
434 "scheduler/scheduler_settings.h", | 434 "scheduler/scheduler_settings.h", |
435 "scheduler/scheduler_state_machine.cc", | 435 "scheduler/scheduler_state_machine.cc", |
436 "scheduler/scheduler_state_machine.h", | 436 "scheduler/scheduler_state_machine.h", |
437 "scheduler/video_frame_controller.h", | 437 "scheduler/video_frame_controller.h", |
438 "tiles/eviction_tile_priority_queue.cc", | 438 "tiles/eviction_tile_priority_queue.cc", |
439 "tiles/eviction_tile_priority_queue.h", | 439 "tiles/eviction_tile_priority_queue.h", |
| 440 "tiles/image_decode_controller.cc", |
| 441 "tiles/image_decode_controller.h", |
440 "tiles/picture_layer_tiling.cc", | 442 "tiles/picture_layer_tiling.cc", |
441 "tiles/picture_layer_tiling.h", | 443 "tiles/picture_layer_tiling.h", |
442 "tiles/picture_layer_tiling_set.cc", | 444 "tiles/picture_layer_tiling_set.cc", |
443 "tiles/picture_layer_tiling_set.h", | 445 "tiles/picture_layer_tiling_set.h", |
444 "tiles/prioritized_tile.cc", | 446 "tiles/prioritized_tile.cc", |
445 "tiles/prioritized_tile.h", | 447 "tiles/prioritized_tile.h", |
446 "tiles/raster_tile_priority_queue.cc", | 448 "tiles/raster_tile_priority_queue.cc", |
447 "tiles/raster_tile_priority_queue.h", | 449 "tiles/raster_tile_priority_queue.h", |
448 "tiles/raster_tile_priority_queue_all.cc", | 450 "tiles/raster_tile_priority_queue_all.cc", |
449 "tiles/raster_tile_priority_queue_all.h", | 451 "tiles/raster_tile_priority_queue_all.h", |
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
921 "//ui/gl", | 923 "//ui/gl", |
922 "//ui/gl:test_support", | 924 "//ui/gl:test_support", |
923 ] | 925 ] |
924 | 926 |
925 if (is_android) { | 927 if (is_android) { |
926 isolate_file = "cc_perftests.isolate" | 928 isolate_file = "cc_perftests.isolate" |
927 } | 929 } |
928 } | 930 } |
929 # When adding support for isolates, please have a look at run-time dependencies | 931 # When adding support for isolates, please have a look at run-time dependencies |
930 # in the cc_unittests_run target in cc_tests.gyp. | 932 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |