| 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 import("//build/config/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("cc") { | 8 component("cc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "animation/animation.cc", | 10 "animation/animation.cc", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "debug/unittest_only_benchmark.h", | 108 "debug/unittest_only_benchmark.h", |
| 109 "debug/unittest_only_benchmark_impl.cc", | 109 "debug/unittest_only_benchmark_impl.cc", |
| 110 "debug/unittest_only_benchmark_impl.h", | 110 "debug/unittest_only_benchmark_impl.h", |
| 111 "input/browser_controls_offset_manager.cc", | 111 "input/browser_controls_offset_manager.cc", |
| 112 "input/browser_controls_offset_manager.h", | 112 "input/browser_controls_offset_manager.h", |
| 113 "input/browser_controls_offset_manager_client.h", | 113 "input/browser_controls_offset_manager_client.h", |
| 114 "input/input_handler.cc", | 114 "input/input_handler.cc", |
| 115 "input/input_handler.h", | 115 "input/input_handler.h", |
| 116 "input/layer_selection_bound.cc", | 116 "input/layer_selection_bound.cc", |
| 117 "input/layer_selection_bound.h", | 117 "input/layer_selection_bound.h", |
| 118 "input/main_thread_scrolling_reason.h", |
| 118 "input/page_scale_animation.cc", | 119 "input/page_scale_animation.cc", |
| 119 "input/page_scale_animation.h", | 120 "input/page_scale_animation.h", |
| 120 "input/scroll_elasticity_helper.cc", | 121 "input/scroll_elasticity_helper.cc", |
| 121 "input/scroll_elasticity_helper.h", | 122 "input/scroll_elasticity_helper.h", |
| 122 "input/scroll_state.cc", | 123 "input/scroll_state.cc", |
| 123 "input/scroll_state.h", | 124 "input/scroll_state.h", |
| 124 "input/scroll_state_data.cc", | 125 "input/scroll_state_data.cc", |
| 125 "input/scroll_state_data.h", | 126 "input/scroll_state_data.h", |
| 126 "input/scrollbar_animation_controller.cc", | 127 "input/scrollbar_animation_controller.cc", |
| 127 "input/scrollbar_animation_controller.h", | 128 "input/scrollbar_animation_controller.h", |
| (...skipping 951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1079 "//ui/gl:test_support", | 1080 "//ui/gl:test_support", |
| 1080 ] | 1081 ] |
| 1081 | 1082 |
| 1082 # This target should not require the Chrome executable to run. | 1083 # This target should not require the Chrome executable to run. |
| 1083 assert_no_deps = [ "//chrome" ] | 1084 assert_no_deps = [ "//chrome" ] |
| 1084 | 1085 |
| 1085 data = [ | 1086 data = [ |
| 1086 "test/data/", | 1087 "test/data/", |
| 1087 ] | 1088 ] |
| 1088 } | 1089 } |
| OLD | NEW |