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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 "debug/unittest_only_benchmark.cc", | 111 "debug/unittest_only_benchmark.cc", |
112 "debug/unittest_only_benchmark.h", | 112 "debug/unittest_only_benchmark.h", |
113 "debug/unittest_only_benchmark_impl.cc", | 113 "debug/unittest_only_benchmark_impl.cc", |
114 "debug/unittest_only_benchmark_impl.h", | 114 "debug/unittest_only_benchmark_impl.h", |
115 "input/input_handler.cc", | 115 "input/input_handler.cc", |
116 "input/input_handler.h", | 116 "input/input_handler.h", |
117 "input/page_scale_animation.cc", | 117 "input/page_scale_animation.cc", |
118 "input/page_scale_animation.h", | 118 "input/page_scale_animation.h", |
119 "input/layer_selection_bound.cc", | 119 "input/layer_selection_bound.cc", |
120 "input/layer_selection_bound.h", | 120 "input/layer_selection_bound.h", |
| 121 "input/scroll_elasticity_controller.h", |
121 "input/selection_bound_type.h", | 122 "input/selection_bound_type.h", |
122 "input/top_controls_manager.cc", | 123 "input/top_controls_manager.cc", |
123 "input/top_controls_manager.h", | 124 "input/top_controls_manager.h", |
124 "input/top_controls_manager_client.h", | 125 "input/top_controls_manager_client.h", |
125 "layers/append_quads_data.h", | 126 "layers/append_quads_data.h", |
126 "layers/content_layer.cc", | 127 "layers/content_layer.cc", |
127 "layers/content_layer.h", | 128 "layers/content_layer.h", |
128 "layers/content_layer_client.h", | 129 "layers/content_layer_client.h", |
129 "layers/contents_scaling_layer.cc", | 130 "layers/contents_scaling_layer.cc", |
130 "layers/contents_scaling_layer.h", | 131 "layers/contents_scaling_layer.h", |
(...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
453 "trees/layer_tree_host.h", | 454 "trees/layer_tree_host.h", |
454 "trees/layer_tree_host_client.h", | 455 "trees/layer_tree_host_client.h", |
455 "trees/layer_tree_host_common.cc", | 456 "trees/layer_tree_host_common.cc", |
456 "trees/layer_tree_host_common.h", | 457 "trees/layer_tree_host_common.h", |
457 "trees/layer_tree_host_impl.cc", | 458 "trees/layer_tree_host_impl.cc", |
458 "trees/layer_tree_host_impl.h", | 459 "trees/layer_tree_host_impl.h", |
459 "trees/layer_tree_impl.cc", | 460 "trees/layer_tree_impl.cc", |
460 "trees/layer_tree_impl.h", | 461 "trees/layer_tree_impl.h", |
461 "trees/layer_tree_settings.cc", | 462 "trees/layer_tree_settings.cc", |
462 "trees/layer_tree_settings.h", | 463 "trees/layer_tree_settings.h", |
| 464 "trees/layer_tree_scroll_elasticity_client.cc", |
| 465 "trees/layer_tree_scroll_elasticity_client.h", |
463 "trees/occlusion.cc", | 466 "trees/occlusion.cc", |
464 "trees/occlusion.h", | 467 "trees/occlusion.h", |
465 "trees/occlusion_tracker.cc", | 468 "trees/occlusion_tracker.cc", |
466 "trees/occlusion_tracker.h", | 469 "trees/occlusion_tracker.h", |
467 "trees/proxy.cc", | 470 "trees/proxy.cc", |
468 "trees/proxy.h", | 471 "trees/proxy.h", |
469 "trees/proxy_timing_history.cc", | 472 "trees/proxy_timing_history.cc", |
470 "trees/proxy_timing_history.h", | 473 "trees/proxy_timing_history.h", |
471 "trees/scoped_abort_remaining_swap_promises.h", | 474 "trees/scoped_abort_remaining_swap_promises.h", |
472 "trees/single_thread_proxy.cc", | 475 "trees/single_thread_proxy.cc", |
(...skipping 361 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
834 "//gpu/command_buffer/common:gles2_utils", | 837 "//gpu/command_buffer/common:gles2_utils", |
835 "//media", | 838 "//media", |
836 "//skia", | 839 "//skia", |
837 "//testing/gmock", | 840 "//testing/gmock", |
838 "//testing/gtest", | 841 "//testing/gtest", |
839 "//testing/perf", | 842 "//testing/perf", |
840 "//ui/gfx", | 843 "//ui/gfx", |
841 "//ui/gfx/geometry", | 844 "//ui/gfx/geometry", |
842 ] | 845 ] |
843 } | 846 } |
OLD | NEW |