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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/linux/system.gyp ('k') | ui/events/ozone/evdev/event_device_info.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/events/events.gyp
diff --git a/ui/events/events.gyp b/ui/events/events.gyp
index 7ef892d3224549cab41855507d6b1ce7bdb32a3d..41afd5982aa4a40de83adb922d4897f55e33df4b 100644
--- a/ui/events/events.gyp
+++ b/ui/events/events.gyp
@@ -114,6 +114,16 @@
'gestures/gesture_types.h',
'gestures/velocity_calculator.cc',
'gestures/velocity_calculator.h',
+ 'ozone/evdev/gestures/event_reader_libevdev_cros.cc',
+ 'ozone/evdev/gestures/event_reader_libevdev_cros.h',
+ 'ozone/evdev/gestures/gesture_interpreter_libevdev_cros.cc',
+ 'ozone/evdev/gestures/gesture_interpreter_libevdev_cros.h',
+ 'ozone/evdev/gestures/gesture_logging.cc',
+ 'ozone/evdev/gestures/gesture_logging.h',
+ 'ozone/evdev/gestures/gesture_property_provider.cc',
+ 'ozone/evdev/gestures/gesture_property_provider.h',
+ 'ozone/evdev/gestures/gesture_timer_provider.cc',
+ 'ozone/evdev/gestures/gesture_timer_provider.h',
'ozone/evdev/device_manager_evdev.cc',
'ozone/evdev/device_manager_evdev.h',
'ozone/evdev/device_manager_udev.cc',
@@ -157,6 +167,19 @@
'<(DEPTH)/build/linux/system.gyp:udev',
],
}],
+ ['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
+ 'dependencies': [
+ '<(DEPTH)/build/linux/system.gyp:libgestures',
+ '<(DEPTH)/build/linux/system.gyp:libevdev-cros',
+ ],
+ 'defines': [
+ 'USE_EVDEV_GESTURES',
+ ],
+ }, {
+ 'sources/': [
+ ['exclude', '^ozone/evdev/gestures/'],
+ ],
+ }],
['use_udev==0', {
'sources!': [
'ozone/evdev/device_manager_udev.cc',
« 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