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

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

Issue 150633005: evdev: Support device hotplug with udev (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add TODOs Created 6 years, 10 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
« no previous file with comments | « no previous file | ui/events/ozone/evdev/device_manager_udev.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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 'gestures/gesture_point.h', 105 'gestures/gesture_point.h',
106 'gestures/gesture_recognizer.h', 106 'gestures/gesture_recognizer.h',
107 'gestures/gesture_recognizer_impl.cc', 107 'gestures/gesture_recognizer_impl.cc',
108 'gestures/gesture_recognizer_impl.h', 108 'gestures/gesture_recognizer_impl.h',
109 'gestures/gesture_sequence.cc', 109 'gestures/gesture_sequence.cc',
110 'gestures/gesture_sequence.h', 110 'gestures/gesture_sequence.h',
111 'gestures/gesture_types.cc', 111 'gestures/gesture_types.cc',
112 'gestures/gesture_types.h', 112 'gestures/gesture_types.h',
113 'gestures/velocity_calculator.cc', 113 'gestures/velocity_calculator.cc',
114 'gestures/velocity_calculator.h', 114 'gestures/velocity_calculator.h',
115 'ozone/evdev/device_manager_udev.cc',
116 'ozone/evdev/device_manager_udev.h',
115 'ozone/evdev/event_converter.cc', 117 'ozone/evdev/event_converter.cc',
116 'ozone/evdev/event_converter.h', 118 'ozone/evdev/event_converter.h',
117 'ozone/evdev/event_device_info.cc', 119 'ozone/evdev/event_device_info.cc',
118 'ozone/evdev/event_device_info.h', 120 'ozone/evdev/event_device_info.h',
119 'ozone/evdev/event_factory.cc', 121 'ozone/evdev/event_factory.cc',
120 'ozone/evdev/event_factory.h', 122 'ozone/evdev/event_factory.h',
121 'ozone/evdev/event_modifiers.cc', 123 'ozone/evdev/event_modifiers.cc',
122 'ozone/evdev/event_modifiers.h', 124 'ozone/evdev/event_modifiers.h',
123 'ozone/evdev/key_event_converter.cc', 125 'ozone/evdev/key_event_converter.cc',
124 'ozone/evdev/key_event_converter.h', 126 'ozone/evdev/key_event_converter.h',
(...skipping 19 matching lines...) Expand all
144 ], 146 ],
145 }], 147 }],
146 ['use_ozone_evdev==1', { 148 ['use_ozone_evdev==1', {
147 'defines': ['USE_OZONE_EVDEV=1'], 149 'defines': ['USE_OZONE_EVDEV=1'],
148 }], 150 }],
149 ['use_ozone_evdev==1 and use_udev==1', { 151 ['use_ozone_evdev==1 and use_udev==1', {
150 'dependencies': [ 152 'dependencies': [
151 '<(DEPTH)/build/linux/system.gyp:udev', 153 '<(DEPTH)/build/linux/system.gyp:udev',
152 ], 154 ],
153 }], 155 }],
156 ['use_udev==0', {
157 'sources!': [
158 'ozone/evdev/device_manager_udev.cc',
159 'ozone/evdev/device_manager_udev.h',
160 ],
161 }],
154 ], 162 ],
155 }, 163 },
156 { 164 {
157 'target_name': 'events_test_support', 165 'target_name': 'events_test_support',
158 'type': 'static_library', 166 'type': 'static_library',
159 'dependencies': [ 167 'dependencies': [
160 'events', 168 'events',
161 'events_base', 169 'events_base',
162 ], 170 ],
163 'sources': [ 171 'sources': [
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
207 'conditions': [ 215 'conditions': [
208 ['OS=="linux" and linux_use_tcmalloc==1', { 216 ['OS=="linux" and linux_use_tcmalloc==1', {
209 'dependencies': [ 217 'dependencies': [
210 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 218 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
211 ], 219 ],
212 }], 220 }],
213 ], 221 ],
214 }, 222 },
215 ], 223 ],
216 } 224 }
OLDNEW
« no previous file with comments | « no previous file | ui/events/ozone/evdev/device_manager_udev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698