| 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 # Optional system libraries. | 10 # Optional system libraries. |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "evdev/touch_noise/touch_noise_finder.h", | 112 "evdev/touch_noise/touch_noise_finder.h", |
| 113 ] | 113 ] |
| 114 | 114 |
| 115 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ] | 115 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ] |
| 116 | 116 |
| 117 deps = [ | 117 deps = [ |
| 118 ":events_ozone", | 118 ":events_ozone", |
| 119 ":events_ozone_layout", | 119 ":events_ozone_layout", |
| 120 "//base", | 120 "//base", |
| 121 "//ui/events", | 121 "//ui/events", |
| 122 "//ui/events:dom4_keycode_converter", | 122 "//ui/events:dom_keycode_converter", |
| 123 "//ui/events:events_base", | 123 "//ui/events:events_base", |
| 124 "//ui/events/devices", | 124 "//ui/events/devices", |
| 125 "//ui/events/platform", | 125 "//ui/events/platform", |
| 126 "//ui/gfx", | 126 "//ui/gfx", |
| 127 ] | 127 ] |
| 128 | 128 |
| 129 public_configs = [ ":evdev" ] | 129 public_configs = [ ":evdev" ] |
| 130 | 130 |
| 131 if (use_ozone_evdev && use_evdev_gestures) { | 131 if (use_ozone_evdev && use_evdev_gestures) { |
| 132 sources += [ | 132 sources += [ |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 "layout/no/no_keyboard_layout_engine.cc", | 170 "layout/no/no_keyboard_layout_engine.cc", |
| 171 "layout/no/no_keyboard_layout_engine.h", | 171 "layout/no/no_keyboard_layout_engine.h", |
| 172 "layout/stub/stub_keyboard_layout_engine.cc", | 172 "layout/stub/stub_keyboard_layout_engine.cc", |
| 173 "layout/stub/stub_keyboard_layout_engine.h", | 173 "layout/stub/stub_keyboard_layout_engine.h", |
| 174 ] | 174 ] |
| 175 | 175 |
| 176 defines = [ "EVENTS_OZONE_LAYOUT_IMPLEMENTATION" ] | 176 defines = [ "EVENTS_OZONE_LAYOUT_IMPLEMENTATION" ] |
| 177 | 177 |
| 178 deps = [ | 178 deps = [ |
| 179 "//base", | 179 "//base", |
| 180 "//ui/events:dom4_keycode_converter", | 180 "//ui/events:dom_keycode_converter", |
| 181 "//ui/events:events_base", | 181 "//ui/events:events_base", |
| 182 ] | 182 ] |
| 183 | 183 |
| 184 public_configs = [ ":events_ozone_layout_config" ] | 184 public_configs = [ ":events_ozone_layout_config" ] |
| 185 | 185 |
| 186 if (use_xkbcommon) { | 186 if (use_xkbcommon) { |
| 187 configs += [ ":xkbcommon" ] | 187 configs += [ ":xkbcommon" ] |
| 188 | 188 |
| 189 sources += [ | 189 sources += [ |
| 190 "layout/xkb/scoped_xkb.h", | 190 "layout/xkb/scoped_xkb.h", |
| 191 "layout/xkb/xkb.h", | 191 "layout/xkb/xkb.h", |
| 192 "layout/xkb/xkb_evdev_codes.cc", | 192 "layout/xkb/xkb_evdev_codes.cc", |
| 193 "layout/xkb/xkb_evdev_codes.h", | 193 "layout/xkb/xkb_evdev_codes.h", |
| 194 "layout/xkb/xkb_key_code_converter.h", | 194 "layout/xkb/xkb_key_code_converter.h", |
| 195 "layout/xkb/xkb_keyboard_code_conversion.cc", | 195 "layout/xkb/xkb_keyboard_code_conversion.cc", |
| 196 "layout/xkb/xkb_keyboard_code_conversion.h", | 196 "layout/xkb/xkb_keyboard_code_conversion.h", |
| 197 "layout/xkb/xkb_keyboard_layout_engine.cc", | 197 "layout/xkb/xkb_keyboard_layout_engine.cc", |
| 198 "layout/xkb/xkb_keyboard_layout_engine.h", | 198 "layout/xkb/xkb_keyboard_layout_engine.h", |
| 199 "layout/xkb/xkb_keysym.h", | 199 "layout/xkb/xkb_keysym.h", |
| 200 ] | 200 ] |
| 201 } | 201 } |
| 202 } | 202 } |
| OLD | NEW |