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

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

Issue 869613003: [PATCH 5/11] ozone: evdev: Replace dispatch callbacks with an interface (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: namespace ui Created 5 years, 10 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 | « no previous file | 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 8
9 declare_args() { 9 declare_args() {
10 # Optional system libraries. 10 # Optional system libraries.
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 config("evdev") { 55 config("evdev") {
56 defines = [ "USE_EVDEV" ] 56 defines = [ "USE_EVDEV" ]
57 } 57 }
58 58
59 config("evdev_gestures") { 59 config("evdev_gestures") {
60 defines = [ "USE_EVDEV_GESTURES" ] 60 defines = [ "USE_EVDEV_GESTURES" ]
61 } 61 }
62 62
63 component("events_ozone_evdev") { 63 component("events_ozone_evdev") {
64 sources = [ 64 sources = [
65 "evdev/device_event_dispatcher_evdev.cc",
66 "evdev/device_event_dispatcher_evdev.h",
65 "evdev/event_converter_evdev.cc", 67 "evdev/event_converter_evdev.cc",
66 "evdev/event_converter_evdev.h", 68 "evdev/event_converter_evdev.h",
67 "evdev/event_converter_evdev_impl.cc", 69 "evdev/event_converter_evdev_impl.cc",
68 "evdev/event_converter_evdev_impl.h", 70 "evdev/event_converter_evdev_impl.h",
69 "evdev/event_device_info.cc", 71 "evdev/event_device_info.cc",
70 "evdev/event_device_info.h", 72 "evdev/event_device_info.h",
71 "evdev/event_dispatch_callback.cc",
72 "evdev/event_dispatch_callback.h",
73 "evdev/event_factory_evdev.cc", 73 "evdev/event_factory_evdev.cc",
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",
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 "layout/xkb/xkb_key_code_converter.h", 168 "layout/xkb/xkb_key_code_converter.h",
169 "layout/xkb/xkb_keyboard_code_conversion.cc", 169 "layout/xkb/xkb_keyboard_code_conversion.cc",
170 "layout/xkb/xkb_keyboard_code_conversion.h", 170 "layout/xkb/xkb_keyboard_code_conversion.h",
171 "layout/xkb/xkb_keyboard_layout_engine.cc", 171 "layout/xkb/xkb_keyboard_layout_engine.cc",
172 "layout/xkb/xkb_keyboard_layout_engine.h", 172 "layout/xkb/xkb_keyboard_layout_engine.h",
173 "layout/xkb/xkb_keysym.h", 173 "layout/xkb/xkb_keysym.h",
174 "layout/xkb/scoped_xkb.h", 174 "layout/xkb/scoped_xkb.h",
175 ] 175 ]
176 } 176 }
177 } 177 }
OLDNEW
« no previous file with comments | « no previous file | ui/events/ozone/evdev/device_event_dispatcher_evdev.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698