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 | 6 |
7 static_library("dom4_keycode_converter") { | 7 static_library("dom4_keycode_converter") { |
8 sources = [ | 8 sources = [ |
9 "keycodes/dom4/keycode_converter.cc", | 9 "keycodes/dom4/keycode_converter.cc", |
10 "keycodes/dom4/keycode_converter.h", | 10 "keycodes/dom4/keycode_converter.h", |
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
165 "gesture_detection/gesture_detection_export.h", | 165 "gesture_detection/gesture_detection_export.h", |
166 "gesture_detection/gesture_detector.cc", | 166 "gesture_detection/gesture_detector.cc", |
167 "gesture_detection/gesture_detector.h", | 167 "gesture_detection/gesture_detector.h", |
168 "gesture_detection/gesture_event_data.cc", | 168 "gesture_detection/gesture_event_data.cc", |
169 "gesture_detection/gesture_event_data.h", | 169 "gesture_detection/gesture_event_data.h", |
170 "gesture_detection/gesture_event_data_packet.cc", | 170 "gesture_detection/gesture_event_data_packet.cc", |
171 "gesture_detection/gesture_event_data_packet.h", | 171 "gesture_detection/gesture_event_data_packet.h", |
172 "gesture_detection/gesture_config_helper.h", | 172 "gesture_detection/gesture_config_helper.h", |
173 "gesture_detection/gesture_provider.cc", | 173 "gesture_detection/gesture_provider.cc", |
174 "gesture_detection/gesture_provider.h", | 174 "gesture_detection/gesture_provider.h", |
| 175 "gesture_detection/gesture_touch_uma_histogram.cc", |
| 176 "gesture_detection/gesture_touch_uma_histogram.h", |
175 "gesture_detection/motion_event.cc", | 177 "gesture_detection/motion_event.cc", |
176 "gesture_detection/motion_event.h", | 178 "gesture_detection/motion_event.h", |
177 "gesture_detection/motion_event_buffer.cc", | 179 "gesture_detection/motion_event_buffer.cc", |
178 "gesture_detection/motion_event_buffer.h", | 180 "gesture_detection/motion_event_buffer.h", |
179 "gesture_detection/motion_event_generic.cc", | 181 "gesture_detection/motion_event_generic.cc", |
180 "gesture_detection/motion_event_generic.h", | 182 "gesture_detection/motion_event_generic.h", |
181 "gesture_detection/scale_gesture_detector.cc", | 183 "gesture_detection/scale_gesture_detector.cc", |
182 "gesture_detection/scale_gesture_detector.h", | 184 "gesture_detection/scale_gesture_detector.h", |
183 "gesture_detection/snap_scroll_controller.cc", | 185 "gesture_detection/snap_scroll_controller.cc", |
184 "gesture_detection/snap_scroll_controller.h", | 186 "gesture_detection/snap_scroll_controller.h", |
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
304 "ozone/evdev/touch_event_converter_evdev_unittest.cc", | 306 "ozone/evdev/touch_event_converter_evdev_unittest.cc", |
305 ] | 307 ] |
306 } | 308 } |
307 | 309 |
308 if (use_aura) { | 310 if (use_aura) { |
309 sources += [ | 311 sources += [ |
310 "gestures/gesture_provider_aura_unittest.cc", | 312 "gestures/gesture_provider_aura_unittest.cc", |
311 ] | 313 ] |
312 } | 314 } |
313 } | 315 } |
OLD | NEW |