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

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

Issue 11743002: Bump ARM root image (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 7 years, 12 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
« 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/install-arm-sysroot.py
diff --git a/build/linux/install-arm-sysroot.py b/build/linux/install-arm-sysroot.py
index 88e1fd6bc168808ecd20a7970823ef7b20e73dbc..9627dd5be1443432ab71a2b8a627b3fb56e9c63f 100755
--- a/build/linux/install-arm-sysroot.py
+++ b/build/linux/install-arm-sysroot.py
@@ -21,8 +21,9 @@ import sys
SCRIPT_DIR = os.path.dirname(os.path.abspath(__file__))
-URL_PREFIX = 'https://commondatastorage.googleapis.com/nativeclient-archive2/toolchain'
-REVISION = 8003
+URL_PREFIX = 'https://commondatastorage.googleapis.com'
+URL_PATH = 'nativeclient-archive2/toolchain'
+REVISION = 8004
def main(args):
@@ -38,7 +39,8 @@ def main(args):
src_root = os.path.dirname(os.path.dirname(SCRIPT_DIR))
sysroot = os.path.join(src_root, 'arm-sysroot')
- url = "%s/%s/naclsdk_linux_arm-trusted.tgz" % (URL_PREFIX, REVISION)
+ url = "%s/%s/%s/naclsdk_linux_arm-trusted.tgz" % (URL_PREFIX,
+ URL_PATH, REVISION)
stamp = os.path.join(sysroot, ".stamp")
if os.path.exists(stamp):
« 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