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

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

Issue 991533002: Port Chromium OS touch noise filtering to Chromium (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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 'target_name': 'events_ozone', 10 'target_name': 'events_ozone',
(...skipping 30 matching lines...) Expand all
41 '<(DEPTH)/device/udev_linux/udev.gyp:udev_linux', 41 '<(DEPTH)/device/udev_linux/udev.gyp:udev_linux',
42 ], 42 ],
43 }], 43 }],
44 ], 44 ],
45 }, { 45 }, {
46 'target_name': 'events_ozone_evdev', 46 'target_name': 'events_ozone_evdev',
47 'type': '<(component)', 47 'type': '<(component)',
48 'dependencies': [ 48 'dependencies': [
49 '../../../base/base.gyp:base', 49 '../../../base/base.gyp:base',
50 '../../gfx/gfx.gyp:gfx', 50 '../../gfx/gfx.gyp:gfx',
51 '../../gfx/gfx.gyp:gfx_geometry',
51 '../../ozone/ozone.gyp:ozone_base', 52 '../../ozone/ozone.gyp:ozone_base',
52 '../devices/events_devices.gyp:events_devices', 53 '../devices/events_devices.gyp:events_devices',
53 '../events.gyp:dom4_keycode_converter', 54 '../events.gyp:dom4_keycode_converter',
54 '../events.gyp:events', 55 '../events.gyp:events',
55 '../events.gyp:events_base', 56 '../events.gyp:events_base',
56 '../platform/events_platform.gyp:events_platform', 57 '../platform/events_platform.gyp:events_platform',
57 'events_ozone', 58 'events_ozone',
58 'events_ozone_layout', 59 'events_ozone_layout',
59 ], 60 ],
60 'defines': [ 61 'defines': [
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 'evdev/libgestures_glue/gesture_property_provider.cc', 108 'evdev/libgestures_glue/gesture_property_provider.cc',
108 'evdev/libgestures_glue/gesture_property_provider.h', 109 'evdev/libgestures_glue/gesture_property_provider.h',
109 'evdev/libgestures_glue/gesture_timer_provider.cc', 110 'evdev/libgestures_glue/gesture_timer_provider.cc',
110 'evdev/libgestures_glue/gesture_timer_provider.h', 111 'evdev/libgestures_glue/gesture_timer_provider.h',
111 'evdev/mouse_button_map_evdev.cc', 112 'evdev/mouse_button_map_evdev.cc',
112 'evdev/mouse_button_map_evdev.h', 113 'evdev/mouse_button_map_evdev.h',
113 'evdev/tablet_event_converter_evdev.cc', 114 'evdev/tablet_event_converter_evdev.cc',
114 'evdev/tablet_event_converter_evdev.h', 115 'evdev/tablet_event_converter_evdev.h',
115 'evdev/touch_event_converter_evdev.cc', 116 'evdev/touch_event_converter_evdev.cc',
116 'evdev/touch_event_converter_evdev.h', 117 'evdev/touch_event_converter_evdev.h',
118 'evdev/touch_noise/far_apart_taps_touch_noise_filter.cc',
119 'evdev/touch_noise/far_apart_taps_touch_noise_filter.h',
120 'evdev/touch_noise/horizontally_aligned_touch_noise_filter.cc',
121 'evdev/touch_noise/horizontally_aligned_touch_noise_filter.h',
122 'evdev/touch_noise/single_position_touch_noise_filter.cc',
123 'evdev/touch_noise/single_position_touch_noise_filter.h',
124 'evdev/touch_noise/touch_noise_remover.cc',
125 'evdev/touch_noise/touch_noise_remover.h',
126 'evdev/touch_noise/touch_noise_filter.h',
117 ], 127 ],
118 'conditions': [ 128 'conditions': [
119 ['use_ozone_evdev==1 and use_evdev_gestures==1', { 129 ['use_ozone_evdev==1 and use_evdev_gestures==1', {
120 'dependencies': [ 130 'dependencies': [
121 '<(DEPTH)/build/linux/system.gyp:libgestures', 131 '<(DEPTH)/build/linux/system.gyp:libgestures',
122 '<(DEPTH)/build/linux/system.gyp:libevdev-cros', 132 '<(DEPTH)/build/linux/system.gyp:libevdev-cros',
123 ], 133 ],
124 'defines': [ 134 'defines': [
125 'USE_EVDEV_GESTURES', 135 'USE_EVDEV_GESTURES',
126 ], 136 ],
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after
183 'layout/xkb/xkb_keyboard_code_conversion.cc', 193 'layout/xkb/xkb_keyboard_code_conversion.cc',
184 'layout/xkb/xkb_keyboard_code_conversion.h', 194 'layout/xkb/xkb_keyboard_code_conversion.h',
185 'layout/xkb/xkb_keyboard_layout_engine.cc', 195 'layout/xkb/xkb_keyboard_layout_engine.cc',
186 'layout/xkb/xkb_keyboard_layout_engine.h', 196 'layout/xkb/xkb_keyboard_layout_engine.h',
187 'layout/xkb/xkb_keysym.h', 197 'layout/xkb/xkb_keysym.h',
188 ], 198 ],
189 }], 199 }],
190 ], 200 ],
191 }] 201 }]
192 } 202 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698