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", |
11 "device/device_event.h", | 11 "device/device_event.h", |
12 "device/device_event_observer.h", | 12 "device/device_event_observer.h", |
13 "device/device_manager.cc", | 13 "device/device_manager.cc", |
14 "device/device_manager.h", | 14 "device/device_manager.h", |
15 "device/device_manager_manual.cc", | 15 "device/device_manager_manual.cc", |
16 "device/device_manager_manual.h", | 16 "device/device_manager_manual.h", |
17 "device/udev/device_manager_udev.cc", | 17 "device/udev/device_manager_udev.cc", |
18 "device/udev/device_manager_udev.h", | 18 "device/udev/device_manager_udev.h", |
19 "event_factory_ozone.cc", | |
20 "event_factory_ozone.h", | |
21 "events_ozone_export.h", | 19 "events_ozone_export.h", |
22 ] | 20 ] |
23 | 21 |
24 deps = [ | 22 deps = [ |
25 "//base", | 23 "//base", |
26 ] | 24 ] |
27 | 25 |
28 defines = [ | 26 defines = [ |
29 "EVENTS_OZONE_IMPLEMENTATION", | 27 "EVENTS_OZONE_IMPLEMENTATION", |
30 ] | 28 ] |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 defines += [ | 90 defines += [ |
93 "USE_EVDEV_GESTURES", | 91 "USE_EVDEV_GESTURES", |
94 ] | 92 ] |
95 | 93 |
96 configs += [ | 94 configs += [ |
97 "//build/config/linux:libevdev-cros", | 95 "//build/config/linux:libevdev-cros", |
98 "//build/config/linux:libgestures", | 96 "//build/config/linux:libgestures", |
99 ] | 97 ] |
100 } | 98 } |
101 } | 99 } |
OLD | NEW |