| 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/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 | 7 |
| 8 component("events_ozone") { | 8 component("events_ozone") { |
| 9 sources = [ | 9 sources = [ |
| 10 "device/device_event.cc", | 10 "device/device_event.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 deps += [ | 38 deps += [ |
| 39 "//device/udev_linux", | 39 "//device/udev_linux", |
| 40 ] | 40 ] |
| 41 } | 41 } |
| 42 } | 42 } |
| 43 | 43 |
| 44 component("events_ozone_evdev") { | 44 component("events_ozone_evdev") { |
| 45 sources = [ | 45 sources = [ |
| 46 "evdev/event_converter_evdev.cc", | 46 "evdev/event_converter_evdev.cc", |
| 47 "evdev/event_converter_evdev.h", | 47 "evdev/event_converter_evdev.h", |
| 48 "evdev/event_converter_evdev_impl.cc", |
| 49 "evdev/event_converter_evdev_impl.h", |
| 48 "evdev/event_device_info.cc", | 50 "evdev/event_device_info.cc", |
| 49 "evdev/event_device_info.h", | 51 "evdev/event_device_info.h", |
| 50 "evdev/event_factory_evdev.cc", | 52 "evdev/event_factory_evdev.cc", |
| 51 "evdev/event_factory_evdev.h", | 53 "evdev/event_factory_evdev.h", |
| 52 "evdev/event_modifiers_evdev.cc", | 54 "evdev/event_modifiers_evdev.cc", |
| 53 "evdev/event_modifiers_evdev.h", | 55 "evdev/event_modifiers_evdev.h", |
| 54 "evdev/events_ozone_evdev_export.h", | 56 "evdev/events_ozone_evdev_export.h", |
| 55 "evdev/key_event_converter_evdev.cc", | |
| 56 "evdev/key_event_converter_evdev.h", | |
| 57 "evdev/touch_event_converter_evdev.cc", | 57 "evdev/touch_event_converter_evdev.cc", |
| 58 "evdev/touch_event_converter_evdev.h", | 58 "evdev/touch_event_converter_evdev.h", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 defines = [ | 61 defines = [ |
| 62 "EVENTS_OZONE_EVDEV_IMPLEMENTATION", | 62 "EVENTS_OZONE_EVDEV_IMPLEMENTATION", |
| 63 ] | 63 ] |
| 64 | 64 |
| 65 deps = [ | 65 deps = [ |
| 66 ":events_ozone", | 66 ":events_ozone", |
| (...skipping 23 matching lines...) Expand all Loading... |
| 90 defines += [ | 90 defines += [ |
| 91 "USE_EVDEV_GESTURES", | 91 "USE_EVDEV_GESTURES", |
| 92 ] | 92 ] |
| 93 | 93 |
| 94 configs += [ | 94 configs += [ |
| 95 "//build/config/linux:libevdev-cros", | 95 "//build/config/linux:libevdev-cros", |
| 96 "//build/config/linux:libgestures", | 96 "//build/config/linux:libgestures", |
| 97 ] | 97 ] |
| 98 } | 98 } |
| 99 } | 99 } |
| OLD | NEW |