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 18 matching lines...) Expand all Loading... |
29 "device/device_manager_manual.cc", | 29 "device/device_manager_manual.cc", |
30 "device/device_manager_manual.h", | 30 "device/device_manager_manual.h", |
31 "device/udev/device_manager_udev.cc", | 31 "device/udev/device_manager_udev.cc", |
32 "device/udev/device_manager_udev.h", | 32 "device/udev/device_manager_udev.h", |
33 "events_ozone_export.h", | 33 "events_ozone_export.h", |
34 ] | 34 ] |
35 | 35 |
36 deps = [ | 36 deps = [ |
37 "//base", | 37 "//base", |
38 "//base/third_party/dynamic_annotations", | 38 "//base/third_party/dynamic_annotations", |
| 39 "//ui/events", |
| 40 "//ui/events:events_base", |
39 ] | 41 ] |
40 | 42 |
41 defines = [ "EVENTS_OZONE_IMPLEMENTATION" ] | 43 defines = [ "EVENTS_OZONE_IMPLEMENTATION" ] |
42 | 44 |
43 if (!use_udev) { | 45 if (!use_udev) { |
44 sources -= [ | 46 sources -= [ |
45 "device/udev/device_manager_udev.cc", | 47 "device/udev/device_manager_udev.cc", |
46 "device/udev/device_manager_udev.h", | 48 "device/udev/device_manager_udev.h", |
47 ] | 49 ] |
48 } | 50 } |
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 "layout/xkb/xkb_key_code_converter.h", | 176 "layout/xkb/xkb_key_code_converter.h", |
175 "layout/xkb/xkb_keyboard_code_conversion.cc", | 177 "layout/xkb/xkb_keyboard_code_conversion.cc", |
176 "layout/xkb/xkb_keyboard_code_conversion.h", | 178 "layout/xkb/xkb_keyboard_code_conversion.h", |
177 "layout/xkb/xkb_keyboard_layout_engine.cc", | 179 "layout/xkb/xkb_keyboard_layout_engine.cc", |
178 "layout/xkb/xkb_keyboard_layout_engine.h", | 180 "layout/xkb/xkb_keyboard_layout_engine.h", |
179 "layout/xkb/xkb_keysym.h", | 181 "layout/xkb/xkb_keysym.h", |
180 "layout/xkb/scoped_xkb.h", | 182 "layout/xkb/scoped_xkb.h", |
181 ] | 183 ] |
182 } | 184 } |
183 } | 185 } |
OLD | NEW |