Update the Android NDK to r10c

Review URL: https://codereview.chromium.org/687603002
This commit is contained in:
djsollen 2014-10-28 06:53:08 -07:00 committed by Commit bot
parent eb06588dfc
commit a01a17b3f2

View File

@ -27,13 +27,13 @@ if [ -z "$SCRIPT_DIR" ]; then
fi
function default_toolchain() {
NDK_REV=${NDK_REV-10exp}
NDK_REV=${NDK_REV-10c}
ANDROID_ARCH=${ANDROID_ARCH-arm}
if [[ $ANDROID_ARCH == *64* ]]; then
API_LEVEL=L # Experimental Android L-Release system images
API_LEVEL=21 # Official Android 5.0 (Lollipop) system images
else
API_LEVEL=14 # Official Android 4.0 system images
API_LEVEL=14 # Official Android 4.0 system images
fi
TOOLCHAIN_DIR=${SCRIPT_DIR}/../toolchains