| 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 436 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 447 "scheduler/delay_based_time_source.cc", | 447 "scheduler/delay_based_time_source.cc", |
| 448 "scheduler/delay_based_time_source.h", | 448 "scheduler/delay_based_time_source.h", |
| 449 "scheduler/draw_result.h", | 449 "scheduler/draw_result.h", |
| 450 "scheduler/scheduler.cc", | 450 "scheduler/scheduler.cc", |
| 451 "scheduler/scheduler.h", | 451 "scheduler/scheduler.h", |
| 452 "scheduler/scheduler_settings.cc", | 452 "scheduler/scheduler_settings.cc", |
| 453 "scheduler/scheduler_settings.h", | 453 "scheduler/scheduler_settings.h", |
| 454 "scheduler/scheduler_state_machine.cc", | 454 "scheduler/scheduler_state_machine.cc", |
| 455 "scheduler/scheduler_state_machine.h", | 455 "scheduler/scheduler_state_machine.h", |
| 456 "scheduler/video_frame_controller.h", | 456 "scheduler/video_frame_controller.h", |
| 457 "scheduler/vsync_observer.h", |
| 457 "tiles/eviction_tile_priority_queue.cc", | 458 "tiles/eviction_tile_priority_queue.cc", |
| 458 "tiles/eviction_tile_priority_queue.h", | 459 "tiles/eviction_tile_priority_queue.h", |
| 459 "tiles/gpu_image_decode_controller.cc", | 460 "tiles/gpu_image_decode_controller.cc", |
| 460 "tiles/gpu_image_decode_controller.h", | 461 "tiles/gpu_image_decode_controller.h", |
| 461 "tiles/image_decode_controller.h", | 462 "tiles/image_decode_controller.h", |
| 462 "tiles/image_manager.cc", | 463 "tiles/image_manager.cc", |
| 463 "tiles/image_manager.h", | 464 "tiles/image_manager.h", |
| 464 "tiles/mipmap_util.cc", | 465 "tiles/mipmap_util.cc", |
| 465 "tiles/mipmap_util.h", | 466 "tiles/mipmap_util.h", |
| 466 "tiles/picture_layer_tiling.cc", | 467 "tiles/picture_layer_tiling.cc", |
| (...skipping 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1076 data = [ | 1077 data = [ |
| 1077 "test/data/", | 1078 "test/data/", |
| 1078 | 1079 |
| 1079 # Needed for isolate script to execute. | 1080 # Needed for isolate script to execute. |
| 1080 "//testing/scripts/common.py", | 1081 "//testing/scripts/common.py", |
| 1081 "//testing/xvfb.py", | 1082 "//testing/xvfb.py", |
| 1082 "//testing/scripts/run_gtest_perf_test.py", | 1083 "//testing/scripts/run_gtest_perf_test.py", |
| 1083 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1084 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1084 ] | 1085 ] |
| 1085 } | 1086 } |
| OLD | NEW |