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

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

Issue 15951008: Remove dependency of gsutil to download ndk (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
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 | « platform_tools/android/bin/android_setup.sh ('k') | platform_tools/android/bin/download_utils.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698