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

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

Issue 685793002: Move all event related devices from ui/events/ to ui/events/devices/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@internal-touchscreens
Patch Set: Fixed ash include Created 6 years, 1 month 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/devices/touchscreen_device.cc ('k') | ui/events/input_device.h » ('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 22 matching lines...) Expand all
33 '../gfx/gfx.gyp:gfx_geometry', 33 '../gfx/gfx.gyp:gfx_geometry',
34 'dom4_keycode_converter', 34 'dom4_keycode_converter',
35 ], 35 ],
36 'defines': [ 36 'defines': [
37 'EVENTS_BASE_IMPLEMENTATION', 37 'EVENTS_BASE_IMPLEMENTATION',
38 ], 38 ],
39 'sources': [ 39 'sources': [
40 # Note: sources list duplicated in GN build. 40 # Note: sources list duplicated in GN build.
41 'android/scroller.cc', 41 'android/scroller.cc',
42 'android/scroller.h', 42 'android/scroller.h',
43 'device_data_manager.cc', 43 'devices/device_data_manager.cc',
44 'device_data_manager.h', 44 'devices/device_data_manager.h',
45 'device_hotplug_event_observer.h', 45 'devices/device_data_manager_x11.cc',
46 'device_util_linux.cc', 46 'devices/device_data_manager_x11.h',
47 'device_util_linux.h', 47 'devices/device_hotplug_event_observer.h',
48 'devices/device_util_linux.cc',
49 'devices/device_util_linux.h',
50 'devices/input_device.cc',
51 'devices/input_device.h',
52 'devices/keyboard_device.cc',
53 'devices/keyboard_device.h',
54 'devices/touchscreen_device.cc',
55 'devices/touchscreen_device.h',
sadrul 2014/10/30 16:20:52 Should 'devices' be a separate component?
dnicoara 2014/10/31 15:17:38 Done.
48 'event_constants.h', 56 'event_constants.h',
49 'event_switches.cc', 57 'event_switches.cc',
50 'event_switches.h', 58 'event_switches.h',
51 'events_base_export.h', 59 'events_base_export.h',
52 'gesture_curve.h', 60 'gesture_curve.h',
53 'gesture_event_details.cc', 61 'gesture_event_details.cc',
54 'gesture_event_details.h', 62 'gesture_event_details.h',
55 'gestures/fling_curve.cc', 63 'gestures/fling_curve.cc',
56 'gestures/fling_curve.h', 64 'gestures/fling_curve.h',
57 'input_device.cc',
58 'input_device.h',
59 'keyboard_device.cc',
60 'keyboard_device.h',
61 'keycodes/keyboard_code_conversion.cc', 65 'keycodes/keyboard_code_conversion.cc',
62 'keycodes/keyboard_code_conversion.h', 66 'keycodes/keyboard_code_conversion.h',
63 'keycodes/keyboard_code_conversion_android.cc', 67 'keycodes/keyboard_code_conversion_android.cc',
64 'keycodes/keyboard_code_conversion_android.h', 68 'keycodes/keyboard_code_conversion_android.h',
65 'keycodes/keyboard_code_conversion_mac.h', 69 'keycodes/keyboard_code_conversion_mac.h',
66 'keycodes/keyboard_code_conversion_mac.mm', 70 'keycodes/keyboard_code_conversion_mac.mm',
67 'keycodes/keyboard_code_conversion_win.cc', 71 'keycodes/keyboard_code_conversion_win.cc',
68 'keycodes/keyboard_code_conversion_win.h', 72 'keycodes/keyboard_code_conversion_win.h',
69 'keycodes/keyboard_code_conversion_x.cc', 73 'keycodes/keyboard_code_conversion_x.cc',
70 'keycodes/keyboard_code_conversion_x.h', 74 'keycodes/keyboard_code_conversion_x.h',
71 'keycodes/keyboard_codes.h', 75 'keycodes/keyboard_codes.h',
72 'latency_info.cc', 76 'latency_info.cc',
73 'latency_info.h', 77 'latency_info.h',
74 'touchscreen_device.cc',
75 'touchscreen_device.h',
76 'x/device_data_manager_x11.cc',
77 'x/device_data_manager_x11.h',
78 'x/device_list_cache_x.cc', 78 'x/device_list_cache_x.cc',
79 'x/device_list_cache_x.h', 79 'x/device_list_cache_x.h',
80 'x/hotplug_event_handler_x11.cc', 80 'x/hotplug_event_handler_x11.cc',
81 'x/hotplug_event_handler_x11.h', 81 'x/hotplug_event_handler_x11.h',
82 'x/keysym_to_unicode.cc', 82 'x/keysym_to_unicode.cc',
83 'x/keysym_to_unicode.h', 83 'x/keysym_to_unicode.h',
84 'x/touch_factory_x11.cc', 84 'x/touch_factory_x11.cc',
85 'x/touch_factory_x11.h', 85 'x/touch_factory_x11.h',
86 ], 86 ],
87 'export_dependent_settings': [ 87 'export_dependent_settings': [
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 'events', 312 'events',
313 'events_base', 313 'events_base',
314 'events_test_support', 314 'events_test_support',
315 'gesture_detection', 315 'gesture_detection',
316 'platform/events_platform.gyp:events_platform', 316 'platform/events_platform.gyp:events_platform',
317 ], 317 ],
318 'sources': [ 318 'sources': [
319 # Note: sources list duplicated in GN build. 319 # Note: sources list duplicated in GN build.
320 'android/scroller_unittest.cc', 320 'android/scroller_unittest.cc',
321 'cocoa/events_mac_unittest.mm', 321 'cocoa/events_mac_unittest.mm',
322 'devices/device_data_manager_x11_unittest.cc',
322 'event_dispatcher_unittest.cc', 323 'event_dispatcher_unittest.cc',
323 'event_processor_unittest.cc', 324 'event_processor_unittest.cc',
324 'event_rewriter_unittest.cc', 325 'event_rewriter_unittest.cc',
325 'event_unittest.cc', 326 'event_unittest.cc',
326 'gesture_detection/bitset_32_unittest.cc', 327 'gesture_detection/bitset_32_unittest.cc',
327 'gesture_detection/gesture_event_data_packet_unittest.cc', 328 'gesture_detection/gesture_event_data_packet_unittest.cc',
328 'gesture_detection/gesture_provider_unittest.cc', 329 'gesture_detection/gesture_provider_unittest.cc',
329 'gesture_detection/motion_event_buffer_unittest.cc', 330 'gesture_detection/motion_event_buffer_unittest.cc',
330 'gesture_detection/motion_event_generic_unittest.cc', 331 'gesture_detection/motion_event_generic_unittest.cc',
331 'gesture_detection/snap_scroll_controller_unittest.cc', 332 'gesture_detection/snap_scroll_controller_unittest.cc',
332 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', 333 'gesture_detection/touch_disposition_gesture_filter_unittest.cc',
333 'gesture_detection/velocity_tracker_unittest.cc', 334 'gesture_detection/velocity_tracker_unittest.cc',
334 'gestures/fling_curve_unittest.cc', 335 'gestures/fling_curve_unittest.cc',
335 'gestures/gesture_provider_aura_unittest.cc', 336 'gestures/gesture_provider_aura_unittest.cc',
336 'gestures/motion_event_aura_unittest.cc', 337 'gestures/motion_event_aura_unittest.cc',
337 'keycodes/dom4/keycode_converter_unittest.cc', 338 'keycodes/dom4/keycode_converter_unittest.cc',
338 'latency_info_unittest.cc', 339 'latency_info_unittest.cc',
339 'platform/platform_event_source_unittest.cc', 340 'platform/platform_event_source_unittest.cc',
340 'x/device_data_manager_x11_unittest.cc',
341 'x/events_x_unittest.cc', 341 'x/events_x_unittest.cc',
342 ], 342 ],
343 'conditions': [ 343 'conditions': [
344 ['use_x11==1', { 344 ['use_x11==1', {
345 'dependencies': [ 345 'dependencies': [
346 '../../build/linux/system.gyp:x11', 346 '../../build/linux/system.gyp:x11',
347 '../gfx/x/gfx_x11.gyp:gfx_x11', 347 '../gfx/x/gfx_x11.gyp:gfx_x11',
348 ], 348 ],
349 }], 349 }],
350 ['use_ozone==1', { 350 ['use_ozone==1', {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 ], 394 ],
395 'variables': { 395 'variables': {
396 'test_suite_name': 'events_unittests', 396 'test_suite_name': 'events_unittests',
397 }, 397 },
398 'includes': [ '../../build/apk_test.gypi' ], 398 'includes': [ '../../build/apk_test.gypi' ],
399 }, 399 },
400 ], 400 ],
401 }], 401 }],
402 ], 402 ],
403 } 403 }
OLDNEW
« no previous file with comments | « ui/events/devices/touchscreen_device.cc ('k') | ui/events/input_device.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698