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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
392 "resources/scoped_gpu_raster.h", | 392 "resources/scoped_gpu_raster.h", |
393 "resources/scoped_resource.cc", | 393 "resources/scoped_resource.cc", |
394 "resources/scoped_resource.h", | 394 "resources/scoped_resource.h", |
395 "resources/scoped_ui_resource.cc", | 395 "resources/scoped_ui_resource.cc", |
396 "resources/scoped_ui_resource.h", | 396 "resources/scoped_ui_resource.h", |
397 "resources/shared_bitmap.cc", | 397 "resources/shared_bitmap.cc", |
398 "resources/shared_bitmap.h", | 398 "resources/shared_bitmap.h", |
399 "resources/shared_bitmap_manager.h", | 399 "resources/shared_bitmap_manager.h", |
400 "resources/single_release_callback.cc", | 400 "resources/single_release_callback.cc", |
401 "resources/single_release_callback.h", | 401 "resources/single_release_callback.h", |
| 402 "resources/single_release_callback_impl.cc", |
| 403 "resources/single_release_callback_impl.h", |
402 "resources/skpicture_content_layer_updater.cc", | 404 "resources/skpicture_content_layer_updater.cc", |
403 "resources/skpicture_content_layer_updater.h", | 405 "resources/skpicture_content_layer_updater.h", |
404 "resources/task_graph_runner.cc", | 406 "resources/task_graph_runner.cc", |
405 "resources/task_graph_runner.h", | 407 "resources/task_graph_runner.h", |
406 "resources/texture_mailbox.cc", | 408 "resources/texture_mailbox.cc", |
407 "resources/texture_mailbox_deleter.cc", | 409 "resources/texture_mailbox_deleter.cc", |
408 "resources/texture_mailbox_deleter.h", | 410 "resources/texture_mailbox_deleter.h", |
409 "resources/texture_mailbox.h", | 411 "resources/texture_mailbox.h", |
410 "resources/texture_uploader.cc", | 412 "resources/texture_uploader.cc", |
411 "resources/texture_uploader.h", | 413 "resources/texture_uploader.h", |
(...skipping 305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
717 "resources/texture_mailbox_deleter_unittest.cc", | 719 "resources/texture_mailbox_deleter_unittest.cc", |
718 "resources/texture_uploader_unittest.cc", | 720 "resources/texture_uploader_unittest.cc", |
719 "resources/tile_manager_unittest.cc", | 721 "resources/tile_manager_unittest.cc", |
720 "resources/tile_priority_unittest.cc", | 722 "resources/tile_priority_unittest.cc", |
721 "resources/video_resource_updater_unittest.cc", | 723 "resources/video_resource_updater_unittest.cc", |
722 "scheduler/delay_based_time_source_unittest.cc", | 724 "scheduler/delay_based_time_source_unittest.cc", |
723 "scheduler/scheduler_state_machine_unittest.cc", | 725 "scheduler/scheduler_state_machine_unittest.cc", |
724 "scheduler/scheduler_unittest.cc", | 726 "scheduler/scheduler_unittest.cc", |
725 "test/layer_tree_json_parser_unittest.cc", | 727 "test/layer_tree_json_parser_unittest.cc", |
726 "test/test_web_graphics_context_3d_unittest.cc", | 728 "test/test_web_graphics_context_3d_unittest.cc", |
| 729 "trees/blocking_task_runner_unittest.cc", |
727 "trees/damage_tracker_unittest.cc", | 730 "trees/damage_tracker_unittest.cc", |
728 "trees/layer_sorter_unittest.cc", | 731 "trees/layer_sorter_unittest.cc", |
729 "trees/layer_tree_host_common_unittest.cc", | 732 "trees/layer_tree_host_common_unittest.cc", |
730 "trees/layer_tree_host_impl_unittest.cc", | 733 "trees/layer_tree_host_impl_unittest.cc", |
731 "trees/layer_tree_host_pixeltest_blending.cc", | 734 "trees/layer_tree_host_pixeltest_blending.cc", |
732 "trees/layer_tree_host_pixeltest_filters.cc", | 735 "trees/layer_tree_host_pixeltest_filters.cc", |
733 "trees/layer_tree_host_pixeltest_masks.cc", | 736 "trees/layer_tree_host_pixeltest_masks.cc", |
734 "trees/layer_tree_host_pixeltest_on_demand_raster.cc", | 737 "trees/layer_tree_host_pixeltest_on_demand_raster.cc", |
735 "trees/layer_tree_host_pixeltest_readback.cc", | 738 "trees/layer_tree_host_pixeltest_readback.cc", |
736 "trees/layer_tree_host_unittest.cc", | 739 "trees/layer_tree_host_unittest.cc", |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
803 "//gpu/command_buffer/common:gles2_utils", | 806 "//gpu/command_buffer/common:gles2_utils", |
804 "//media", | 807 "//media", |
805 "//skia", | 808 "//skia", |
806 "//testing/gmock", | 809 "//testing/gmock", |
807 "//testing/gtest", | 810 "//testing/gtest", |
808 "//testing/perf", | 811 "//testing/perf", |
809 "//ui/gfx", | 812 "//ui/gfx", |
810 "//ui/gfx/geometry", | 813 "//ui/gfx/geometry", |
811 ] | 814 ] |
812 } | 815 } |
OLD | NEW |