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

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

Issue 742103002: Ozone keyboard layout (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lite-code
Patch Set: 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 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 '../../build/linux/system.gyp:x11', 337 '../../build/linux/system.gyp:x11',
338 '../gfx/x/gfx_x11.gyp:gfx_x11', 338 '../gfx/x/gfx_x11.gyp:gfx_x11',
339 ], 339 ],
340 }], 340 }],
341 ['use_ozone==1', { 341 ['use_ozone==1', {
342 'sources': [ 342 'sources': [
343 'ozone/evdev/event_converter_evdev_impl_unittest.cc', 343 'ozone/evdev/event_converter_evdev_impl_unittest.cc',
344 'ozone/evdev/touch_event_converter_evdev_unittest.cc', 344 'ozone/evdev/touch_event_converter_evdev_unittest.cc',
345 ], 345 ],
346 'dependencies': [ 346 'dependencies': [
347 '../ozone/ozone.gyp:ozone',
kpschoedel 2014/11/20 16:18:38 A consequence of having the keyboard layout manage
347 'ozone/events_ozone.gyp:events_ozone', 348 'ozone/events_ozone.gyp:events_ozone',
348 'ozone/events_ozone.gyp:events_ozone_evdev', 349 'ozone/events_ozone.gyp:events_ozone_evdev',
350 'ozone/events_ozone.gyp:events_ozone_layout_stub',
349 ] 351 ]
350 }], 352 }],
351 ['use_aura==0', { 353 ['use_aura==0', {
352 'sources!': [ 354 'sources!': [
353 'gestures/gesture_provider_aura_unittest.cc', 355 'gestures/gesture_provider_aura_unittest.cc',
354 'gestures/motion_event_aura_unittest.cc', 356 'gestures/motion_event_aura_unittest.cc',
355 ], 357 ],
356 }], 358 }],
357 ['OS=="linux" and use_allocator!="none"', { 359 ['OS=="linux" and use_allocator!="none"', {
358 'dependencies': [ 360 'dependencies': [
(...skipping 26 matching lines...) Expand all
385 ], 387 ],
386 'variables': { 388 'variables': {
387 'test_suite_name': 'events_unittests', 389 'test_suite_name': 'events_unittests',
388 }, 390 },
389 'includes': [ '../../build/apk_test.gypi' ], 391 'includes': [ '../../build/apk_test.gypi' ],
390 }, 392 },
391 ], 393 ],
392 }], 394 }],
393 ], 395 ],
394 } 396 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698