| 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 component("cc") { | 5 component("cc") { |
| 6 sources = [ | 6 sources = [ |
| 7 "animation/animation.cc", | 7 "animation/animation.cc", |
| 8 "animation/animation.h", | 8 "animation/animation.h", |
| 9 "animation/animation_curve.cc", | 9 "animation/animation_curve.cc", |
| 10 "animation/animation_curve.h", | 10 "animation/animation_curve.h", |
| (...skipping 413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 424 "resources/ui_resource_bitmap.cc", | 424 "resources/ui_resource_bitmap.cc", |
| 425 "resources/ui_resource_bitmap.h", | 425 "resources/ui_resource_bitmap.h", |
| 426 "resources/ui_resource_client.h", | 426 "resources/ui_resource_client.h", |
| 427 "resources/ui_resource_request.cc", | 427 "resources/ui_resource_request.cc", |
| 428 "resources/ui_resource_request.h", | 428 "resources/ui_resource_request.h", |
| 429 "resources/video_resource_updater.cc", | 429 "resources/video_resource_updater.cc", |
| 430 "resources/video_resource_updater.h", | 430 "resources/video_resource_updater.h", |
| 431 "scheduler/delay_based_time_source.cc", | 431 "scheduler/delay_based_time_source.cc", |
| 432 "scheduler/delay_based_time_source.h", | 432 "scheduler/delay_based_time_source.h", |
| 433 "scheduler/draw_result.h", | 433 "scheduler/draw_result.h", |
| 434 "scheduler/frame_source.cc", |
| 435 "scheduler/frame_source.h", |
| 434 "scheduler/scheduler.cc", | 436 "scheduler/scheduler.cc", |
| 435 "scheduler/scheduler.h", | 437 "scheduler/scheduler.h", |
| 436 "scheduler/scheduler_settings.cc", | 438 "scheduler/scheduler_settings.cc", |
| 437 "scheduler/scheduler_settings.h", | 439 "scheduler/scheduler_settings.h", |
| 438 "scheduler/scheduler_state_machine.cc", | 440 "scheduler/scheduler_state_machine.cc", |
| 439 "scheduler/scheduler_state_machine.h", | 441 "scheduler/scheduler_state_machine.h", |
| 440 "trees/blocking_task_runner.cc", | 442 "trees/blocking_task_runner.cc", |
| 441 "trees/blocking_task_runner.h", | 443 "trees/blocking_task_runner.h", |
| 442 "trees/damage_tracker.cc", | 444 "trees/damage_tracker.cc", |
| 443 "trees/damage_tracker.h", | 445 "trees/damage_tracker.h", |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 726 "resources/resource_provider_unittest.cc", | 728 "resources/resource_provider_unittest.cc", |
| 727 "resources/resource_update_controller_unittest.cc", | 729 "resources/resource_update_controller_unittest.cc", |
| 728 "resources/scoped_resource_unittest.cc", | 730 "resources/scoped_resource_unittest.cc", |
| 729 "resources/task_graph_runner_unittest.cc", | 731 "resources/task_graph_runner_unittest.cc", |
| 730 "resources/texture_mailbox_deleter_unittest.cc", | 732 "resources/texture_mailbox_deleter_unittest.cc", |
| 731 "resources/texture_uploader_unittest.cc", | 733 "resources/texture_uploader_unittest.cc", |
| 732 "resources/tile_manager_unittest.cc", | 734 "resources/tile_manager_unittest.cc", |
| 733 "resources/tile_priority_unittest.cc", | 735 "resources/tile_priority_unittest.cc", |
| 734 "resources/video_resource_updater_unittest.cc", | 736 "resources/video_resource_updater_unittest.cc", |
| 735 "scheduler/delay_based_time_source_unittest.cc", | 737 "scheduler/delay_based_time_source_unittest.cc", |
| 738 "scheduler/frame_source_unittest.cc", |
| 736 "scheduler/scheduler_state_machine_unittest.cc", | 739 "scheduler/scheduler_state_machine_unittest.cc", |
| 737 "scheduler/scheduler_unittest.cc", | 740 "scheduler/scheduler_unittest.cc", |
| 738 "test/layer_tree_json_parser_unittest.cc", | 741 "test/layer_tree_json_parser_unittest.cc", |
| 739 "test/test_web_graphics_context_3d_unittest.cc", | 742 "test/test_web_graphics_context_3d_unittest.cc", |
| 740 "trees/blocking_task_runner_unittest.cc", | 743 "trees/blocking_task_runner_unittest.cc", |
| 741 "trees/damage_tracker_unittest.cc", | 744 "trees/damage_tracker_unittest.cc", |
| 742 "trees/layer_sorter_unittest.cc", | 745 "trees/layer_sorter_unittest.cc", |
| 743 "trees/layer_tree_host_common_unittest.cc", | 746 "trees/layer_tree_host_common_unittest.cc", |
| 744 "trees/layer_tree_host_impl_unittest.cc", | 747 "trees/layer_tree_host_impl_unittest.cc", |
| 745 "trees/layer_tree_host_pixeltest_blending.cc", | 748 "trees/layer_tree_host_pixeltest_blending.cc", |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 818 "//gpu/command_buffer/common:gles2_utils", | 821 "//gpu/command_buffer/common:gles2_utils", |
| 819 "//media", | 822 "//media", |
| 820 "//skia", | 823 "//skia", |
| 821 "//testing/gmock", | 824 "//testing/gmock", |
| 822 "//testing/gtest", | 825 "//testing/gtest", |
| 823 "//testing/perf", | 826 "//testing/perf", |
| 824 "//ui/gfx", | 827 "//ui/gfx", |
| 825 "//ui/gfx/geometry", | 828 "//ui/gfx/geometry", |
| 826 ] | 829 ] |
| 827 } | 830 } |
| OLD | NEW |