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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
75 "evdev/event_factory_evdev.cc", | 75 "evdev/event_factory_evdev.cc", |
76 "evdev/event_factory_evdev.h", | 76 "evdev/event_factory_evdev.h", |
77 "evdev/event_modifiers_evdev.cc", | 77 "evdev/event_modifiers_evdev.cc", |
78 "evdev/event_modifiers_evdev.h", | 78 "evdev/event_modifiers_evdev.h", |
79 "evdev/event_thread_evdev.cc", | 79 "evdev/event_thread_evdev.cc", |
80 "evdev/event_thread_evdev.h", | 80 "evdev/event_thread_evdev.h", |
81 "evdev/events_ozone_evdev_export.h", | 81 "evdev/events_ozone_evdev_export.h", |
82 "evdev/input_controller_evdev.cc", | 82 "evdev/input_controller_evdev.cc", |
83 "evdev/input_controller_evdev.h", | 83 "evdev/input_controller_evdev.h", |
84 "evdev/input_device_factory_evdev.cc", | 84 "evdev/input_device_factory_evdev.cc", |
85 "evdev/input_device_factory_evdev.cc", | 85 "evdev/input_device_factory_evdev.h", |
86 "evdev/input_device_factory_evdev_proxy.h", | 86 "evdev/input_device_factory_evdev_proxy.cc", |
87 "evdev/input_device_factory_evdev_proxy.h", | 87 "evdev/input_device_factory_evdev_proxy.h", |
88 "evdev/input_injector_evdev.cc", | 88 "evdev/input_injector_evdev.cc", |
89 "evdev/input_injector_evdev.h", | 89 "evdev/input_injector_evdev.h", |
90 "evdev/keyboard_evdev.cc", | 90 "evdev/keyboard_evdev.cc", |
91 "evdev/keyboard_evdev.h", | 91 "evdev/keyboard_evdev.h", |
92 "evdev/keyboard_util_evdev.cc", | 92 "evdev/keyboard_util_evdev.cc", |
93 "evdev/keyboard_util_evdev.h", | 93 "evdev/keyboard_util_evdev.h", |
94 "evdev/mouse_button_map_evdev.cc", | 94 "evdev/mouse_button_map_evdev.cc", |
95 "evdev/mouse_button_map_evdev.h", | 95 "evdev/mouse_button_map_evdev.h", |
96 "evdev/tablet_event_converter_evdev.cc", | 96 "evdev/tablet_event_converter_evdev.cc", |
97 "evdev/tablet_event_converter_evdev.h", | 97 "evdev/tablet_event_converter_evdev.h", |
98 "evdev/touch_event_converter_evdev.cc", | 98 "evdev/touch_event_converter_evdev.cc", |
99 "evdev/touch_event_converter_evdev.h", | 99 "evdev/touch_event_converter_evdev.h", |
100 ] | 100 ] |
101 | 101 |
102 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ] | 102 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ] |
103 | 103 |
104 deps = [ | 104 deps = [ |
105 ":events_ozone", | 105 ":events_ozone", |
106 ":events_ozone_layout", | 106 ":events_ozone_layout", |
107 "//base", | 107 "//base", |
| 108 "//ui/events", |
108 "//ui/events:dom4_keycode_converter", | 109 "//ui/events:dom4_keycode_converter", |
| 110 "//ui/events:events_base", |
109 "//ui/events/devices", | 111 "//ui/events/devices", |
110 "//ui/events/platform", | 112 "//ui/events/platform", |
111 "//ui/gfx", | 113 "//ui/gfx", |
112 ] | 114 ] |
113 | 115 |
114 public_configs = [ ":evdev" ] | 116 public_configs = [ ":evdev" ] |
115 | 117 |
116 if (use_ozone_evdev && use_evdev_gestures) { | 118 if (use_ozone_evdev && use_evdev_gestures) { |
117 sources += [ | 119 sources += [ |
118 "evdev/libgestures_glue/event_reader_libevdev_cros.cc", | 120 "evdev/libgestures_glue/event_reader_libevdev_cros.cc", |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 "layout/xkb/xkb_key_code_converter.h", | 178 "layout/xkb/xkb_key_code_converter.h", |
177 "layout/xkb/xkb_keyboard_code_conversion.cc", | 179 "layout/xkb/xkb_keyboard_code_conversion.cc", |
178 "layout/xkb/xkb_keyboard_code_conversion.h", | 180 "layout/xkb/xkb_keyboard_code_conversion.h", |
179 "layout/xkb/xkb_keyboard_layout_engine.cc", | 181 "layout/xkb/xkb_keyboard_layout_engine.cc", |
180 "layout/xkb/xkb_keyboard_layout_engine.h", | 182 "layout/xkb/xkb_keyboard_layout_engine.h", |
181 "layout/xkb/xkb_keysym.h", | 183 "layout/xkb/xkb_keysym.h", |
182 "layout/xkb/scoped_xkb.h", | 184 "layout/xkb/scoped_xkb.h", |
183 ] | 185 ] |
184 } | 186 } |
185 } | 187 } |
OLD | NEW |