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

Side by Side Diff: ui/ozone/platform/dri/BUILD.gn

Issue 742103002: Ozone keyboard layout (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lite-code
Patch Set: address review comments (Wez) + cleanup Created 6 years 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/linux/pkg_config.gni") 5 import("//build/config/linux/pkg_config.gni")
6 import("//ui/ozone/ozone.gni") 6 import("//ui/ozone/ozone.gni")
7 7
8 pkg_config("libdrm") { 8 pkg_config("libdrm") {
9 packages = [ "libdrm" ] 9 packages = [ "libdrm" ]
10 } 10 }
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 ] 65 ]
66 66
67 deps = [ 67 deps = [
68 "//base", 68 "//base",
69 "//skia", 69 "//skia",
70 "//ipc", 70 "//ipc",
71 "//ui/base", 71 "//ui/base",
72 "//ui/display/types", 72 "//ui/display/types",
73 "//ui/events", 73 "//ui/events",
74 "//ui/events/ozone:events_ozone_evdev", 74 "//ui/events/ozone:events_ozone_evdev",
75 "//ui/events/ozone:events_ozone_layout",
75 "//ui/gfx", 76 "//ui/gfx",
76 "//ui/gfx/geometry", 77 "//ui/gfx/geometry",
77 ] 78 ]
78 79
79 public_configs = [ 80 public_configs = [
80 ":libdrm", 81 ":libdrm",
81 ] 82 ]
82 } 83 }
83 84
84 if (ozone_platform_dri) { 85 if (ozone_platform_dri) {
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 "//base", 143 "//base",
143 "//skia", 144 "//skia",
144 "//ui/events/ozone:events_ozone_evdev", 145 "//ui/events/ozone:events_ozone_evdev",
145 ] 146 ]
146 147
147 public_configs = [ 148 public_configs = [
148 ":libgbm", 149 ":libgbm",
149 ] 150 ]
150 } 151 }
151 } 152 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698