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

Unified Diff: build/linux/sysroot_scripts/install-sysroot.py

Issue 1430143002: Install both 32 and 64 bit x86 sysroots when arm is the target_cpu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/linux/sysroot_scripts/install-sysroot.py
diff --git a/build/linux/sysroot_scripts/install-sysroot.py b/build/linux/sysroot_scripts/install-sysroot.py
index c1112891e282c0b255925f97cf6dfbbe63c1d562..bd6e1e38512060d53aab722b22715eed885d1ad8 100755
--- a/build/linux/sysroot_scripts/install-sysroot.py
+++ b/build/linux/sysroot_scripts/install-sysroot.py
@@ -132,6 +132,17 @@ def main():
if options.running_as_hook and not UsingSysroot(target_arch, gyp_defines):
return 0
+ # Android requires both 32 and 64 bit sysroots (for v8 snapshots).
+ if target_arch == 'amd64':
Dirk Pranke 2015/11/05 22:49:38 I'm confused. I thought we established that you ne
agrieve 2015/11/06 03:25:22 Ah, okay, the build instructions I was following d
+ ret = _InstallSysroot(target_arch)
+ if ret:
+ return ret
+ target_arch = 'i386'
+
+ return _InstallSysroot(target_arch)
+
+
+def _InstallSysroot(target_arch):
# The sysroot directory should match the one specified in build/common.gypi.
# TODO(thestig) Consider putting this else where to avoid having to recreate
# it on every build.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698