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

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 nit. Created 5 years, 4 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') | no next file with comments »
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 602 matching lines...) Expand 10 before | Expand all | Expand 10 after
723 "base/list_container_unittest.cc", 725 "base/list_container_unittest.cc",
724 "base/math_util_unittest.cc", 726 "base/math_util_unittest.cc",
725 "base/region_unittest.cc", 727 "base/region_unittest.cc",
726 "base/rolling_time_delta_history_unittest.cc", 728 "base/rolling_time_delta_history_unittest.cc",
727 "base/scoped_ptr_vector_unittest.cc", 729 "base/scoped_ptr_vector_unittest.cc",
728 "base/sidecar_list_container_unittest.cc", 730 "base/sidecar_list_container_unittest.cc",
729 "base/simple_enclosed_region_unittest.cc", 731 "base/simple_enclosed_region_unittest.cc",
730 "base/tiling_data_unittest.cc", 732 "base/tiling_data_unittest.cc",
731 "debug/frame_timing_tracker_unittest.cc", 733 "debug/frame_timing_tracker_unittest.cc",
732 "debug/micro_benchmark_controller_unittest.cc", 734 "debug/micro_benchmark_controller_unittest.cc",
735 "input/scroll_state_unittest.cc",
733 "input/top_controls_manager_unittest.cc", 736 "input/top_controls_manager_unittest.cc",
734 "layers/delegated_frame_provider_unittest.cc", 737 "layers/delegated_frame_provider_unittest.cc",
735 "layers/delegated_frame_resource_collection_unittest.cc", 738 "layers/delegated_frame_resource_collection_unittest.cc",
736 "layers/delegated_renderer_layer_impl_unittest.cc", 739 "layers/delegated_renderer_layer_impl_unittest.cc",
737 "layers/delegated_renderer_layer_unittest.cc", 740 "layers/delegated_renderer_layer_unittest.cc",
738 "layers/heads_up_display_layer_impl_unittest.cc", 741 "layers/heads_up_display_layer_impl_unittest.cc",
739 "layers/heads_up_display_unittest.cc", 742 "layers/heads_up_display_unittest.cc",
740 "layers/io_surface_layer_impl_unittest.cc", 743 "layers/io_surface_layer_impl_unittest.cc",
741 "layers/layer_impl_unittest.cc", 744 "layers/layer_impl_unittest.cc",
742 "layers/layer_iterator_unittest.cc", 745 "layers/layer_iterator_unittest.cc",
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after
912 "//ui/gl", 915 "//ui/gl",
913 "//ui/gl:test_support", 916 "//ui/gl:test_support",
914 ] 917 ]
915 918
916 if (is_android) { 919 if (is_android) {
917 isolate_file = "cc_perftests.isolate" 920 isolate_file = "cc_perftests.isolate"
918 } 921 }
919 } 922 }
920 # When adding support for isolates, please have a look at run-time dependencies 923 # When adding support for isolates, please have a look at run-time dependencies
921 # in the cc_unittests_run target in cc_tests.gyp. 924 # in the cc_unittests_run target in cc_tests.gyp.
OLDNEW
« no previous file with comments | « no previous file | cc/cc.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698