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

Side by Side Diff: platform_tools/android/bin/download_toolchains.py

Issue 1385463002: Update Android toolchains and streamline process. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 14 for 32-bit, 21 for 64-bit Created 5 years, 2 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 unified diff | Download patch
« no previous file with comments | « no previous file | platform_tools/android/bin/utils/setup_toolchain.sh » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/usr/bin/python
2
3 """Download all toolchains for this platform.
4
5 This module downloads multiple tgz's.
6 """
7
8 import download_utils
9 import sys
10
11 url = sys.argv[1]
12 filepath = sys.argv[2]
13
14 try:
15 download_utils.SyncURL(url, filepath)
16 exit(0)
17 except download_utils.HashError, e:
18 exit(1)
19
OLDNEW
« no previous file with comments | « no previous file | platform_tools/android/bin/utils/setup_toolchain.sh » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698