| 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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 "evdev/event_factory_evdev.h", | 74 "evdev/event_factory_evdev.h", |
| 75 "evdev/event_modifiers_evdev.cc", | 75 "evdev/event_modifiers_evdev.cc", |
| 76 "evdev/event_modifiers_evdev.h", | 76 "evdev/event_modifiers_evdev.h", |
| 77 "evdev/events_ozone_evdev_export.h", | 77 "evdev/events_ozone_evdev_export.h", |
| 78 "evdev/input_controller_evdev.cc", | 78 "evdev/input_controller_evdev.cc", |
| 79 "evdev/input_controller_evdev.h", | 79 "evdev/input_controller_evdev.h", |
| 80 "evdev/input_injector_evdev.cc", | 80 "evdev/input_injector_evdev.cc", |
| 81 "evdev/input_injector_evdev.h", | 81 "evdev/input_injector_evdev.h", |
| 82 "evdev/keyboard_evdev.cc", | 82 "evdev/keyboard_evdev.cc", |
| 83 "evdev/keyboard_evdev.h", | 83 "evdev/keyboard_evdev.h", |
| 84 "evdev/keyboard_util_evdev.cc", |
| 85 "evdev/keyboard_util_evdev.h", |
| 84 "evdev/mouse_button_map_evdev.cc", | 86 "evdev/mouse_button_map_evdev.cc", |
| 85 "evdev/mouse_button_map_evdev.h", | 87 "evdev/mouse_button_map_evdev.h", |
| 86 "evdev/tablet_event_converter_evdev.cc", | 88 "evdev/tablet_event_converter_evdev.cc", |
| 87 "evdev/tablet_event_converter_evdev.h", | 89 "evdev/tablet_event_converter_evdev.h", |
| 88 "evdev/touch_event_converter_evdev.cc", | 90 "evdev/touch_event_converter_evdev.cc", |
| 89 "evdev/touch_event_converter_evdev.h", | 91 "evdev/touch_event_converter_evdev.h", |
| 90 ] | 92 ] |
| 91 | 93 |
| 92 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ] | 94 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ] |
| 93 | 95 |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 166 "layout/xkb/xkb_key_code_converter.h", | 168 "layout/xkb/xkb_key_code_converter.h", |
| 167 "layout/xkb/xkb_keyboard_code_conversion.cc", | 169 "layout/xkb/xkb_keyboard_code_conversion.cc", |
| 168 "layout/xkb/xkb_keyboard_code_conversion.h", | 170 "layout/xkb/xkb_keyboard_code_conversion.h", |
| 169 "layout/xkb/xkb_keyboard_layout_engine.cc", | 171 "layout/xkb/xkb_keyboard_layout_engine.cc", |
| 170 "layout/xkb/xkb_keyboard_layout_engine.h", | 172 "layout/xkb/xkb_keyboard_layout_engine.h", |
| 171 "layout/xkb/xkb_keysym.h", | 173 "layout/xkb/xkb_keysym.h", |
| 172 "layout/xkb/scoped_xkb.h", | 174 "layout/xkb/scoped_xkb.h", |
| 173 ] | 175 ] |
| 174 } | 176 } |
| 175 } | 177 } |
| OLD | NEW |