Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Side by Side Diff: cc/BUILD.gn

Issue 1215183004: Arrange compositor scrolling into scroll customization format (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix windows compile. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/input/scroll_state.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 90 matching lines...) Expand 10 before | Expand all | Expand 10 after
101 "debug/unittest_only_benchmark_impl.cc", 101 "debug/unittest_only_benchmark_impl.cc",
102 "debug/unittest_only_benchmark_impl.h", 102 "debug/unittest_only_benchmark_impl.h",
103 "input/input_handler.cc", 103 "input/input_handler.cc",
104 "input/input_handler.h", 104 "input/input_handler.h",
105 "input/layer_selection_bound.cc", 105 "input/layer_selection_bound.cc",
106 "input/layer_selection_bound.h", 106 "input/layer_selection_bound.h",
107 "input/page_scale_animation.cc", 107 "input/page_scale_animation.cc",
108 "input/page_scale_animation.h", 108 "input/page_scale_animation.h",
109 "input/scroll_elasticity_helper.cc", 109 "input/scroll_elasticity_helper.cc",
110 "input/scroll_elasticity_helper.h", 110 "input/scroll_elasticity_helper.h",
111 "input/scroll_state.cc",
112 "input/scroll_state.h",
111 "input/selection.h", 113 "input/selection.h",
112 "input/selection_bound_type.h", 114 "input/selection_bound_type.h",
113 "input/top_controls_manager.cc", 115 "input/top_controls_manager.cc",
114 "input/top_controls_manager.h", 116 "input/top_controls_manager.h",
115 "input/top_controls_manager_client.h", 117 "input/top_controls_manager_client.h",
116 "layers/append_quads_data.h", 118 "layers/append_quads_data.h",
117 "layers/content_layer_client.h", 119 "layers/content_layer_client.h",
118 "layers/delegated_frame_provider.cc", 120 "layers/delegated_frame_provider.cc",
119 "layers/delegated_frame_provider.h", 121 "layers/delegated_frame_provider.h",
120 "layers/delegated_frame_resource_collection.cc", 122 "layers/delegated_frame_resource_collection.cc",
(...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after
713 "base/list_container_unittest.cc", 715 "base/list_container_unittest.cc",
714 "base/math_util_unittest.cc", 716 "base/math_util_unittest.cc",
715 "base/region_unittest.cc", 717 "base/region_unittest.cc",
716 "base/rolling_time_delta_history_unittest.cc", 718 "base/rolling_time_delta_history_unittest.cc",
717 "base/scoped_ptr_vector_unittest.cc", 719 "base/scoped_ptr_vector_unittest.cc",
718 "base/sidecar_list_container_unittest.cc", 720 "base/sidecar_list_container_unittest.cc",
719 "base/simple_enclosed_region_unittest.cc", 721 "base/simple_enclosed_region_unittest.cc",
720 "base/tiling_data_unittest.cc", 722 "base/tiling_data_unittest.cc",
721 "debug/frame_timing_tracker_unittest.cc", 723 "debug/frame_timing_tracker_unittest.cc",
722 "debug/micro_benchmark_controller_unittest.cc", 724 "debug/micro_benchmark_controller_unittest.cc",
725 "input/scroll_state_unittest.cc",
723 "input/top_controls_manager_unittest.cc", 726 "input/top_controls_manager_unittest.cc",
724 "layers/delegated_frame_provider_unittest.cc", 727 "layers/delegated_frame_provider_unittest.cc",
725 "layers/delegated_frame_resource_collection_unittest.cc", 728 "layers/delegated_frame_resource_collection_unittest.cc",
726 "layers/delegated_renderer_layer_impl_unittest.cc", 729 "layers/delegated_renderer_layer_impl_unittest.cc",
727 "layers/delegated_renderer_layer_unittest.cc", 730 "layers/delegated_renderer_layer_unittest.cc",
728 "layers/heads_up_display_layer_impl_unittest.cc", 731 "layers/heads_up_display_layer_impl_unittest.cc",
729 "layers/heads_up_display_unittest.cc", 732 "layers/heads_up_display_unittest.cc",
730 "layers/io_surface_layer_impl_unittest.cc", 733 "layers/io_surface_layer_impl_unittest.cc",
731 "layers/layer_impl_unittest.cc", 734 "layers/layer_impl_unittest.cc",
732 "layers/layer_iterator_unittest.cc", 735 "layers/layer_iterator_unittest.cc",
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
893 "//ui/gfx/geometry", 896 "//ui/gfx/geometry",
894 "//ui/gl", 897 "//ui/gl",
895 ] 898 ]
896 899
897 if (is_android) { 900 if (is_android) {
898 isolate_file = "cc_perftests.isolate" 901 isolate_file = "cc_perftests.isolate"
899 } 902 }
900 } 903 }
901 # When adding support for isolates, please have a look at run-time dependencies 904 # When adding support for isolates, please have a look at run-time dependencies
902 # in the cc_unittests_run target in cc_tests.gyp. 905 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | cc/input/scroll_state.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698