| 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("//cc/cc.gni") | 6 import("//cc/cc.gni") |
| 7 | 7 |
| 8 cc_component("cc") { | 8 cc_component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "debug/benchmark_instrumentation.cc", | 10 "debug/benchmark_instrumentation.cc", |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 386 "scheduler/delay_based_time_source.cc", | 386 "scheduler/delay_based_time_source.cc", |
| 387 "scheduler/delay_based_time_source.h", | 387 "scheduler/delay_based_time_source.h", |
| 388 "scheduler/draw_result.h", | 388 "scheduler/draw_result.h", |
| 389 "scheduler/scheduler.cc", | 389 "scheduler/scheduler.cc", |
| 390 "scheduler/scheduler.h", | 390 "scheduler/scheduler.h", |
| 391 "scheduler/scheduler_settings.cc", | 391 "scheduler/scheduler_settings.cc", |
| 392 "scheduler/scheduler_settings.h", | 392 "scheduler/scheduler_settings.h", |
| 393 "scheduler/scheduler_state_machine.cc", | 393 "scheduler/scheduler_state_machine.cc", |
| 394 "scheduler/scheduler_state_machine.h", | 394 "scheduler/scheduler_state_machine.h", |
| 395 "scheduler/video_frame_controller.h", | 395 "scheduler/video_frame_controller.h", |
| 396 "tiles/checker_image_tracker.cc", |
| 397 "tiles/checker_image_tracker.h", |
| 396 "tiles/decoded_image_tracker.cc", | 398 "tiles/decoded_image_tracker.cc", |
| 397 "tiles/decoded_image_tracker.h", | 399 "tiles/decoded_image_tracker.h", |
| 398 "tiles/eviction_tile_priority_queue.cc", | 400 "tiles/eviction_tile_priority_queue.cc", |
| 399 "tiles/eviction_tile_priority_queue.h", | 401 "tiles/eviction_tile_priority_queue.h", |
| 400 "tiles/gpu_image_decode_cache.cc", | 402 "tiles/gpu_image_decode_cache.cc", |
| 401 "tiles/gpu_image_decode_cache.h", | 403 "tiles/gpu_image_decode_cache.h", |
| 402 "tiles/image_controller.cc", | 404 "tiles/image_controller.cc", |
| 403 "tiles/image_controller.h", | 405 "tiles/image_controller.h", |
| 404 "tiles/image_decode_cache.h", | 406 "tiles/image_decode_cache.h", |
| 405 "tiles/mipmap_util.cc", | 407 "tiles/mipmap_util.cc", |
| (...skipping 583 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 data = [ | 991 data = [ |
| 990 "test/data/", | 992 "test/data/", |
| 991 | 993 |
| 992 # Needed for isolate script to execute. | 994 # Needed for isolate script to execute. |
| 993 "//testing/scripts/common.py", | 995 "//testing/scripts/common.py", |
| 994 "//testing/xvfb.py", | 996 "//testing/xvfb.py", |
| 995 "//testing/scripts/run_gtest_perf_test.py", | 997 "//testing/scripts/run_gtest_perf_test.py", |
| 996 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 998 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 997 ] | 999 ] |
| 998 } | 1000 } |
| OLD | NEW |