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

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

Issue 28513004: Move evdev events support into EventFactoryDelegateEvdev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 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 | Annotate | Revision Log
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 'keycodes/keyboard_code_conversion_gtk.h', 58 'keycodes/keyboard_code_conversion_gtk.h',
59 'keycodes/keyboard_code_conversion_mac.h', 59 'keycodes/keyboard_code_conversion_mac.h',
60 'keycodes/keyboard_code_conversion_mac.mm', 60 'keycodes/keyboard_code_conversion_mac.mm',
61 'keycodes/keyboard_code_conversion_win.cc', 61 'keycodes/keyboard_code_conversion_win.cc',
62 'keycodes/keyboard_code_conversion_win.h', 62 'keycodes/keyboard_code_conversion_win.h',
63 'keycodes/keyboard_code_conversion_x.cc', 63 'keycodes/keyboard_code_conversion_x.cc',
64 'keycodes/keyboard_code_conversion_x.h', 64 'keycodes/keyboard_code_conversion_x.h',
65 'keycodes/keyboard_codes.h', 65 'keycodes/keyboard_codes.h',
66 'latency_info.cc', 66 'latency_info.cc',
67 'latency_info.h', 67 'latency_info.h',
68 'ozone/evdev/key_event_converter_ozone.cc', 68 'ozone/evdev/event_factory_delegate_evdev.cc',
69 'ozone/evdev/key_event_converter_ozone.h', 69 'ozone/evdev/event_factory_delegate_evdev.h',
70 'ozone/evdev/touch_event_converter_ozone.cc', 70 'ozone/evdev/key_event_converter_evdev.cc',
71 'ozone/evdev/touch_event_converter_ozone.h', 71 'ozone/evdev/key_event_converter_evdev.h',
72 'ozone/evdev/touch_event_converter_evdev.cc',
73 'ozone/evdev/touch_event_converter_evdev.h',
72 'ozone/event_converter_ozone.cc', 74 'ozone/event_converter_ozone.cc',
73 'ozone/event_converter_ozone.h', 75 'ozone/event_converter_ozone.h',
74 'ozone/event_factory_delegate_ozone.h', 76 'ozone/event_factory_delegate_ozone.h',
75 'ozone/event_factory_ozone.cc', 77 'ozone/event_factory_ozone.cc',
76 'ozone/event_factory_ozone.h', 78 'ozone/event_factory_ozone.h',
77 'ozone/events_ozone.cc', 79 'ozone/events_ozone.cc',
78 'win/events_win.cc', 80 'win/events_win.cc',
79 'x/device_data_manager.cc', 81 'x/device_data_manager.cc',
80 'x/device_data_manager.h', 82 'x/device_data_manager.h',
81 'x/device_list_cache_x.cc', 83 'x/device_list_cache_x.cc',
(...skipping 26 matching lines...) Expand all
108 'sources!': [ 110 'sources!': [
109 'event_utils.cc', 111 'event_utils.cc',
110 'keycodes/keyboard_code_conversion.cc', 112 'keycodes/keyboard_code_conversion.cc',
111 ], 113 ],
112 }], 114 }],
113 ['use_x11==1', { 115 ['use_x11==1', {
114 'dependencies': [ 116 'dependencies': [
115 '<(DEPTH)/build/linux/system.gyp:x11', 117 '<(DEPTH)/build/linux/system.gyp:x11',
116 ], 118 ],
117 }], 119 }],
120 ['use_ozone_evdev==1', {
121 'defines': ['USE_OZONE_EVDEV=1'],
rjkroege 2013/10/18 18:57:55 it is conventional to make the define in common.gy
spang 2013/10/21 18:46:12 This is the difference between a rebuilding in a f
122 }, {
123 'sources/': [
rjkroege 2013/10/18 18:57:55 this is atypical. the typical pattern is more like
spang 2013/10/21 18:46:12 Ok, will rename all these files.
124 ['exclude', '^ozone/evdev/*'],
125 ]
126 }],
118 ], 127 ],
119 } 128 }
120 ], 129 ],
121 } 130 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698