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

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

Issue 193813003: ozone: evdev: Add libgestures bindings for touchpad & mouse support (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: add class comments Created 6 years, 9 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 | « build/linux/system.gyp ('k') | ui/events/ozone/evdev/event_device_info.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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 'gestures/gesture_point.h', 107 'gestures/gesture_point.h',
108 'gestures/gesture_recognizer.h', 108 'gestures/gesture_recognizer.h',
109 'gestures/gesture_recognizer_impl.cc', 109 'gestures/gesture_recognizer_impl.cc',
110 'gestures/gesture_recognizer_impl.h', 110 'gestures/gesture_recognizer_impl.h',
111 'gestures/gesture_sequence.cc', 111 'gestures/gesture_sequence.cc',
112 'gestures/gesture_sequence.h', 112 'gestures/gesture_sequence.h',
113 'gestures/gesture_types.cc', 113 'gestures/gesture_types.cc',
114 'gestures/gesture_types.h', 114 'gestures/gesture_types.h',
115 'gestures/velocity_calculator.cc', 115 'gestures/velocity_calculator.cc',
116 'gestures/velocity_calculator.h', 116 'gestures/velocity_calculator.h',
117 'ozone/evdev/gestures/event_reader_libevdev_cros.cc',
118 'ozone/evdev/gestures/event_reader_libevdev_cros.h',
119 'ozone/evdev/gestures/gesture_interpreter_libevdev_cros.cc',
120 'ozone/evdev/gestures/gesture_interpreter_libevdev_cros.h',
121 'ozone/evdev/gestures/gesture_logging.cc',
122 'ozone/evdev/gestures/gesture_logging.h',
123 'ozone/evdev/gestures/gesture_property_provider.cc',
124 'ozone/evdev/gestures/gesture_property_provider.h',
125 'ozone/evdev/gestures/gesture_timer_provider.cc',
126 'ozone/evdev/gestures/gesture_timer_provider.h',
117 'ozone/evdev/device_manager_evdev.cc', 127 'ozone/evdev/device_manager_evdev.cc',
118 'ozone/evdev/device_manager_evdev.h', 128 'ozone/evdev/device_manager_evdev.h',
119 'ozone/evdev/device_manager_udev.cc', 129 'ozone/evdev/device_manager_udev.cc',
120 'ozone/evdev/device_manager_udev.h', 130 'ozone/evdev/device_manager_udev.h',
121 'ozone/evdev/event_converter_evdev.cc', 131 'ozone/evdev/event_converter_evdev.cc',
122 'ozone/evdev/event_converter_evdev.h', 132 'ozone/evdev/event_converter_evdev.h',
123 'ozone/evdev/event_device_info.cc', 133 'ozone/evdev/event_device_info.cc',
124 'ozone/evdev/event_device_info.h', 134 'ozone/evdev/event_device_info.h',
125 'ozone/evdev/event_factory_evdev.cc', 135 'ozone/evdev/event_factory_evdev.cc',
126 'ozone/evdev/event_factory_evdev.h', 136 'ozone/evdev/event_factory_evdev.h',
(...skipping 23 matching lines...) Expand all
150 ], 160 ],
151 }], 161 }],
152 ['use_ozone_evdev==1', { 162 ['use_ozone_evdev==1', {
153 'defines': ['USE_OZONE_EVDEV=1'], 163 'defines': ['USE_OZONE_EVDEV=1'],
154 }], 164 }],
155 ['use_ozone_evdev==1 and use_udev==1', { 165 ['use_ozone_evdev==1 and use_udev==1', {
156 'dependencies': [ 166 'dependencies': [
157 '<(DEPTH)/build/linux/system.gyp:udev', 167 '<(DEPTH)/build/linux/system.gyp:udev',
158 ], 168 ],
159 }], 169 }],
170 ['use_ozone_evdev==1 and use_evdev_gestures==1', {
sadrul 2014/03/11 16:48:12 Do we really need to support this level of granula
spang 2014/03/11 16:58:50 It's this way because the library does not exist o
sadrul 2014/03/11 18:13:41 Fair enough. I suspect we would want some sort of
171 'dependencies': [
172 '<(DEPTH)/build/linux/system.gyp:libgestures',
173 '<(DEPTH)/build/linux/system.gyp:libevdev-cros',
174 ],
175 'defines': [
176 'USE_EVDEV_GESTURES',
177 ],
178 }, {
179 'sources/': [
180 ['exclude', '^ozone/evdev/gestures/'],
181 ],
182 }],
160 ['use_udev==0', { 183 ['use_udev==0', {
161 'sources!': [ 184 'sources!': [
162 'ozone/evdev/device_manager_udev.cc', 185 'ozone/evdev/device_manager_udev.cc',
163 'ozone/evdev/device_manager_udev.h', 186 'ozone/evdev/device_manager_udev.h',
164 ], 187 ],
165 }], 188 }],
166 ], 189 ],
167 }, 190 },
168 { 191 {
169 'target_name': 'gesture_detection', 192 'target_name': 'gesture_detection',
(...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after
321 'variables': { 344 'variables': {
322 'test_suite_name': 'events_unittests', 345 'test_suite_name': 'events_unittests',
323 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un ittests<(SHARED_LIB_SUFFIX)', 346 'input_shlib_path': '<(SHARED_LIB_DIR)/<(SHARED_LIB_PREFIX)events_un ittests<(SHARED_LIB_SUFFIX)',
324 }, 347 },
325 'includes': [ '../../build/apk_test.gypi' ], 348 'includes': [ '../../build/apk_test.gypi' ],
326 }, 349 },
327 ], 350 ],
328 }], 351 }],
329 ], 352 ],
330 } 353 }
OLDNEW
« no previous file with comments | « build/linux/system.gyp ('k') | ui/events/ozone/evdev/event_device_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698