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

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

Issue 1922783002: Move gfx::Display/Screen to display::Display/Screen in aura/events (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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
OLDNEW
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 # Support ChromeOS touchpad gestures with ozone. 10 # Support ChromeOS touchpad gestures with ozone.
(...skipping 19 matching lines...) Expand all
30 "device/device_manager_manual.cc", 30 "device/device_manager_manual.cc",
31 "device/device_manager_manual.h", 31 "device/device_manager_manual.h",
32 "device/udev/device_manager_udev.cc", 32 "device/udev/device_manager_udev.cc",
33 "device/udev/device_manager_udev.h", 33 "device/udev/device_manager_udev.h",
34 "events_ozone_export.h", 34 "events_ozone_export.h",
35 ] 35 ]
36 36
37 deps = [ 37 deps = [
38 "//base", 38 "//base",
39 "//base/third_party/dynamic_annotations", 39 "//base/third_party/dynamic_annotations",
40 "//ui/display",
40 "//ui/events", 41 "//ui/events",
41 "//ui/events:events_base", 42 "//ui/events:events_base",
42 ] 43 ]
43 44
44 defines = [ "EVENTS_OZONE_IMPLEMENTATION" ] 45 defines = [ "EVENTS_OZONE_IMPLEMENTATION" ]
45 46
46 if (!use_udev) { 47 if (!use_udev) {
47 sources -= [ 48 sources -= [
48 "device/udev/device_manager_udev.cc", 49 "device/udev/device_manager_udev.cc",
49 "device/udev/device_manager_udev.h", 50 "device/udev/device_manager_udev.h",
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
124 "evdev/touch_noise/touch_noise_finder.cc", 125 "evdev/touch_noise/touch_noise_finder.cc",
125 "evdev/touch_noise/touch_noise_finder.h", 126 "evdev/touch_noise/touch_noise_finder.h",
126 ] 127 ]
127 128
128 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ] 129 defines = [ "EVENTS_OZONE_EVDEV_IMPLEMENTATION" ]
129 130
130 deps = [ 131 deps = [
131 ":events_ozone", 132 ":events_ozone",
132 ":events_ozone_layout", 133 ":events_ozone_layout",
133 "//base", 134 "//base",
135 "//ui/display",
134 "//ui/events", 136 "//ui/events",
135 "//ui/events:dom_keycode_converter", 137 "//ui/events:dom_keycode_converter",
136 "//ui/events:events_base", 138 "//ui/events:events_base",
137 "//ui/events/devices", 139 "//ui/events/devices",
138 "//ui/events/platform", 140 "//ui/events/platform",
139 "//ui/gfx", 141 "//ui/gfx",
140 "//ui/ozone:ozone_base", 142 "//ui/ozone:ozone_base",
141 ] 143 ]
142 144
143 public_configs = [ ":evdev" ] 145 public_configs = [ ":evdev" ]
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 "layout/xkb/xkb_evdev_codes.cc", 207 "layout/xkb/xkb_evdev_codes.cc",
206 "layout/xkb/xkb_evdev_codes.h", 208 "layout/xkb/xkb_evdev_codes.h",
207 "layout/xkb/xkb_key_code_converter.h", 209 "layout/xkb/xkb_key_code_converter.h",
208 "layout/xkb/xkb_keyboard_layout_engine.cc", 210 "layout/xkb/xkb_keyboard_layout_engine.cc",
209 "layout/xkb/xkb_keyboard_layout_engine.h", 211 "layout/xkb/xkb_keyboard_layout_engine.h",
210 ] 212 ]
211 213
212 deps += [ "//ui/events/keycodes:xkb" ] 214 deps += [ "//ui/events/keycodes:xkb" ]
213 } 215 }
214 } 216 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698