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

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

Issue 430463005: linux/cros: Supports XKeyEvent to Unicode conversion independent from user's locale. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressed review comments. 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
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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 'keycodes/keyboard_code_conversion_win.h', 58 'keycodes/keyboard_code_conversion_win.h',
59 'keycodes/keyboard_code_conversion_x.cc', 59 'keycodes/keyboard_code_conversion_x.cc',
60 'keycodes/keyboard_code_conversion_x.h', 60 'keycodes/keyboard_code_conversion_x.h',
61 'keycodes/keyboard_codes.h', 61 'keycodes/keyboard_codes.h',
62 'latency_info.cc', 62 'latency_info.cc',
63 'latency_info.h', 63 'latency_info.h',
64 'x/device_data_manager_x11.cc', 64 'x/device_data_manager_x11.cc',
65 'x/device_data_manager_x11.h', 65 'x/device_data_manager_x11.h',
66 'x/device_list_cache_x.cc', 66 'x/device_list_cache_x.cc',
67 'x/device_list_cache_x.h', 67 'x/device_list_cache_x.h',
68 'x/keysym_to_unicode.cc',
69 'x/keysym_to_unicode.h',
68 'x/touch_factory_x11.cc', 70 'x/touch_factory_x11.cc',
69 'x/touch_factory_x11.h', 71 'x/touch_factory_x11.h',
70 ], 72 ],
71 'export_dependent_settings': [ 73 'export_dependent_settings': [
72 '../../ui/gfx/gfx.gyp:gfx', 74 '../../ui/gfx/gfx.gyp:gfx',
73 ], 75 ],
74 'conditions': [ 76 'conditions': [
75 ['use_x11==1', { 77 ['use_x11==1', {
76 'dependencies': [ 78 'dependencies': [
77 '../../build/linux/system.gyp:x11', 79 '../../build/linux/system.gyp:x11',
(...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after
378 ], 380 ],
379 'variables': { 381 'variables': {
380 'test_suite_name': 'events_unittests', 382 'test_suite_name': 'events_unittests',
381 }, 383 },
382 'includes': [ '../../build/apk_test.gypi' ], 384 'includes': [ '../../build/apk_test.gypi' ],
383 }, 385 },
384 ], 386 ],
385 }], 387 }],
386 ], 388 ],
387 } 389 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698