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

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

Issue 677113002: ozone: evdev: Handle mouse events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: more review and lint fixes Created 6 years, 1 month 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 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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 ], 339 ],
340 'conditions': [ 340 'conditions': [
341 ['use_x11==1', { 341 ['use_x11==1', {
342 'dependencies': [ 342 'dependencies': [
343 '../../build/linux/system.gyp:x11', 343 '../../build/linux/system.gyp:x11',
344 '../gfx/x/gfx_x11.gyp:gfx_x11', 344 '../gfx/x/gfx_x11.gyp:gfx_x11',
345 ], 345 ],
346 }], 346 }],
347 ['use_ozone==1', { 347 ['use_ozone==1', {
348 'sources': [ 348 'sources': [
349 'ozone/evdev/key_event_converter_evdev_unittest.cc', 349 'ozone/evdev/event_converter_evdev_impl_unittest.cc',
350 'ozone/evdev/touch_event_converter_evdev_unittest.cc', 350 'ozone/evdev/touch_event_converter_evdev_unittest.cc',
351 ], 351 ],
352 'dependencies': [ 352 'dependencies': [
353 'ozone/events_ozone.gyp:events_ozone', 353 'ozone/events_ozone.gyp:events_ozone',
354 'ozone/events_ozone.gyp:events_ozone_evdev', 354 'ozone/events_ozone.gyp:events_ozone_evdev',
355 ] 355 ]
356 }], 356 }],
357 ['use_aura==0', { 357 ['use_aura==0', {
358 'sources!': [ 358 'sources!': [
359 'gestures/gesture_provider_aura_unittest.cc', 359 'gestures/gesture_provider_aura_unittest.cc',
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
391 ], 391 ],
392 'variables': { 392 'variables': {
393 'test_suite_name': 'events_unittests', 393 'test_suite_name': 'events_unittests',
394 }, 394 },
395 'includes': [ '../../build/apk_test.gypi' ], 395 'includes': [ '../../build/apk_test.gypi' ],
396 }, 396 },
397 ], 397 ],
398 }], 398 }],
399 ], 399 ],
400 } 400 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698