| 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 import("//ui/base/ui_features.gni") | 8 import("//ui/base/ui_features.gni") |
| 9 | 9 |
| 10 declare_args() { | 10 declare_args() { |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 122 "evdev/touch_filter/single_position_touch_noise_filter.cc", | 122 "evdev/touch_filter/single_position_touch_noise_filter.cc", |
| 123 "evdev/touch_filter/single_position_touch_noise_filter.h", | 123 "evdev/touch_filter/single_position_touch_noise_filter.h", |
| 124 "evdev/touch_filter/touch_filter.h", | 124 "evdev/touch_filter/touch_filter.h", |
| 125 "gamepad/gamepad_event.cc", | 125 "gamepad/gamepad_event.cc", |
| 126 "gamepad/gamepad_event.h", | 126 "gamepad/gamepad_event.h", |
| 127 "gamepad/gamepad_mapping.cc", | 127 "gamepad/gamepad_mapping.cc", |
| 128 "gamepad/gamepad_mapping.h", | 128 "gamepad/gamepad_mapping.h", |
| 129 "gamepad/gamepad_observer.h", | 129 "gamepad/gamepad_observer.h", |
| 130 "gamepad/gamepad_provider_ozone.cc", | 130 "gamepad/gamepad_provider_ozone.cc", |
| 131 "gamepad/gamepad_provider_ozone.h", | 131 "gamepad/gamepad_provider_ozone.h", |
| 132 "gamepad/generic_gamepad_mapping.cc", |
| 133 "gamepad/generic_gamepad_mapping.h", |
| 134 "gamepad/static_gamepad_mapping.cc", |
| 135 "gamepad/static_gamepad_mapping.h", |
| 132 "gamepad/webgamepad_constants.h", | 136 "gamepad/webgamepad_constants.h", |
| 133 ] | 137 ] |
| 134 | 138 |
| 135 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ] | 139 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ] |
| 136 | 140 |
| 137 deps = [ | 141 deps = [ |
| 138 ":events_ozone", | 142 ":events_ozone", |
| 139 ":events_ozone_layout", | 143 ":events_ozone_layout", |
| 140 "//base", | 144 "//base", |
| 141 "//ui/display", | 145 "//ui/display", |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 "layout/xkb/xkb_evdev_codes.cc", | 209 "layout/xkb/xkb_evdev_codes.cc", |
| 206 "layout/xkb/xkb_evdev_codes.h", | 210 "layout/xkb/xkb_evdev_codes.h", |
| 207 "layout/xkb/xkb_key_code_converter.h", | 211 "layout/xkb/xkb_key_code_converter.h", |
| 208 "layout/xkb/xkb_keyboard_layout_engine.cc", | 212 "layout/xkb/xkb_keyboard_layout_engine.cc", |
| 209 "layout/xkb/xkb_keyboard_layout_engine.h", | 213 "layout/xkb/xkb_keyboard_layout_engine.h", |
| 210 ] | 214 ] |
| 211 | 215 |
| 212 deps += [ "//ui/events/keycodes:xkb" ] | 216 deps += [ "//ui/events/keycodes:xkb" ] |
| 213 } | 217 } |
| 214 } | 218 } |
| OLD | NEW |