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

Side by Side Diff: ui/events/BUILD.gn

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
« no previous file with comments | « no previous file | ui/events/events.gyp » ('j') | ui/events/keycodes/keyboard_code_conversion_x.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 static_library("dom4_keycode_converter") { 7 static_library("dom4_keycode_converter") {
8 sources = [ 8 sources = [
9 "keycodes/dom4/keycode_converter.cc", 9 "keycodes/dom4/keycode_converter.cc",
10 "keycodes/dom4/keycode_converter.h", 10 "keycodes/dom4/keycode_converter.h",
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 if (use_x11) { 56 if (use_x11) {
57 configs += [ "//build/config/linux:x11" ] 57 configs += [ "//build/config/linux:x11" ]
58 58
59 sources += [ 59 sources += [
60 "keycodes/keyboard_code_conversion_x.cc", 60 "keycodes/keyboard_code_conversion_x.cc",
61 "keycodes/keyboard_code_conversion_x.h", 61 "keycodes/keyboard_code_conversion_x.h",
62 "x/device_data_manager_x11.cc", 62 "x/device_data_manager_x11.cc",
63 "x/device_data_manager_x11.h", 63 "x/device_data_manager_x11.h",
64 "x/device_list_cache_x.cc", 64 "x/device_list_cache_x.cc",
65 "x/device_list_cache_x.h", 65 "x/device_list_cache_x.h",
66 "x/keysym_to_unicode.cc",
67 "x/keysym_to_unicode.h",
66 "x/touch_factory_x11.cc", 68 "x/touch_factory_x11.cc",
67 "x/touch_factory_x11.h", 69 "x/touch_factory_x11.h",
68 ] 70 ]
69 } 71 }
70 } 72 }
71 73
72 component("events") { 74 component("events") {
73 deps = [ 75 deps = [
74 ":dom4_keycode_converter", 76 ":dom4_keycode_converter",
75 ":events_base", 77 ":events_base",
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 ":events_base", 298 ":events_base",
297 ":gesture_detection", 299 ":gesture_detection",
298 ":test_support", 300 ":test_support",
299 "//base", 301 "//base",
300 "//base/test:run_all_unittests", 302 "//base/test:run_all_unittests",
301 "//skia", 303 "//skia",
302 "//testing/gtest", 304 "//testing/gtest",
303 "//ui/gfx:test_support", 305 "//ui/gfx:test_support",
304 ] 306 ]
305 } 307 }
OLDNEW
« no previous file with comments | « no previous file | ui/events/events.gyp » ('j') | ui/events/keycodes/keyboard_code_conversion_x.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698