| 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 394 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 405 "resources/ui_resource_client.h", | 405 "resources/ui_resource_client.h", |
| 406 "resources/ui_resource_request.cc", | 406 "resources/ui_resource_request.cc", |
| 407 "resources/ui_resource_request.h", | 407 "resources/ui_resource_request.h", |
| 408 "resources/video_resource_updater.cc", | 408 "resources/video_resource_updater.cc", |
| 409 "resources/video_resource_updater.h", | 409 "resources/video_resource_updater.h", |
| 410 "scheduler/begin_frame_source.cc", | 410 "scheduler/begin_frame_source.cc", |
| 411 "scheduler/begin_frame_source.h", | 411 "scheduler/begin_frame_source.h", |
| 412 "scheduler/begin_frame_tracker.cc", | 412 "scheduler/begin_frame_tracker.cc", |
| 413 "scheduler/begin_frame_tracker.h", | 413 "scheduler/begin_frame_tracker.h", |
| 414 "scheduler/commit_earlyout_reason.h", | 414 "scheduler/commit_earlyout_reason.h", |
| 415 "scheduler/compositor_timing_history.cc", |
| 416 "scheduler/compositor_timing_history.h", |
| 415 "scheduler/delay_based_time_source.cc", | 417 "scheduler/delay_based_time_source.cc", |
| 416 "scheduler/delay_based_time_source.h", | 418 "scheduler/delay_based_time_source.h", |
| 417 "scheduler/draw_result.h", | 419 "scheduler/draw_result.h", |
| 418 "scheduler/scheduler.cc", | 420 "scheduler/scheduler.cc", |
| 419 "scheduler/scheduler.h", | 421 "scheduler/scheduler.h", |
| 420 "scheduler/scheduler_settings.cc", | 422 "scheduler/scheduler_settings.cc", |
| 421 "scheduler/scheduler_settings.h", | 423 "scheduler/scheduler_settings.h", |
| 422 "scheduler/scheduler_state_machine.cc", | 424 "scheduler/scheduler_state_machine.cc", |
| 423 "scheduler/scheduler_state_machine.h", | 425 "scheduler/scheduler_state_machine.h", |
| 424 "scheduler/video_frame_controller.h", | 426 "scheduler/video_frame_controller.h", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 473 "trees/occlusion.cc", | 475 "trees/occlusion.cc", |
| 474 "trees/occlusion.h", | 476 "trees/occlusion.h", |
| 475 "trees/occlusion_tracker.cc", | 477 "trees/occlusion_tracker.cc", |
| 476 "trees/occlusion_tracker.h", | 478 "trees/occlusion_tracker.h", |
| 477 "trees/property_tree.cc", | 479 "trees/property_tree.cc", |
| 478 "trees/property_tree.h", | 480 "trees/property_tree.h", |
| 479 "trees/property_tree_builder.cc", | 481 "trees/property_tree_builder.cc", |
| 480 "trees/property_tree_builder.h", | 482 "trees/property_tree_builder.h", |
| 481 "trees/proxy.cc", | 483 "trees/proxy.cc", |
| 482 "trees/proxy.h", | 484 "trees/proxy.h", |
| 483 "trees/proxy_timing_history.cc", | |
| 484 "trees/proxy_timing_history.h", | |
| 485 "trees/scoped_abort_remaining_swap_promises.h", | 485 "trees/scoped_abort_remaining_swap_promises.h", |
| 486 "trees/single_thread_proxy.cc", | 486 "trees/single_thread_proxy.cc", |
| 487 "trees/single_thread_proxy.h", | 487 "trees/single_thread_proxy.h", |
| 488 "trees/swap_promise_monitor.cc", | 488 "trees/swap_promise_monitor.cc", |
| 489 "trees/swap_promise_monitor.h", | 489 "trees/swap_promise_monitor.h", |
| 490 "trees/thread_proxy.cc", | 490 "trees/thread_proxy.cc", |
| 491 "trees/thread_proxy.h", | 491 "trees/thread_proxy.h", |
| 492 "trees/tree_synchronizer.cc", | 492 "trees/tree_synchronizer.cc", |
| 493 "trees/tree_synchronizer.h", | 493 "trees/tree_synchronizer.h", |
| 494 ] | 494 ] |
| (...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 876 "//ui/gfx/geometry", | 876 "//ui/gfx/geometry", |
| 877 "//ui/gl", | 877 "//ui/gl", |
| 878 ] | 878 ] |
| 879 | 879 |
| 880 if (is_android) { | 880 if (is_android) { |
| 881 isolate_file = "cc_perftests.isolate" | 881 isolate_file = "cc_perftests.isolate" |
| 882 } | 882 } |
| 883 } | 883 } |
| 884 # When adding support for isolates, please have a look at run-time dependencies | 884 # When adding support for isolates, please have a look at run-time dependencies |
| 885 # in the cc_unittests_run target in cc_tests.gyp. | 885 # in the cc_unittests_run target in cc_tests.gyp. |
| OLD | NEW |