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 # Support ChromeOS touchpad gestures with ozone. | 10 # Support ChromeOS touchpad gestures with ozone. |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 "evdev/input_device_settings_evdev.cc", | 101 "evdev/input_device_settings_evdev.cc", |
102 "evdev/input_device_settings_evdev.h", | 102 "evdev/input_device_settings_evdev.h", |
103 "evdev/input_injector_evdev.cc", | 103 "evdev/input_injector_evdev.cc", |
104 "evdev/input_injector_evdev.h", | 104 "evdev/input_injector_evdev.h", |
105 "evdev/keyboard_evdev.cc", | 105 "evdev/keyboard_evdev.cc", |
106 "evdev/keyboard_evdev.h", | 106 "evdev/keyboard_evdev.h", |
107 "evdev/keyboard_util_evdev.cc", | 107 "evdev/keyboard_util_evdev.cc", |
108 "evdev/keyboard_util_evdev.h", | 108 "evdev/keyboard_util_evdev.h", |
109 "evdev/mouse_button_map_evdev.cc", | 109 "evdev/mouse_button_map_evdev.cc", |
110 "evdev/mouse_button_map_evdev.h", | 110 "evdev/mouse_button_map_evdev.h", |
| 111 "evdev/palm_suppression_filter.cc", |
| 112 "evdev/palm_suppression_filter.h", |
111 "evdev/tablet_event_converter_evdev.cc", | 113 "evdev/tablet_event_converter_evdev.cc", |
112 "evdev/tablet_event_converter_evdev.h", | 114 "evdev/tablet_event_converter_evdev.h", |
113 "evdev/touch_evdev_debug_buffer.cc", | 115 "evdev/touch_evdev_debug_buffer.cc", |
114 "evdev/touch_evdev_debug_buffer.h", | 116 "evdev/touch_evdev_debug_buffer.h", |
115 "evdev/touch_evdev_types.cc", | 117 "evdev/touch_evdev_types.cc", |
116 "evdev/touch_evdev_types.h", | 118 "evdev/touch_evdev_types.h", |
117 "evdev/touch_event_converter_evdev.cc", | 119 "evdev/touch_event_converter_evdev.cc", |
118 "evdev/touch_event_converter_evdev.h", | 120 "evdev/touch_event_converter_evdev.h", |
119 "evdev/touch_noise/far_apart_taps_touch_noise_filter.cc", | 121 "evdev/touch_noise/far_apart_taps_touch_noise_filter.cc", |
120 "evdev/touch_noise/far_apart_taps_touch_noise_filter.h", | 122 "evdev/touch_noise/far_apart_taps_touch_noise_filter.h", |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 "layout/xkb/xkb_evdev_codes.cc", | 210 "layout/xkb/xkb_evdev_codes.cc", |
209 "layout/xkb/xkb_evdev_codes.h", | 211 "layout/xkb/xkb_evdev_codes.h", |
210 "layout/xkb/xkb_key_code_converter.h", | 212 "layout/xkb/xkb_key_code_converter.h", |
211 "layout/xkb/xkb_keyboard_layout_engine.cc", | 213 "layout/xkb/xkb_keyboard_layout_engine.cc", |
212 "layout/xkb/xkb_keyboard_layout_engine.h", | 214 "layout/xkb/xkb_keyboard_layout_engine.h", |
213 ] | 215 ] |
214 | 216 |
215 deps += [ "//ui/events/keycodes:xkb" ] | 217 deps += [ "//ui/events/keycodes:xkb" ] |
216 } | 218 } |
217 } | 219 } |
OLD | NEW |