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

Unified Diff: ui/ozone/platform/dri/BUILD.gn

Issue 427853004: Move libdrm target behind conditional (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 5 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 side-by-side diff with in-line comments
Download patch
« build/linux/system.gyp ('K') | « build/linux/system.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/ozone/platform/dri/BUILD.gn
diff --git a/ui/ozone/platform/dri/BUILD.gn b/ui/ozone/platform/dri/BUILD.gn
index f7d93d7c19ef3a9b261c50e7a4ce457a509e1269..0033c967626d81dc2efea82f25a91ad25b32a884 100644
--- a/ui/ozone/platform/dri/BUILD.gn
+++ b/ui/ozone/platform/dri/BUILD.gn
@@ -5,6 +5,12 @@
import("//build/config/linux/pkg_config.gni")
import("//ui/ozone/ozone.gni")
+if (ozone_platform_dri || ozone_platform_gbm) {
spang 2014/07/29 21:43:03 is this condition really needed? I think just movi
dnicoara 2014/07/29 21:50:49 Done.
+ pkg_config("libdrm") {
+ packages = [ "libdrm" ]
+ }
+}
+
source_set("dri_common") {
sources = [
"chromeos/display_mode_dri.cc",
@@ -55,7 +61,7 @@ source_set("dri_common") {
]
direct_dependent_configs = [
- "//build/config/linux:libdrm",
+ ":libdrm",
]
}
« build/linux/system.gyp ('K') | « build/linux/system.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698