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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
49 "evdev/event_converter_evdev_impl.h", | 49 "evdev/event_converter_evdev_impl.h", |
50 "evdev/event_device_info.cc", | 50 "evdev/event_device_info.cc", |
51 "evdev/event_device_info.h", | 51 "evdev/event_device_info.h", |
52 "evdev/event_factory_evdev.cc", | 52 "evdev/event_factory_evdev.cc", |
53 "evdev/event_factory_evdev.h", | 53 "evdev/event_factory_evdev.h", |
54 "evdev/event_modifiers_evdev.cc", | 54 "evdev/event_modifiers_evdev.cc", |
55 "evdev/event_modifiers_evdev.h", | 55 "evdev/event_modifiers_evdev.h", |
56 "evdev/events_ozone_evdev_export.h", | 56 "evdev/events_ozone_evdev_export.h", |
57 "evdev/keyboard_evdev.cc", | 57 "evdev/keyboard_evdev.cc", |
58 "evdev/keyboard_evdev.h", | 58 "evdev/keyboard_evdev.h", |
| 59 "evdev/tablet_event_converter_evdev.cc", |
| 60 "evdev/tablet_event_converter_evdev.h", |
59 "evdev/touch_event_converter_evdev.cc", | 61 "evdev/touch_event_converter_evdev.cc", |
60 "evdev/touch_event_converter_evdev.h", | 62 "evdev/touch_event_converter_evdev.h", |
61 ] | 63 ] |
62 | 64 |
63 defines = [ | 65 defines = [ |
64 "EVENTS_OZONE_EVDEV_IMPLEMENTATION", | 66 "EVENTS_OZONE_EVDEV_IMPLEMENTATION", |
65 ] | 67 ] |
66 | 68 |
67 deps = [ | 69 deps = [ |
68 ":events_ozone", | 70 ":events_ozone", |
(...skipping 26 matching lines...) Expand all Loading... |
95 defines += [ | 97 defines += [ |
96 "USE_EVDEV_GESTURES", | 98 "USE_EVDEV_GESTURES", |
97 ] | 99 ] |
98 | 100 |
99 configs += [ | 101 configs += [ |
100 "//build/config/linux:libevdev-cros", | 102 "//build/config/linux:libevdev-cros", |
101 "//build/config/linux:libgestures", | 103 "//build/config/linux:libgestures", |
102 ] | 104 ] |
103 } | 105 } |
104 } | 106 } |
OLD | NEW |