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

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

Issue 1287103004: Sync ui/events to chromium @ https://codereview.chromium.org/1210203002 (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 5 years, 4 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
« no previous file with comments | « ui/events/device_hotplug_event_observer.h ('k') | ui/events/devices/device_data_manager.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//build/config/ui.gni")
6
7 component("devices") {
8 sources = [
9 "device_data_manager.cc",
10 "device_data_manager.h",
11 "device_hotplug_event_observer.h",
12 "device_util_linux.cc",
13 "device_util_linux.h",
14 "events_devices_export.h",
15 "input_device.cc",
16 "input_device.h",
17 "input_device_event_observer.h",
18 "keyboard_device.cc",
19 "keyboard_device.h",
20 "touchscreen_device.cc",
21 "touchscreen_device.h",
22 ]
23
24 defines = [ "EVENTS_DEVICES_IMPLEMENTATION" ]
25
26 deps = [
27 "//base",
28 "//base/third_party/dynamic_annotations",
29 "//skia",
30 "//ui/gfx",
31 "//ui/gfx/geometry",
32 ]
33
34 if (use_x11) {
35 configs += [ "//build/config/linux:x11" ]
36
37 sources += [
38 "x11/device_data_manager_x11.cc",
39 "x11/device_data_manager_x11.h",
40 "x11/device_list_cache_x11.cc",
41 "x11/device_list_cache_x11.h",
42 "x11/touch_factory_x11.cc",
43 "x11/touch_factory_x11.h",
44 ]
45
46 deps += [
47 "//ui/events:events_base",
48 "//ui/gfx/x",
49 ]
50 }
51 }
OLDNEW
« no previous file with comments | « ui/events/device_hotplug_event_observer.h ('k') | ui/events/devices/device_data_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698