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

Side by Side Diff: ui/events/events.gyp

Issue 407313002: Add a MotionEventGeneric implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 5 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
OLDNEW
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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
198 'gesture_detection/gesture_config_helper_aura.cc', 198 'gesture_detection/gesture_config_helper_aura.cc',
199 'gesture_detection/gesture_detection_export.h', 199 'gesture_detection/gesture_detection_export.h',
200 'gesture_detection/gesture_detector.cc', 200 'gesture_detection/gesture_detector.cc',
201 'gesture_detection/gesture_detector.h', 201 'gesture_detection/gesture_detector.h',
202 'gesture_detection/gesture_event_data.cc', 202 'gesture_detection/gesture_event_data.cc',
203 'gesture_detection/gesture_event_data.h', 203 'gesture_detection/gesture_event_data.h',
204 'gesture_detection/gesture_event_data_packet.cc', 204 'gesture_detection/gesture_event_data_packet.cc',
205 'gesture_detection/gesture_event_data_packet.h', 205 'gesture_detection/gesture_event_data_packet.h',
206 'gesture_detection/gesture_provider.cc', 206 'gesture_detection/gesture_provider.cc',
207 'gesture_detection/gesture_provider.h', 207 'gesture_detection/gesture_provider.h',
208 'gesture_detection/motion_event.cc',
208 'gesture_detection/motion_event.h', 209 'gesture_detection/motion_event.h',
210 'gesture_detection/motion_event_generic.cc',
211 'gesture_detection/motion_event_generic.h',
209 'gesture_detection/scale_gesture_detector.cc', 212 'gesture_detection/scale_gesture_detector.cc',
210 'gesture_detection/scale_gesture_detector.h', 213 'gesture_detection/scale_gesture_detector.h',
211 'gesture_detection/snap_scroll_controller.cc', 214 'gesture_detection/snap_scroll_controller.cc',
212 'gesture_detection/snap_scroll_controller.h', 215 'gesture_detection/snap_scroll_controller.h',
213 'gesture_detection/touch_disposition_gesture_filter.cc', 216 'gesture_detection/touch_disposition_gesture_filter.cc',
214 'gesture_detection/touch_disposition_gesture_filter.h', 217 'gesture_detection/touch_disposition_gesture_filter.h',
215 'gesture_detection/velocity_tracker_state.cc', 218 'gesture_detection/velocity_tracker_state.cc',
216 'gesture_detection/velocity_tracker_state.h', 219 'gesture_detection/velocity_tracker_state.h',
217 'gesture_detection/velocity_tracker.cc', 220 'gesture_detection/velocity_tracker.cc',
218 'gesture_detection/velocity_tracker.h', 221 'gesture_detection/velocity_tracker.h',
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 'sources': [ 299 'sources': [
297 'cocoa/events_mac_unittest.mm', 300 'cocoa/events_mac_unittest.mm',
298 'event_dispatcher_unittest.cc', 301 'event_dispatcher_unittest.cc',
299 'event_processor_unittest.cc', 302 'event_processor_unittest.cc',
300 'event_rewriter_unittest.cc', 303 'event_rewriter_unittest.cc',
301 'event_unittest.cc', 304 'event_unittest.cc',
302 'gestures/motion_event_aura_unittest.cc', 305 'gestures/motion_event_aura_unittest.cc',
303 'gestures/velocity_calculator_unittest.cc', 306 'gestures/velocity_calculator_unittest.cc',
304 'gesture_detection/bitset_32_unittest.cc', 307 'gesture_detection/bitset_32_unittest.cc',
305 'gesture_detection/gesture_provider_unittest.cc', 308 'gesture_detection/gesture_provider_unittest.cc',
309 'gesture_detection/motion_event_generic_unittest.cc',
306 'gesture_detection/velocity_tracker_unittest.cc', 310 'gesture_detection/velocity_tracker_unittest.cc',
307 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', 311 'gesture_detection/touch_disposition_gesture_filter_unittest.cc',
308 'keycodes/dom4/keycode_converter_unittest.cc', 312 'keycodes/dom4/keycode_converter_unittest.cc',
309 'latency_info_unittest.cc', 313 'latency_info_unittest.cc',
310 'platform/platform_event_source_unittest.cc', 314 'platform/platform_event_source_unittest.cc',
311 'x/events_x_unittest.cc', 315 'x/events_x_unittest.cc',
312 ], 316 ],
313 'conditions': [ 317 'conditions': [
314 ['use_ozone==1', { 318 ['use_ozone==1', {
315 'sources': [ 319 'sources': [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 ], 362 ],
359 'variables': { 363 'variables': {
360 'test_suite_name': 'events_unittests', 364 'test_suite_name': 'events_unittests',
361 }, 365 },
362 'includes': [ '../../build/apk_test.gypi' ], 366 'includes': [ '../../build/apk_test.gypi' ],
363 }, 367 },
364 ], 368 ],
365 }], 369 }],
366 ], 370 ],
367 } 371 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698