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

Unified Diff: build/android/install_emulator_deps.py

Issue 296833003: Fix Android x86 emulator image download paths. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 7 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/android/install_emulator_deps.py
diff --git a/build/android/install_emulator_deps.py b/build/android/install_emulator_deps.py
index 341b8dcb640a624033fe7b1fdf3bd4bde30798b8..d980c2cafac32a87476775623528b68e19aebf1d 100755
--- a/build/android/install_emulator_deps.py
+++ b/build/android/install_emulator_deps.py
@@ -36,11 +36,11 @@ SDK_ZIP = 'adt-bundle-linux-x86_64-20131030.zip'
# These don't exist prior to Android-15.
# As of 08 Nov 2013, Android-19 is not yet available either.
X86_IMG_URLS = {
- 15: 'http://download-software.intel.com/sites/landingpage/android/sysimg_x86-15_r01.zip',
- 16: 'http://download-software.intel.com/sites/landingpage/android/sysimg_x86-16_r01.zip',
- 17: 'http://download-software.intel.com/sites/landingpage/android/sysimg_x86-17_r01.zip',
- 18: 'http://download-software.intel.com/sites/landingpage/android/sysimg_x86-18_r01.zip',
- 19: 'http://download-software.intel.com/sites/landingpage/android/sysimg_x86-19_r01.zip'}
+ 15: 'https://software.intel.com/sites/landingpage/android/sysimg_x86-15_r01.zip',
+ 16: 'https://software.intel.com/sites/landingpage/android/sysimg_x86-16_r01.zip',
+ 17: 'https://software.intel.com/sites/landingpage/android/sysimg_x86-17_r01.zip',
+ 18: 'https://software.intel.com/sites/landingpage/android/sysimg_x86-18_r01.zip',
+ 19: 'https://software.intel.com/sites/landingpage/android/sysimg_x86-19_r01.zip'}
#pylint: enable=C0301
def CheckSDK():
« 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