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

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

Issue 458363002: Remove old Aura Gesture Detection Pipeline. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address sadrul's comment, and rebase. Created 6 years, 4 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 | « ui/events/event_switches.cc ('k') | ui/events/gesture_detection/motion_event.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 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
118 'event_source.h', 118 'event_source.h',
119 'event_target.cc', 119 'event_target.cc',
120 'event_target.h', 120 'event_target.h',
121 'event_target_iterator.h', 121 'event_target_iterator.h',
122 'event_targeter.cc', 122 'event_targeter.cc',
123 'event_targeter.h', 123 'event_targeter.h',
124 'event_utils.cc', 124 'event_utils.cc',
125 'event_utils.h', 125 'event_utils.h',
126 'events_export.h', 126 'events_export.h',
127 'events_stub.cc', 127 'events_stub.cc',
128 'gestures/gesture_point.cc',
129 'gestures/gesture_point.h',
130 'gestures/gesture_provider_aura.cc', 128 'gestures/gesture_provider_aura.cc',
131 'gestures/gesture_provider_aura.h', 129 'gestures/gesture_provider_aura.h',
132 'gestures/gesture_recognizer.h', 130 'gestures/gesture_recognizer.h',
133 'gestures/gesture_recognizer_impl.cc', 131 'gestures/gesture_recognizer_impl.cc',
134 'gestures/gesture_recognizer_impl.h', 132 'gestures/gesture_recognizer_impl.h',
135 'gestures/gesture_recognizer_impl_mac.cc', 133 'gestures/gesture_recognizer_impl_mac.cc',
136 'gestures/gesture_sequence.cc',
137 'gestures/gesture_sequence.h',
138 'gestures/gesture_types.h', 134 'gestures/gesture_types.h',
139 'gestures/motion_event_aura.cc', 135 'gestures/motion_event_aura.cc',
140 'gestures/motion_event_aura.h', 136 'gestures/motion_event_aura.h',
141 'gestures/unified_gesture_detector_enabled.cc',
142 'gestures/unified_gesture_detector_enabled.h',
143 'gestures/velocity_calculator.cc',
144 'gestures/velocity_calculator.h',
145 'ozone/events_ozone.cc', 137 'ozone/events_ozone.cc',
146 'win/events_win.cc', 138 'win/events_win.cc',
147 'x/events_x.cc', 139 'x/events_x.cc',
148 'linux/text_edit_command_auralinux.cc', 140 'linux/text_edit_command_auralinux.cc',
149 'linux/text_edit_command_auralinux.h', 141 'linux/text_edit_command_auralinux.h',
150 'linux/text_edit_key_bindings_delegate_auralinux.cc', 142 'linux/text_edit_key_bindings_delegate_auralinux.cc',
151 'linux/text_edit_key_bindings_delegate_auralinux.h', 143 'linux/text_edit_key_bindings_delegate_auralinux.h',
152 ], 144 ],
153 'conditions': [ 145 'conditions': [
154 ['use_x11==1', { 146 ['use_x11==1', {
155 'dependencies': [ 147 'dependencies': [
156 '../../build/linux/system.gyp:x11', 148 '../../build/linux/system.gyp:x11',
157 ], 149 ],
158 }], 150 }],
159 ['use_aura==0', { 151 ['use_aura==0', {
160 'sources!': [ 152 'sources!': [
161 'gestures/gesture_point.cc',
162 'gestures/gesture_point.h',
163 'gestures/gesture_provider_aura.cc', 153 'gestures/gesture_provider_aura.cc',
164 'gestures/gesture_provider_aura.h', 154 'gestures/gesture_provider_aura.h',
165 'gestures/gesture_recognizer.h', 155 'gestures/gesture_recognizer.h',
166 'gestures/gesture_recognizer_impl.cc', 156 'gestures/gesture_recognizer_impl.cc',
167 'gestures/gesture_recognizer_impl.h', 157 'gestures/gesture_recognizer_impl.h',
168 'gestures/gesture_sequence.cc',
169 'gestures/gesture_sequence.h',
170 'gestures/gesture_types.h', 158 'gestures/gesture_types.h',
171 'gestures/motion_event_aura.cc', 159 'gestures/motion_event_aura.cc',
172 'gestures/motion_event_aura.h', 160 'gestures/motion_event_aura.h',
173 'gestures/velocity_calculator.cc',
174 'gestures/velocity_calculator.h',
175 ], 161 ],
176 }], 162 }],
177 # We explicitly enumerate the platforms we _do_ provide native cracking 163 # We explicitly enumerate the platforms we _do_ provide native cracking
178 # for here. 164 # for here.
179 ['OS=="win" or OS=="mac" or use_x11==1 or use_ozone==1', { 165 ['OS=="win" or OS=="mac" or use_x11==1 or use_ozone==1', {
180 'sources!': [ 166 'sources!': [
181 'events_stub.cc', 167 'events_stub.cc',
182 ], 168 ],
183 }], 169 }],
184 ['chromeos==1', { 170 ['chromeos==1', {
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
311 'sources': [ 297 'sources': [
312 # Note: sources list duplicated in GN build. 298 # Note: sources list duplicated in GN build.
313 'cocoa/events_mac_unittest.mm', 299 'cocoa/events_mac_unittest.mm',
314 'event_dispatcher_unittest.cc', 300 'event_dispatcher_unittest.cc',
315 'event_processor_unittest.cc', 301 'event_processor_unittest.cc',
316 'event_rewriter_unittest.cc', 302 'event_rewriter_unittest.cc',
317 'event_unittest.cc', 303 'event_unittest.cc',
318 'gestures/fling_curve_unittest.cc', 304 'gestures/fling_curve_unittest.cc',
319 'gestures/gesture_provider_aura_unittest.cc', 305 'gestures/gesture_provider_aura_unittest.cc',
320 'gestures/motion_event_aura_unittest.cc', 306 'gestures/motion_event_aura_unittest.cc',
321 'gestures/velocity_calculator_unittest.cc',
322 'gesture_detection/bitset_32_unittest.cc', 307 'gesture_detection/bitset_32_unittest.cc',
323 'gesture_detection/gesture_event_data_packet_unittest.cc', 308 'gesture_detection/gesture_event_data_packet_unittest.cc',
324 'gesture_detection/gesture_provider_unittest.cc', 309 'gesture_detection/gesture_provider_unittest.cc',
325 'gesture_detection/motion_event_buffer_unittest.cc', 310 'gesture_detection/motion_event_buffer_unittest.cc',
326 'gesture_detection/motion_event_generic_unittest.cc', 311 'gesture_detection/motion_event_generic_unittest.cc',
327 'gesture_detection/touch_disposition_gesture_filter_unittest.cc', 312 'gesture_detection/touch_disposition_gesture_filter_unittest.cc',
328 'gesture_detection/velocity_tracker_unittest.cc', 313 'gesture_detection/velocity_tracker_unittest.cc',
329 'keycodes/dom4/keycode_converter_unittest.cc', 314 'keycodes/dom4/keycode_converter_unittest.cc',
330 'latency_info_unittest.cc', 315 'latency_info_unittest.cc',
331 'platform/platform_event_source_unittest.cc', 316 'platform/platform_event_source_unittest.cc',
(...skipping 13 matching lines...) Expand all
345 ], 330 ],
346 'dependencies': [ 331 'dependencies': [
347 'ozone/events_ozone.gyp:events_ozone', 332 'ozone/events_ozone.gyp:events_ozone',
348 'ozone/events_ozone.gyp:events_ozone_evdev', 333 'ozone/events_ozone.gyp:events_ozone_evdev',
349 ] 334 ]
350 }], 335 }],
351 ['use_aura==0', { 336 ['use_aura==0', {
352 'sources!': [ 337 'sources!': [
353 'gestures/gesture_provider_aura_unittest.cc', 338 'gestures/gesture_provider_aura_unittest.cc',
354 'gestures/motion_event_aura_unittest.cc', 339 'gestures/motion_event_aura_unittest.cc',
355 'gestures/velocity_calculator_unittest.cc',
356 ], 340 ],
357 }], 341 }],
358 ['OS=="linux" and use_allocator!="none"', { 342 ['OS=="linux" and use_allocator!="none"', {
359 'dependencies': [ 343 'dependencies': [
360 '<(DEPTH)/base/allocator/allocator.gyp:allocator', 344 '<(DEPTH)/base/allocator/allocator.gyp:allocator',
361 ], 345 ],
362 }], 346 }],
363 # Exclude tests that rely on event_utils.h for platforms that do not 347 # Exclude tests that rely on event_utils.h for platforms that do not
364 # provide native cracking, i.e., platforms that use events_stub.cc. 348 # provide native cracking, i.e., platforms that use events_stub.cc.
365 ['OS!="win" and use_x11!=1 and use_ozone!=1', { 349 ['OS!="win" and use_x11!=1 and use_ozone!=1', {
(...skipping 20 matching lines...) Expand all
386 ], 370 ],
387 'variables': { 371 'variables': {
388 'test_suite_name': 'events_unittests', 372 'test_suite_name': 'events_unittests',
389 }, 373 },
390 'includes': [ '../../build/apk_test.gypi' ], 374 'includes': [ '../../build/apk_test.gypi' ],
391 }, 375 },
392 ], 376 ],
393 }], 377 }],
394 ], 378 ],
395 } 379 }
OLDNEW
« no previous file with comments | « ui/events/event_switches.cc ('k') | ui/events/gesture_detection/motion_event.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698