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

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

Issue 778503002: XKB implementation of Ozone key layout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@x430194-layout
Patch Set: revise in preparation for VKEY determination Created 6 years 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
« no previous file with comments | « no previous file | ui/events/ozone/events_ozone.gyp » ('j') | ui/events/ozone/events_ozone.gyp » ('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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 component("events_ozone") { 8 component("events_ozone") {
9 sources = [ 9 sources = [
10 "chromeos/cursor_controller.cc", 10 "chromeos/cursor_controller.cc",
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 ] 110 ]
111 } 111 }
112 } 112 }
113 113
114 component("events_ozone_layout") { 114 component("events_ozone_layout") {
115 sources = [ 115 sources = [
116 "layout/events_ozone_layout_export.h", 116 "layout/events_ozone_layout_export.h",
117 "layout/keyboard_layout_engine.h", 117 "layout/keyboard_layout_engine.h",
118 "layout/keyboard_layout_engine_manager.cc", 118 "layout/keyboard_layout_engine_manager.cc",
119 "layout/keyboard_layout_engine_manager.h", 119 "layout/keyboard_layout_engine_manager.h",
120 "layout/layout_util.cc",
121 "layout/layout_util.h",
120 "layout/no/no_keyboard_layout_engine.cc", 122 "layout/no/no_keyboard_layout_engine.cc",
121 "layout/no/no_keyboard_layout_engine.h", 123 "layout/no/no_keyboard_layout_engine.h",
122 "layout/stub/stub_keyboard_layout_engine.cc", 124 "layout/stub/stub_keyboard_layout_engine.cc",
123 "layout/stub/stub_keyboard_layout_engine.h", 125 "layout/stub/stub_keyboard_layout_engine.h",
126 "layout/xkb/xkb.h",
127 "layout/xkb/xkb_evdev_codes.cc",
128 "layout/xkb/xkb_evdev_codes.h",
129 "layout/xkb/xkb_keyboard_code_conversion.cc",
130 "layout/xkb/xkb_keyboard_code_conversion.h",
131 "layout/xkb/xkb_keyboard_layout_engine.cc",
132 "layout/xkb/xkb_keyboard_layout_engine.h",
133 "layout/xkb/xkb_keysym.h",
124 ] 134 ]
125 135
126 defines = [ 136 defines = [ "EVENTS_OZONE_LAYOUT_IMPLEMENTATION" ]
127 "EVENTS_OZONE_LAYOUT_IMPLEMENTATION",
128 ]
129 137
130 deps = [ 138 deps = [
131 "//base", 139 "//base",
132 ] 140 ]
141
142 libs = [ "xkbcommon" ]
133 } 143 }
OLDNEW
« no previous file with comments | « no previous file | ui/events/ozone/events_ozone.gyp » ('j') | ui/events/ozone/events_ozone.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698