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 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
474 "scheduler/commit_earlyout_reason.h", | 474 "scheduler/commit_earlyout_reason.h", |
475 "scheduler/delay_based_time_source.cc", | 475 "scheduler/delay_based_time_source.cc", |
476 "scheduler/delay_based_time_source.h", | 476 "scheduler/delay_based_time_source.h", |
477 "scheduler/draw_result.h", | 477 "scheduler/draw_result.h", |
478 "scheduler/scheduler.cc", | 478 "scheduler/scheduler.cc", |
479 "scheduler/scheduler.h", | 479 "scheduler/scheduler.h", |
480 "scheduler/scheduler_settings.cc", | 480 "scheduler/scheduler_settings.cc", |
481 "scheduler/scheduler_settings.h", | 481 "scheduler/scheduler_settings.h", |
482 "scheduler/scheduler_state_machine.cc", | 482 "scheduler/scheduler_state_machine.cc", |
483 "scheduler/scheduler_state_machine.h", | 483 "scheduler/scheduler_state_machine.h", |
| 484 "scheduler/video_frame_controller.h", |
484 "trees/blocking_task_runner.cc", | 485 "trees/blocking_task_runner.cc", |
485 "trees/blocking_task_runner.h", | 486 "trees/blocking_task_runner.h", |
486 "trees/damage_tracker.cc", | 487 "trees/damage_tracker.cc", |
487 "trees/damage_tracker.h", | 488 "trees/damage_tracker.h", |
488 "trees/draw_property_utils.cc", | 489 "trees/draw_property_utils.cc", |
489 "trees/draw_property_utils.h", | 490 "trees/draw_property_utils.h", |
490 "trees/latency_info_swap_promise_monitor.cc", | 491 "trees/latency_info_swap_promise_monitor.cc", |
491 "trees/latency_info_swap_promise_monitor.h", | 492 "trees/latency_info_swap_promise_monitor.h", |
492 "trees/layer_tree_host.cc", | 493 "trees/layer_tree_host.cc", |
493 "trees/layer_tree_host.h", | 494 "trees/layer_tree_host.h", |
(...skipping 421 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
915 "//testing/gmock", | 916 "//testing/gmock", |
916 "//testing/gtest", | 917 "//testing/gtest", |
917 "//testing/perf", | 918 "//testing/perf", |
918 "//ui/gfx", | 919 "//ui/gfx", |
919 "//ui/gfx/geometry", | 920 "//ui/gfx/geometry", |
920 "//ui/gl", | 921 "//ui/gl", |
921 ] | 922 ] |
922 } | 923 } |
923 # When adding support for isolates, please have a look at run-time dependencies | 924 # When adding support for isolates, please have a look at run-time dependencies |
924 # in the cc_unittests_run target in cc_tests.gyp. | 925 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |