| Index: build/android/pylib/constants.py
|
| diff --git a/build/android/pylib/constants.py b/build/android/pylib/constants.py
|
| index d410335c6d5bc3a4d5c0e051360772b2a05dfc04..d3bf734bbb731f46c31282e86f6a8bd1287017c4 100644
|
| --- a/build/android/pylib/constants.py
|
| +++ b/build/android/pylib/constants.py
|
| @@ -126,10 +126,11 @@ DEVICE_PERF_OUTPUT_DIR = (
|
| SCREENSHOTS_DIR = os.path.join(DIR_SOURCE_ROOT, 'out_screenshots')
|
|
|
| ANDROID_SDK_VERSION = 19
|
| +ANDROID_SDK_BUILD_TOOLS_VERSION = '19.0.0'
|
| ANDROID_SDK_ROOT = os.path.join(DIR_SOURCE_ROOT,
|
| 'third_party/android_tools/sdk')
|
| ANDROID_SDK_TOOLS = os.path.join(ANDROID_SDK_ROOT,
|
| - 'build-tools/%d.0.0' % ANDROID_SDK_VERSION)
|
| + 'build-tools', ANDROID_SDK_BUILD_TOOLS_VERSION)
|
| ANDROID_NDK_ROOT = os.path.join(DIR_SOURCE_ROOT,
|
| 'third_party/android_tools/ndk')
|
|
|
|
|