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 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
911 "//testing/gmock", | 912 "//testing/gmock", |
912 "//testing/gtest", | 913 "//testing/gtest", |
913 "//testing/perf", | 914 "//testing/perf", |
914 "//ui/gfx", | 915 "//ui/gfx", |
915 "//ui/gfx/geometry", | 916 "//ui/gfx/geometry", |
916 "//ui/gl", | 917 "//ui/gl", |
917 ] | 918 ] |
918 } | 919 } |
919 # When adding support for isolates, please have a look at run-time dependencies | 920 # When adding support for isolates, please have a look at run-time dependencies |
920 # in the cc_unittests_run target in cc_tests.gyp. | 921 # in the cc_unittests_run target in cc_tests.gyp. |
OLD | NEW |