| 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 416 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 427 "resources/ui_resource_client.h", | 427 "resources/ui_resource_client.h", |
| 428 "resources/ui_resource_request.cc", | 428 "resources/ui_resource_request.cc", |
| 429 "resources/ui_resource_request.h", | 429 "resources/ui_resource_request.h", |
| 430 "resources/video_resource_updater.cc", | 430 "resources/video_resource_updater.cc", |
| 431 "resources/video_resource_updater.h", | 431 "resources/video_resource_updater.h", |
| 432 "scheduler/begin_frame_source.cc", | 432 "scheduler/begin_frame_source.cc", |
| 433 "scheduler/begin_frame_source.h", | 433 "scheduler/begin_frame_source.h", |
| 434 "scheduler/begin_frame_tracker.cc", | 434 "scheduler/begin_frame_tracker.cc", |
| 435 "scheduler/begin_frame_tracker.h", | 435 "scheduler/begin_frame_tracker.h", |
| 436 "scheduler/commit_earlyout_reason.h", | 436 "scheduler/commit_earlyout_reason.h", |
| 437 "scheduler/compositor_timing_history.cc", |
| 438 "scheduler/compositor_timing_history.h", |
| 437 "scheduler/delay_based_time_source.cc", | 439 "scheduler/delay_based_time_source.cc", |
| 438 "scheduler/delay_based_time_source.h", | 440 "scheduler/delay_based_time_source.h", |
| 439 "scheduler/draw_result.h", | 441 "scheduler/draw_result.h", |
| 440 "scheduler/scheduler.cc", | 442 "scheduler/scheduler.cc", |
| 441 "scheduler/scheduler.h", | 443 "scheduler/scheduler.h", |
| 442 "scheduler/scheduler_settings.cc", | 444 "scheduler/scheduler_settings.cc", |
| 443 "scheduler/scheduler_settings.h", | 445 "scheduler/scheduler_settings.h", |
| 444 "scheduler/scheduler_state_machine.cc", | 446 "scheduler/scheduler_state_machine.cc", |
| 445 "scheduler/scheduler_state_machine.h", | 447 "scheduler/scheduler_state_machine.h", |
| 446 "scheduler/video_frame_controller.h", | 448 "scheduler/video_frame_controller.h", |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 497 "trees/occlusion.cc", | 499 "trees/occlusion.cc", |
| 498 "trees/occlusion.h", | 500 "trees/occlusion.h", |
| 499 "trees/occlusion_tracker.cc", | 501 "trees/occlusion_tracker.cc", |
| 500 "trees/occlusion_tracker.h", | 502 "trees/occlusion_tracker.h", |
| 501 "trees/property_tree.cc", | 503 "trees/property_tree.cc", |
| 502 "trees/property_tree.h", | 504 "trees/property_tree.h", |
| 503 "trees/property_tree_builder.cc", | 505 "trees/property_tree_builder.cc", |
| 504 "trees/property_tree_builder.h", | 506 "trees/property_tree_builder.h", |
| 505 "trees/proxy.cc", | 507 "trees/proxy.cc", |
| 506 "trees/proxy.h", | 508 "trees/proxy.h", |
| 507 "trees/proxy_timing_history.cc", | |
| 508 "trees/proxy_timing_history.h", | |
| 509 "trees/scoped_abort_remaining_swap_promises.h", | 509 "trees/scoped_abort_remaining_swap_promises.h", |
| 510 "trees/single_thread_proxy.cc", | 510 "trees/single_thread_proxy.cc", |
| 511 "trees/single_thread_proxy.h", | 511 "trees/single_thread_proxy.h", |
| 512 "trees/swap_promise_monitor.cc", | 512 "trees/swap_promise_monitor.cc", |
| 513 "trees/swap_promise_monitor.h", | 513 "trees/swap_promise_monitor.h", |
| 514 "trees/thread_proxy.cc", | 514 "trees/thread_proxy.cc", |
| 515 "trees/thread_proxy.h", | 515 "trees/thread_proxy.h", |
| 516 "trees/tree_synchronizer.cc", | 516 "trees/tree_synchronizer.cc", |
| 517 "trees/tree_synchronizer.h", | 517 "trees/tree_synchronizer.h", |
| 518 ] | 518 ] |
| (...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 902 "//ui/gfx/geometry", | 902 "//ui/gfx/geometry", |
| 903 "//ui/gl", | 903 "//ui/gl", |
| 904 ] | 904 ] |
| 905 | 905 |
| 906 if (is_android) { | 906 if (is_android) { |
| 907 isolate_file = "cc_perftests.isolate" | 907 isolate_file = "cc_perftests.isolate" |
| 908 } | 908 } |
| 909 } | 909 } |
| 910 # When adding support for isolates, please have a look at run-time dependencies | 910 # When adding support for isolates, please have a look at run-time dependencies |
| 911 # in the cc_unittests_run target in cc_tests.gyp. | 911 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |