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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 if (is_win || is_mac || use_x11 || use_ozone) { | 164 if (is_win || is_mac || use_x11 || use_ozone) { |
165 sources -= [ "events_stub.cc" ] | 165 sources -= [ "events_stub.cc" ] |
166 } | 166 } |
167 } | 167 } |
168 | 168 |
169 component("gesture_detection") { | 169 component("gesture_detection") { |
170 sources = [ | 170 sources = [ |
171 "gesture_detection/bitset_32.h", | 171 "gesture_detection/bitset_32.h", |
172 "gesture_detection/filtered_gesture_provider.cc", | 172 "gesture_detection/filtered_gesture_provider.cc", |
173 "gesture_detection/filtered_gesture_provider.h", | 173 "gesture_detection/filtered_gesture_provider.h", |
| 174 "gesture_detection/gesture_config_helper.h", |
174 "gesture_detection/gesture_detection_export.h", | 175 "gesture_detection/gesture_detection_export.h", |
175 "gesture_detection/gesture_detector.cc", | 176 "gesture_detection/gesture_detector.cc", |
176 "gesture_detection/gesture_detector.h", | 177 "gesture_detection/gesture_detector.h", |
177 "gesture_detection/gesture_event_data.cc", | 178 "gesture_detection/gesture_event_data.cc", |
178 "gesture_detection/gesture_event_data.h", | 179 "gesture_detection/gesture_event_data.h", |
179 "gesture_detection/gesture_event_data_packet.cc", | 180 "gesture_detection/gesture_event_data_packet.cc", |
180 "gesture_detection/gesture_event_data_packet.h", | 181 "gesture_detection/gesture_event_data_packet.h", |
181 "gesture_detection/gesture_config_helper.h", | 182 "gesture_detection/gesture_listeners.cc", |
| 183 "gesture_detection/gesture_listeners.h", |
182 "gesture_detection/gesture_provider.cc", | 184 "gesture_detection/gesture_provider.cc", |
183 "gesture_detection/gesture_provider.h", | 185 "gesture_detection/gesture_provider.h", |
184 "gesture_detection/gesture_touch_uma_histogram.cc", | 186 "gesture_detection/gesture_touch_uma_histogram.cc", |
185 "gesture_detection/gesture_touch_uma_histogram.h", | 187 "gesture_detection/gesture_touch_uma_histogram.h", |
186 "gesture_detection/motion_event.cc", | 188 "gesture_detection/motion_event.cc", |
187 "gesture_detection/motion_event.h", | 189 "gesture_detection/motion_event.h", |
188 "gesture_detection/motion_event_buffer.cc", | 190 "gesture_detection/motion_event_buffer.cc", |
189 "gesture_detection/motion_event_buffer.h", | 191 "gesture_detection/motion_event_buffer.h", |
190 "gesture_detection/motion_event_generic.cc", | 192 "gesture_detection/motion_event_generic.cc", |
191 "gesture_detection/motion_event_generic.h", | 193 "gesture_detection/motion_event_generic.h", |
192 "gesture_detection/scale_gesture_detector.cc", | 194 "gesture_detection/scale_gesture_detector.cc", |
193 "gesture_detection/scale_gesture_detector.h", | 195 "gesture_detection/scale_gesture_detector.h", |
| 196 "gesture_detection/scale_gesture_listeners.cc", |
| 197 "gesture_detection/scale_gesture_listeners.h", |
194 "gesture_detection/snap_scroll_controller.cc", | 198 "gesture_detection/snap_scroll_controller.cc", |
195 "gesture_detection/snap_scroll_controller.h", | 199 "gesture_detection/snap_scroll_controller.h", |
196 "gesture_detection/touch_disposition_gesture_filter.cc", | 200 "gesture_detection/touch_disposition_gesture_filter.cc", |
197 "gesture_detection/touch_disposition_gesture_filter.h", | 201 "gesture_detection/touch_disposition_gesture_filter.h", |
198 "gesture_detection/velocity_tracker_state.cc", | 202 "gesture_detection/velocity_tracker_state.cc", |
199 "gesture_detection/velocity_tracker_state.h", | 203 "gesture_detection/velocity_tracker_state.h", |
200 "gesture_detection/velocity_tracker.cc", | 204 "gesture_detection/velocity_tracker.cc", |
201 "gesture_detection/velocity_tracker.h", | 205 "gesture_detection/velocity_tracker.h", |
202 ] | 206 ] |
203 | 207 |
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
317 "ozone/evdev/touch_event_converter_evdev_unittest.cc", | 321 "ozone/evdev/touch_event_converter_evdev_unittest.cc", |
318 ] | 322 ] |
319 } | 323 } |
320 | 324 |
321 if (use_aura) { | 325 if (use_aura) { |
322 sources += [ | 326 sources += [ |
323 "gestures/gesture_provider_aura_unittest.cc", | 327 "gestures/gesture_provider_aura_unittest.cc", |
324 ] | 328 ] |
325 } | 329 } |
326 } | 330 } |
OLD | NEW |