| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 import("//ui/ozone/ozone.gni") | 6 import("//ui/ozone/ozone.gni") |
| 7 | 7 |
| 8 source_set("xkb") { | 8 source_set("xkb") { |
| 9 sources = [ | 9 sources = [ |
| 10 "keyboard_code_conversion_xkb.cc", | 10 "keyboard_code_conversion_xkb.cc", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 "keysym_to_unicode.cc", | 31 "keysym_to_unicode.cc", |
| 32 "keysym_to_unicode.h", | 32 "keysym_to_unicode.h", |
| 33 ] | 33 ] |
| 34 | 34 |
| 35 defines = [ "KEYCODES_X_IMPLEMENTATION" ] | 35 defines = [ "KEYCODES_X_IMPLEMENTATION" ] |
| 36 | 36 |
| 37 deps = [ | 37 deps = [ |
| 38 ":xkb", | 38 ":xkb", |
| 39 "//base", | 39 "//base", |
| 40 "//ui/events:dom_keycode_converter", | 40 "//ui/events:dom_keycode_converter", |
| 41 "//ui/events:event_constants", |
| 41 "//ui/gfx/x", | 42 "//ui/gfx/x", |
| 42 ] | 43 ] |
| 43 | 44 |
| 44 configs += [ "//build/config/linux:x11" ] | 45 configs += [ "//build/config/linux:x11" ] |
| 45 } | 46 } |
| 46 } | 47 } |
| OLD | NEW |