| Index: build/android/install_emulator_deps.py
|
| diff --git a/build/android/install_emulator_deps.py b/build/android/install_emulator_deps.py
|
| index fcb09541170c448256c812801728ae32585aac5a..341b8dcb640a624033fe7b1fdf3bd4bde30798b8 100755
|
| --- a/build/android/install_emulator_deps.py
|
| +++ b/build/android/install_emulator_deps.py
|
| @@ -30,6 +30,7 @@ DEFAULT_ANDROID_API_LEVEL = constants.ANDROID_SDK_VERSION
|
| SDK_BASE_URL = 'http://dl.google.com/android/adt'
|
| SDK_ZIP = 'adt-bundle-linux-x86_64-20131030.zip'
|
|
|
| +# pylint: disable=C0301
|
| # Android x86 system image from the Intel website:
|
| # http://software.intel.com/en-us/articles/intel-eula-x86-android-4-2-jelly-bean-bin
|
| # These don't exist prior to Android-15.
|
| @@ -40,6 +41,7 @@ X86_IMG_URLS = {
|
| 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'}
|
| +#pylint: enable=C0301
|
|
|
| def CheckSDK():
|
| """Check if SDK is already installed.
|
|
|