OLD | NEW |
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/linux/pkg_config.gni") | 6 import("//build/config/linux/pkg_config.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 | 8 |
9 declare_args() { | 9 declare_args() { |
10 # Support ChromeOS touchpad gestures with ozone. | 10 # Support ChromeOS touchpad gestures with ozone. |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 if (use_xkbcommon) { | 201 if (use_xkbcommon) { |
202 configs += [ ":xkbcommon" ] | 202 configs += [ ":xkbcommon" ] |
203 | 203 |
204 sources += [ | 204 sources += [ |
205 "layout/xkb/xkb_evdev_codes.cc", | 205 "layout/xkb/xkb_evdev_codes.cc", |
206 "layout/xkb/xkb_evdev_codes.h", | 206 "layout/xkb/xkb_evdev_codes.h", |
207 "layout/xkb/xkb_key_code_converter.h", | 207 "layout/xkb/xkb_key_code_converter.h", |
208 "layout/xkb/xkb_keyboard_layout_engine.cc", | 208 "layout/xkb/xkb_keyboard_layout_engine.cc", |
209 "layout/xkb/xkb_keyboard_layout_engine.h", | 209 "layout/xkb/xkb_keyboard_layout_engine.h", |
210 ] | 210 ] |
| 211 |
| 212 deps += [ "//ui/events/keycodes:xkb" ] |
211 } | 213 } |
212 } | 214 } |
OLD | NEW |