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

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

Issue 893753002: Dump touchpad event logs for touch log source (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change functions to Chromium counterparts and cleanup stuff 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
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 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 "//ui/events/platform", 112 "//ui/events/platform",
113 "//ui/gfx", 113 "//ui/gfx",
114 ] 114 ]
115 115
116 public_configs = [ ":evdev" ] 116 public_configs = [ ":evdev" ]
117 117
118 if (use_ozone_evdev && use_evdev_gestures) { 118 if (use_ozone_evdev && use_evdev_gestures) {
119 sources += [ 119 sources += [
120 "evdev/libgestures_glue/event_reader_libevdev_cros.cc", 120 "evdev/libgestures_glue/event_reader_libevdev_cros.cc",
121 "evdev/libgestures_glue/event_reader_libevdev_cros.h", 121 "evdev/libgestures_glue/event_reader_libevdev_cros.h",
122 "evdev/libgestures_glue/gesture_feedback.cc",
123 "evdev/libgestures_glue/gesture_feedback.h",
122 "evdev/libgestures_glue/gesture_interpreter_libevdev_cros.cc", 124 "evdev/libgestures_glue/gesture_interpreter_libevdev_cros.cc",
123 "evdev/libgestures_glue/gesture_interpreter_libevdev_cros.h", 125 "evdev/libgestures_glue/gesture_interpreter_libevdev_cros.h",
124 "evdev/libgestures_glue/gesture_logging.cc", 126 "evdev/libgestures_glue/gesture_logging.cc",
125 "evdev/libgestures_glue/gesture_logging.h", 127 "evdev/libgestures_glue/gesture_logging.h",
126 "evdev/libgestures_glue/gesture_property_provider.cc", 128 "evdev/libgestures_glue/gesture_property_provider.cc",
127 "evdev/libgestures_glue/gesture_property_provider.h", 129 "evdev/libgestures_glue/gesture_property_provider.h",
128 "evdev/libgestures_glue/gesture_timer_provider.cc", 130 "evdev/libgestures_glue/gesture_timer_provider.cc",
129 "evdev/libgestures_glue/gesture_timer_provider.h", 131 "evdev/libgestures_glue/gesture_timer_provider.h",
130 ] 132 ]
131 133
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 "layout/xkb/xkb_key_code_converter.h", 180 "layout/xkb/xkb_key_code_converter.h",
179 "layout/xkb/xkb_keyboard_code_conversion.cc", 181 "layout/xkb/xkb_keyboard_code_conversion.cc",
180 "layout/xkb/xkb_keyboard_code_conversion.h", 182 "layout/xkb/xkb_keyboard_code_conversion.h",
181 "layout/xkb/xkb_keyboard_layout_engine.cc", 183 "layout/xkb/xkb_keyboard_layout_engine.cc",
182 "layout/xkb/xkb_keyboard_layout_engine.h", 184 "layout/xkb/xkb_keyboard_layout_engine.h",
183 "layout/xkb/xkb_keysym.h", 185 "layout/xkb/xkb_keysym.h",
184 "layout/xkb/scoped_xkb.h", 186 "layout/xkb/scoped_xkb.h",
185 ] 187 ]
186 } 188 }
187 } 189 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698