OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 'device_data_manager.h', | 42 'device_data_manager.h', |
43 'device_hotplug_event_observer.h', | 43 'device_hotplug_event_observer.h', |
44 'event_constants.h', | 44 'event_constants.h', |
45 'event_switches.cc', | 45 'event_switches.cc', |
46 'event_switches.h', | 46 'event_switches.h', |
47 'events_base_export.h', | 47 'events_base_export.h', |
48 'gesture_event_details.cc', | 48 'gesture_event_details.cc', |
49 'gesture_event_details.h', | 49 'gesture_event_details.h', |
50 'gestures/fling_curve.cc', | 50 'gestures/fling_curve.cc', |
51 'gestures/fling_curve.h', | 51 'gestures/fling_curve.h', |
52 'gestures/gesture_configuration.cc', | |
53 'gestures/gesture_configuration.h', | |
54 'keycodes/keyboard_code_conversion.cc', | 52 'keycodes/keyboard_code_conversion.cc', |
55 'keycodes/keyboard_code_conversion.h', | 53 'keycodes/keyboard_code_conversion.h', |
56 'keycodes/keyboard_code_conversion_android.cc', | 54 'keycodes/keyboard_code_conversion_android.cc', |
57 'keycodes/keyboard_code_conversion_android.h', | 55 'keycodes/keyboard_code_conversion_android.h', |
58 'keycodes/keyboard_code_conversion_mac.h', | 56 'keycodes/keyboard_code_conversion_mac.h', |
59 'keycodes/keyboard_code_conversion_mac.mm', | 57 'keycodes/keyboard_code_conversion_mac.mm', |
60 'keycodes/keyboard_code_conversion_win.cc', | 58 'keycodes/keyboard_code_conversion_win.cc', |
61 'keycodes/keyboard_code_conversion_win.h', | 59 'keycodes/keyboard_code_conversion_win.h', |
62 'keycodes/keyboard_code_conversion_x.cc', | 60 'keycodes/keyboard_code_conversion_x.cc', |
63 'keycodes/keyboard_code_conversion_x.h', | 61 'keycodes/keyboard_code_conversion_x.h', |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 'events_base', | 192 'events_base', |
195 ], | 193 ], |
196 'defines': [ | 194 'defines': [ |
197 'GESTURE_DETECTION_IMPLEMENTATION', | 195 'GESTURE_DETECTION_IMPLEMENTATION', |
198 ], | 196 ], |
199 'sources': [ | 197 'sources': [ |
200 # Note: sources list duplicated in GN build. | 198 # Note: sources list duplicated in GN build. |
201 'gesture_detection/bitset_32.h', | 199 'gesture_detection/bitset_32.h', |
202 'gesture_detection/filtered_gesture_provider.cc', | 200 'gesture_detection/filtered_gesture_provider.cc', |
203 'gesture_detection/filtered_gesture_provider.h', | 201 'gesture_detection/filtered_gesture_provider.h', |
204 'gesture_detection/gesture_config_helper.h', | 202 'gesture_detection/gesture_configuration.cc', |
205 'gesture_detection/gesture_config_helper_android.cc', | 203 'gesture_detection/gesture_configuration.h', |
206 'gesture_detection/gesture_config_helper_aura.cc', | 204 'gesture_detection/gesture_configuration_android.cc', |
| 205 'gesture_detection/gesture_configuration_aura.cc', |
207 'gesture_detection/gesture_detection_export.h', | 206 'gesture_detection/gesture_detection_export.h', |
208 'gesture_detection/gesture_detector.cc', | 207 'gesture_detection/gesture_detector.cc', |
209 'gesture_detection/gesture_detector.h', | 208 'gesture_detection/gesture_detector.h', |
210 'gesture_detection/gesture_event_data.cc', | 209 'gesture_detection/gesture_event_data.cc', |
211 'gesture_detection/gesture_event_data.h', | 210 'gesture_detection/gesture_event_data.h', |
212 'gesture_detection/gesture_event_data_packet.cc', | 211 'gesture_detection/gesture_event_data_packet.cc', |
213 'gesture_detection/gesture_event_data_packet.h', | 212 'gesture_detection/gesture_event_data_packet.h', |
214 'gesture_detection/gesture_listeners.cc', | 213 'gesture_detection/gesture_listeners.cc', |
215 'gesture_detection/gesture_listeners.h', | 214 'gesture_detection/gesture_listeners.h', |
216 'gesture_detection/gesture_provider.cc', | 215 'gesture_detection/gesture_provider.cc', |
(...skipping 15 matching lines...) Expand all Loading... |
232 'gesture_detection/touch_disposition_gesture_filter.cc', | 231 'gesture_detection/touch_disposition_gesture_filter.cc', |
233 'gesture_detection/touch_disposition_gesture_filter.h', | 232 'gesture_detection/touch_disposition_gesture_filter.h', |
234 'gesture_detection/velocity_tracker_state.cc', | 233 'gesture_detection/velocity_tracker_state.cc', |
235 'gesture_detection/velocity_tracker_state.h', | 234 'gesture_detection/velocity_tracker_state.h', |
236 'gesture_detection/velocity_tracker.cc', | 235 'gesture_detection/velocity_tracker.cc', |
237 'gesture_detection/velocity_tracker.h', | 236 'gesture_detection/velocity_tracker.h', |
238 ], | 237 ], |
239 'conditions': [ | 238 'conditions': [ |
240 ['use_aura!=1 and OS!="android"', { | 239 ['use_aura!=1 and OS!="android"', { |
241 'sources': [ | 240 'sources': [ |
242 'gesture_detection/gesture_config_helper.cc', | 241 'gesture_detection/gesture_configuration_default.cc', |
243 ], | 242 ], |
244 }], | 243 }], |
245 ], | 244 ], |
246 }, | 245 }, |
247 { | 246 { |
248 # GN version: //ui/events:test_support | 247 # GN version: //ui/events:test_support |
249 'target_name': 'events_test_support', | 248 'target_name': 'events_test_support', |
250 'type': 'static_library', | 249 'type': 'static_library', |
251 'dependencies': [ | 250 'dependencies': [ |
252 '<(DEPTH)/base/base.gyp:base', | 251 '<(DEPTH)/base/base.gyp:base', |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 ], | 380 ], |
382 'variables': { | 381 'variables': { |
383 'test_suite_name': 'events_unittests', | 382 'test_suite_name': 'events_unittests', |
384 }, | 383 }, |
385 'includes': [ '../../build/apk_test.gypi' ], | 384 'includes': [ '../../build/apk_test.gypi' ], |
386 }, | 385 }, |
387 ], | 386 ], |
388 }], | 387 }], |
389 ], | 388 ], |
390 } | 389 } |
OLD | NEW |