| 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 401 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 412 "resources/ui_resource_client.h", | 412 "resources/ui_resource_client.h", |
| 413 "resources/ui_resource_request.cc", | 413 "resources/ui_resource_request.cc", |
| 414 "resources/ui_resource_request.h", | 414 "resources/ui_resource_request.h", |
| 415 "resources/video_resource_updater.cc", | 415 "resources/video_resource_updater.cc", |
| 416 "resources/video_resource_updater.h", | 416 "resources/video_resource_updater.h", |
| 417 "scheduler/begin_frame_source.cc", | 417 "scheduler/begin_frame_source.cc", |
| 418 "scheduler/begin_frame_source.h", | 418 "scheduler/begin_frame_source.h", |
| 419 "scheduler/begin_frame_tracker.cc", | 419 "scheduler/begin_frame_tracker.cc", |
| 420 "scheduler/begin_frame_tracker.h", | 420 "scheduler/begin_frame_tracker.h", |
| 421 "scheduler/commit_earlyout_reason.h", | 421 "scheduler/commit_earlyout_reason.h", |
| 422 "scheduler/compositor_timing_history.cc", |
| 423 "scheduler/compositor_timing_history.h", |
| 422 "scheduler/delay_based_time_source.cc", | 424 "scheduler/delay_based_time_source.cc", |
| 423 "scheduler/delay_based_time_source.h", | 425 "scheduler/delay_based_time_source.h", |
| 424 "scheduler/draw_result.h", | 426 "scheduler/draw_result.h", |
| 425 "scheduler/scheduler.cc", | 427 "scheduler/scheduler.cc", |
| 426 "scheduler/scheduler.h", | 428 "scheduler/scheduler.h", |
| 427 "scheduler/scheduler_settings.cc", | 429 "scheduler/scheduler_settings.cc", |
| 428 "scheduler/scheduler_settings.h", | 430 "scheduler/scheduler_settings.h", |
| 429 "scheduler/scheduler_state_machine.cc", | 431 "scheduler/scheduler_state_machine.cc", |
| 430 "scheduler/scheduler_state_machine.h", | 432 "scheduler/scheduler_state_machine.h", |
| 431 "scheduler/video_frame_controller.h", | 433 "scheduler/video_frame_controller.h", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 "trees/occlusion.cc", | 482 "trees/occlusion.cc", |
| 481 "trees/occlusion.h", | 483 "trees/occlusion.h", |
| 482 "trees/occlusion_tracker.cc", | 484 "trees/occlusion_tracker.cc", |
| 483 "trees/occlusion_tracker.h", | 485 "trees/occlusion_tracker.h", |
| 484 "trees/property_tree.cc", | 486 "trees/property_tree.cc", |
| 485 "trees/property_tree.h", | 487 "trees/property_tree.h", |
| 486 "trees/property_tree_builder.cc", | 488 "trees/property_tree_builder.cc", |
| 487 "trees/property_tree_builder.h", | 489 "trees/property_tree_builder.h", |
| 488 "trees/proxy.cc", | 490 "trees/proxy.cc", |
| 489 "trees/proxy.h", | 491 "trees/proxy.h", |
| 490 "trees/proxy_timing_history.cc", | |
| 491 "trees/proxy_timing_history.h", | |
| 492 "trees/scoped_abort_remaining_swap_promises.h", | 492 "trees/scoped_abort_remaining_swap_promises.h", |
| 493 "trees/single_thread_proxy.cc", | 493 "trees/single_thread_proxy.cc", |
| 494 "trees/single_thread_proxy.h", | 494 "trees/single_thread_proxy.h", |
| 495 "trees/swap_promise_monitor.cc", | 495 "trees/swap_promise_monitor.cc", |
| 496 "trees/swap_promise_monitor.h", | 496 "trees/swap_promise_monitor.h", |
| 497 "trees/thread_proxy.cc", | 497 "trees/thread_proxy.cc", |
| 498 "trees/thread_proxy.h", | 498 "trees/thread_proxy.h", |
| 499 "trees/tree_synchronizer.cc", | 499 "trees/tree_synchronizer.cc", |
| 500 "trees/tree_synchronizer.h", | 500 "trees/tree_synchronizer.h", |
| 501 ] | 501 ] |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 883 "//ui/gfx/geometry", | 883 "//ui/gfx/geometry", |
| 884 "//ui/gl", | 884 "//ui/gl", |
| 885 ] | 885 ] |
| 886 | 886 |
| 887 if (is_android) { | 887 if (is_android) { |
| 888 isolate_file = "cc_perftests.isolate" | 888 isolate_file = "cc_perftests.isolate" |
| 889 } | 889 } |
| 890 } | 890 } |
| 891 # When adding support for isolates, please have a look at run-time dependencies | 891 # When adding support for isolates, please have a look at run-time dependencies |
| 892 # in the cc_unittests_run target in cc_tests.gyp. | 892 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |