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

Unified Diff: libyuv.gyp

Issue 1536403002: Disable sysroot for x86 and x64 only (Closed) Base URL: https://chromium.googlesource.com/libyuv/libyuv.git@master
Patch Set: Created 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « README.chromium ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: libyuv.gyp
diff --git a/libyuv.gyp b/libyuv.gyp
index 9cbf641e45b146412b45d2eeaa108fd31aace4be..f2a999dd1baf8896b795b7d7c0ea91997dee17ed 100644
--- a/libyuv.gyp
+++ b/libyuv.gyp
@@ -21,7 +21,13 @@
# Disable use of sysroot for Linux. It's enabled by default in Chromium,
# but it currently lacks the libudev-dev package.
# TODO(kjellander): Remove when crbug.com/561584 is fixed.
- 'use_sysroot': 0,
+ 'conditions': [
+ ['target_arch=="ia32" or target_arch=="x64"', {
kjellander_chromium 2015/12/21 18:59:48 I'm not sure about ARM here, so please run the try
+ 'use_sysroot': 0,
+ }, {
+ 'use_sysroot%': 1,
+ }],
+ ],
},
'use_sysroot%': '<(use_sysroot)',
'use_system_libjpeg%': 0,
« no previous file with comments | « README.chromium ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698