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

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

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
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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [{ 9 'targets': [{
10 'target_name': 'events_ozone', 10 'target_name': 'events_ozone',
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 '../../../base/base.gyp:base', 129 '../../../base/base.gyp:base',
130 ], 130 ],
131 'defines': [ 131 'defines': [
132 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION', 132 'EVENTS_OZONE_LAYOUT_IMPLEMENTATION',
133 ], 133 ],
134 'sources': [ 134 'sources': [
135 'layout/events_ozone_layout_export.h', 135 'layout/events_ozone_layout_export.h',
136 'layout/keyboard_layout_engine.h', 136 'layout/keyboard_layout_engine.h',
137 'layout/keyboard_layout_engine_manager.cc', 137 'layout/keyboard_layout_engine_manager.cc',
138 'layout/keyboard_layout_engine_manager.h', 138 'layout/keyboard_layout_engine_manager.h',
139 'layout/layout_util.cc',
140 'layout/layout_util.h',
139 'layout/no/no_keyboard_layout_engine.cc', 141 'layout/no/no_keyboard_layout_engine.cc',
140 'layout/no/no_keyboard_layout_engine.h', 142 'layout/no/no_keyboard_layout_engine.h',
141 'layout/stub/stub_keyboard_layout_engine.cc', 143 'layout/stub/stub_keyboard_layout_engine.cc',
142 'layout/stub/stub_keyboard_layout_engine.h', 144 'layout/stub/stub_keyboard_layout_engine.h',
145 'layout/xkb/xkb.h',
146 'layout/xkb/xkb_evdev_codes.cc',
147 'layout/xkb/xkb_evdev_codes.h',
148 'layout/xkb/xkb_keyboard_code_conversion.cc',
149 'layout/xkb/xkb_keyboard_code_conversion.h',
150 'layout/xkb/xkb_keyboard_layout_engine.cc',
151 'layout/xkb/xkb_keyboard_layout_engine.h',
152 'layout/xkb/xkb_keysym.h',
143 ], 153 ],
154 'link_settings': {
155 'libraries': [
156 '-lxkbcommon',
spang 2014/12/05 20:10:47 I think we'll want a use_xkbcommon gyp variable
kpschoedel 2014/12/08 19:54:37 Changed to make building the xkb conditional.
157 ]
158 },
144 }] 159 }]
145 } 160 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698