| 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 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 "//ui/events/platform", | 114 "//ui/events/platform", |
| 115 "//ui/gfx", | 115 "//ui/gfx", |
| 116 ] | 116 ] |
| 117 | 117 |
| 118 public_configs = [ ":evdev" ] | 118 public_configs = [ ":evdev" ] |
| 119 | 119 |
| 120 if (use_ozone_evdev && use_evdev_gestures) { | 120 if (use_ozone_evdev && use_evdev_gestures) { |
| 121 sources += [ | 121 sources += [ |
| 122 "evdev/libgestures_glue/event_reader_libevdev_cros.cc", | 122 "evdev/libgestures_glue/event_reader_libevdev_cros.cc", |
| 123 "evdev/libgestures_glue/event_reader_libevdev_cros.h", | 123 "evdev/libgestures_glue/event_reader_libevdev_cros.h", |
| 124 "evdev/libgestures_glue/gesture_feedback.cc", |
| 125 "evdev/libgestures_glue/gesture_feedback.h", |
| 124 "evdev/libgestures_glue/gesture_interpreter_libevdev_cros.cc", | 126 "evdev/libgestures_glue/gesture_interpreter_libevdev_cros.cc", |
| 125 "evdev/libgestures_glue/gesture_interpreter_libevdev_cros.h", | 127 "evdev/libgestures_glue/gesture_interpreter_libevdev_cros.h", |
| 126 "evdev/libgestures_glue/gesture_logging.cc", | 128 "evdev/libgestures_glue/gesture_logging.cc", |
| 127 "evdev/libgestures_glue/gesture_logging.h", | 129 "evdev/libgestures_glue/gesture_logging.h", |
| 128 "evdev/libgestures_glue/gesture_property_provider.cc", | 130 "evdev/libgestures_glue/gesture_property_provider.cc", |
| 129 "evdev/libgestures_glue/gesture_property_provider.h", | 131 "evdev/libgestures_glue/gesture_property_provider.h", |
| 130 "evdev/libgestures_glue/gesture_timer_provider.cc", | 132 "evdev/libgestures_glue/gesture_timer_provider.cc", |
| 131 "evdev/libgestures_glue/gesture_timer_provider.h", | 133 "evdev/libgestures_glue/gesture_timer_provider.h", |
| 132 ] | 134 ] |
| 133 | 135 |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 "layout/xkb/xkb_evdev_codes.h", | 182 "layout/xkb/xkb_evdev_codes.h", |
| 181 "layout/xkb/xkb_key_code_converter.h", | 183 "layout/xkb/xkb_key_code_converter.h", |
| 182 "layout/xkb/xkb_keyboard_code_conversion.cc", | 184 "layout/xkb/xkb_keyboard_code_conversion.cc", |
| 183 "layout/xkb/xkb_keyboard_code_conversion.h", | 185 "layout/xkb/xkb_keyboard_code_conversion.h", |
| 184 "layout/xkb/xkb_keyboard_layout_engine.cc", | 186 "layout/xkb/xkb_keyboard_layout_engine.cc", |
| 185 "layout/xkb/xkb_keyboard_layout_engine.h", | 187 "layout/xkb/xkb_keyboard_layout_engine.h", |
| 186 "layout/xkb/xkb_keysym.h", | 188 "layout/xkb/xkb_keysym.h", |
| 187 ] | 189 ] |
| 188 } | 190 } |
| 189 } | 191 } |
| OLD | NEW |