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

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: rrrebase 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 = [ ":libdrm" ] 80 public_configs = [ ":libdrm" ]
80 } 81 }
81 82
82 if (ozone_platform_dri) { 83 if (ozone_platform_dri) {
83 source_set("dri") { 84 source_set("dri") {
84 sources = [ 85 sources = [
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
138 deps = [ 139 deps = [
139 ":dri_common", 140 ":dri_common",
140 "//base", 141 "//base",
141 "//skia", 142 "//skia",
142 "//ui/events/ozone:events_ozone_evdev", 143 "//ui/events/ozone:events_ozone_evdev",
143 ] 144 ]
144 145
145 public_configs = [ ":libgbm" ] 146 public_configs = [ ":libgbm" ]
146 } 147 }
147 } 148 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698