Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(65)

Side by Side Diff: ui/events/ozone/BUILD.gn

Issue 2805793002: ozone: evdev: Add gamepad support (Closed)
Patch Set: Support Gamepad in Ozone. Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « ui/events/BUILD.gn ('k') | ui/events/ozone/evdev/device_event_dispatcher_evdev.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "evdev/event_converter_evdev_impl.h", 76 "evdev/event_converter_evdev_impl.h",
77 "evdev/event_device_info.cc", 77 "evdev/event_device_info.cc",
78 "evdev/event_device_info.h", 78 "evdev/event_device_info.h",
79 "evdev/event_factory_evdev.cc", 79 "evdev/event_factory_evdev.cc",
80 "evdev/event_factory_evdev.h", 80 "evdev/event_factory_evdev.h",
81 "evdev/event_modifiers_evdev.cc", 81 "evdev/event_modifiers_evdev.cc",
82 "evdev/event_modifiers_evdev.h", 82 "evdev/event_modifiers_evdev.h",
83 "evdev/event_thread_evdev.cc", 83 "evdev/event_thread_evdev.cc",
84 "evdev/event_thread_evdev.h", 84 "evdev/event_thread_evdev.h",
85 "evdev/events_ozone_evdev_export.h", 85 "evdev/events_ozone_evdev_export.h",
86 "evdev/gamepad_event_converter_evdev.cc",
87 "evdev/gamepad_event_converter_evdev.h",
86 "evdev/input_controller_evdev.cc", 88 "evdev/input_controller_evdev.cc",
87 "evdev/input_controller_evdev.h", 89 "evdev/input_controller_evdev.h",
88 "evdev/input_device_factory_evdev.cc", 90 "evdev/input_device_factory_evdev.cc",
89 "evdev/input_device_factory_evdev.h", 91 "evdev/input_device_factory_evdev.h",
90 "evdev/input_device_factory_evdev_proxy.cc", 92 "evdev/input_device_factory_evdev_proxy.cc",
91 "evdev/input_device_factory_evdev_proxy.h", 93 "evdev/input_device_factory_evdev_proxy.h",
92 "evdev/input_device_settings_evdev.cc", 94 "evdev/input_device_settings_evdev.cc",
93 "evdev/input_device_settings_evdev.h", 95 "evdev/input_device_settings_evdev.h",
94 "evdev/input_injector_evdev.cc", 96 "evdev/input_injector_evdev.cc",
95 "evdev/input_injector_evdev.h", 97 "evdev/input_injector_evdev.h",
(...skipping 17 matching lines...) Expand all
113 "evdev/touch_filter/edge_touch_filter.h", 115 "evdev/touch_filter/edge_touch_filter.h",
114 "evdev/touch_filter/false_touch_finder.cc", 116 "evdev/touch_filter/false_touch_finder.cc",
115 "evdev/touch_filter/false_touch_finder.h", 117 "evdev/touch_filter/false_touch_finder.h",
116 "evdev/touch_filter/far_apart_taps_touch_noise_filter.cc", 118 "evdev/touch_filter/far_apart_taps_touch_noise_filter.cc",
117 "evdev/touch_filter/far_apart_taps_touch_noise_filter.h", 119 "evdev/touch_filter/far_apart_taps_touch_noise_filter.h",
118 "evdev/touch_filter/horizontally_aligned_touch_noise_filter.cc", 120 "evdev/touch_filter/horizontally_aligned_touch_noise_filter.cc",
119 "evdev/touch_filter/horizontally_aligned_touch_noise_filter.h", 121 "evdev/touch_filter/horizontally_aligned_touch_noise_filter.h",
120 "evdev/touch_filter/single_position_touch_noise_filter.cc", 122 "evdev/touch_filter/single_position_touch_noise_filter.cc",
121 "evdev/touch_filter/single_position_touch_noise_filter.h", 123 "evdev/touch_filter/single_position_touch_noise_filter.h",
122 "evdev/touch_filter/touch_filter.h", 124 "evdev/touch_filter/touch_filter.h",
125 "gamepad/gamepad_event.cc",
126 "gamepad/gamepad_event.h",
127 "gamepad/gamepad_mapping.cc",
128 "gamepad/gamepad_mapping.h",
129 "gamepad/gamepad_observer.h",
130 "gamepad/gamepad_provider_ozone.cc",
131 "gamepad/gamepad_provider_ozone.h",
132 "gamepad/webgamepad_constants.h",
123 ] 133 ]
124 134
125 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ] 135 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ]
126 136
127 deps = [ 137 deps = [
128 ":events_ozone", 138 ":events_ozone",
129 ":events_ozone_layout", 139 ":events_ozone_layout",
130 "//base", 140 "//base",
131 "//ui/display", 141 "//ui/display",
132 "//ui/events", 142 "//ui/events",
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 "layout/xkb/xkb_evdev_codes.cc", 205 "layout/xkb/xkb_evdev_codes.cc",
196 "layout/xkb/xkb_evdev_codes.h", 206 "layout/xkb/xkb_evdev_codes.h",
197 "layout/xkb/xkb_key_code_converter.h", 207 "layout/xkb/xkb_key_code_converter.h",
198 "layout/xkb/xkb_keyboard_layout_engine.cc", 208 "layout/xkb/xkb_keyboard_layout_engine.cc",
199 "layout/xkb/xkb_keyboard_layout_engine.h", 209 "layout/xkb/xkb_keyboard_layout_engine.h",
200 ] 210 ]
201 211
202 deps += [ "//ui/events/keycodes:xkb" ] 212 deps += [ "//ui/events/keycodes:xkb" ]
203 } 213 }
204 } 214 }
OLDNEW
« no previous file with comments | « ui/events/BUILD.gn ('k') | ui/events/ozone/evdev/device_event_dispatcher_evdev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698