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

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: Code review 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
« no previous file with comments | « ui/events/BUILD.gn ('k') | ui/events/gesture_detection/gesture_provider_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 'gesture_detection/gesture_config_helper_aura.cc', 206 'gesture_detection/gesture_config_helper_aura.cc',
207 'gesture_detection/gesture_detection_export.h', 207 'gesture_detection/gesture_detection_export.h',
208 'gesture_detection/gesture_detector.cc', 208 'gesture_detection/gesture_detector.cc',
209 'gesture_detection/gesture_detector.h', 209 'gesture_detection/gesture_detector.h',
210 'gesture_detection/gesture_event_data.cc', 210 'gesture_detection/gesture_event_data.cc',
211 'gesture_detection/gesture_event_data.h', 211 'gesture_detection/gesture_event_data.h',
212 'gesture_detection/gesture_event_data_packet.cc', 212 'gesture_detection/gesture_event_data_packet.cc',
213 'gesture_detection/gesture_event_data_packet.h', 213 'gesture_detection/gesture_event_data_packet.h',
214 'gesture_detection/gesture_provider.cc', 214 'gesture_detection/gesture_provider.cc',
215 'gesture_detection/gesture_provider.h', 215 'gesture_detection/gesture_provider.h',
216 'gesture_detection/motion_event.cc',
216 'gesture_detection/motion_event.h', 217 'gesture_detection/motion_event.h',
218 'gesture_detection/motion_event_generic.cc',
219 'gesture_detection/motion_event_generic.h',
217 'gesture_detection/scale_gesture_detector.cc', 220 'gesture_detection/scale_gesture_detector.cc',
218 'gesture_detection/scale_gesture_detector.h', 221 'gesture_detection/scale_gesture_detector.h',
219 'gesture_detection/snap_scroll_controller.cc', 222 'gesture_detection/snap_scroll_controller.cc',
220 'gesture_detection/snap_scroll_controller.h', 223 'gesture_detection/snap_scroll_controller.h',
221 'gesture_detection/touch_disposition_gesture_filter.cc', 224 'gesture_detection/touch_disposition_gesture_filter.cc',
222 'gesture_detection/touch_disposition_gesture_filter.h', 225 'gesture_detection/touch_disposition_gesture_filter.h',
223 'gesture_detection/velocity_tracker_state.cc', 226 'gesture_detection/velocity_tracker_state.cc',
224 'gesture_detection/velocity_tracker_state.h', 227 'gesture_detection/velocity_tracker_state.h',
225 'gesture_detection/velocity_tracker.cc', 228 'gesture_detection/velocity_tracker.cc',
226 'gesture_detection/velocity_tracker.h', 229 'gesture_detection/velocity_tracker.h',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 ['OS == "android"', { 281 ['OS == "android"', {
279 'sources!': [ 282 'sources!': [
280 # Event generator not yet ported to Android. 283 # Event generator not yet ported to Android.
281 'test/event_generator.cc', 284 'test/event_generator.cc',
282 'test/event_generator.h', 285 'test/event_generator.h',
283 ], 286 ],
284 }], 287 }],
285 ], 288 ],
286 }, 289 },
287 { 290 {
288 # GN vesrion: //ui/events:events_unittests 291 # GN vesrion: //ui/events:events_unittests
tdresser 2014/07/23 18:06:15 vesrion!
jdduke (slow) 2014/07/23 21:40:01 Done.
289 'target_name': 'events_unittests', 292 'target_name': 'events_unittests',
290 'type': '<(gtest_target_type)', 293 'type': '<(gtest_target_type)',
291 'dependencies': [ 294 'dependencies': [
292 '<(DEPTH)/base/base.gyp:base', 295 '<(DEPTH)/base/base.gyp:base',
293 '<(DEPTH)/base/base.gyp:run_all_unittests', 296 '<(DEPTH)/base/base.gyp:run_all_unittests',
294 '<(DEPTH)/base/base.gyp:test_support_base', 297 '<(DEPTH)/base/base.gyp:test_support_base',
295 '<(DEPTH)/skia/skia.gyp:skia', 298 '<(DEPTH)/skia/skia.gyp:skia',
296 '<(DEPTH)/testing/gtest.gyp:gtest', 299 '<(DEPTH)/testing/gtest.gyp:gtest',
297 '../gfx/gfx.gyp:gfx', 300 '../gfx/gfx.gyp:gfx',
298 '../gfx/gfx.gyp:gfx_geometry', 301 '../gfx/gfx.gyp:gfx_geometry',
(...skipping 10 matching lines...) Expand all
309 'cocoa/events_mac_unittest.mm', 312 'cocoa/events_mac_unittest.mm',
310 'event_dispatcher_unittest.cc', 313 'event_dispatcher_unittest.cc',
311 'event_processor_unittest.cc', 314 'event_processor_unittest.cc',
312 'event_rewriter_unittest.cc', 315 'event_rewriter_unittest.cc',
313 'event_unittest.cc', 316 'event_unittest.cc',
314 'gestures/motion_event_aura_unittest.cc', 317 'gestures/motion_event_aura_unittest.cc',
315 'gestures/velocity_calculator_unittest.cc', 318 'gestures/velocity_calculator_unittest.cc',
316 'gesture_detection/bitset_32_unittest.cc', 319 'gesture_detection/bitset_32_unittest.cc',
317 'gesture_detection/gesture_event_data_packet_unittest.cc', 320 'gesture_detection/gesture_event_data_packet_unittest.cc',
318 'gesture_detection/gesture_provider_unittest.cc', 321 'gesture_detection/gesture_provider_unittest.cc',
322 'gesture_detection/motion_event_generic_unittest.cc',
319 'gesture_detection/velocity_tracker_unittest.cc', 323 'gesture_detection/velocity_tracker_unittest.cc',
320 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', 324 'gesture_detection/touch_disposition_gesture_filter_unittest.cc',
321 'keycodes/dom4/keycode_converter_unittest.cc', 325 'keycodes/dom4/keycode_converter_unittest.cc',
322 'latency_info_unittest.cc', 326 'latency_info_unittest.cc',
323 'platform/platform_event_source_unittest.cc', 327 'platform/platform_event_source_unittest.cc',
324 'x/events_x_unittest.cc', 328 'x/events_x_unittest.cc',
325 ], 329 ],
326 'conditions': [ 330 'conditions': [
327 ['use_ozone==1', { 331 ['use_ozone==1', {
328 'sources': [ 332 'sources': [
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 ], 375 ],
372 'variables': { 376 'variables': {
373 'test_suite_name': 'events_unittests', 377 'test_suite_name': 'events_unittests',
374 }, 378 },
375 'includes': [ '../../build/apk_test.gypi' ], 379 'includes': [ '../../build/apk_test.gypi' ],
376 }, 380 },
377 ], 381 ],
378 }], 382 }],
379 ], 383 ],
380 } 384 }
OLDNEW
« no previous file with comments | « ui/events/BUILD.gn ('k') | ui/events/gesture_detection/gesture_provider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698