Bug 1503455 - Part 2: Remove compile SDK setting from configure. r=nalexander

Post bug 1498406, this seems to be unused and doesn't affect anything.

Differential Revision: https://phabricator.services.mozilla.com/D16420

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Jan Henning 2019-01-28 18:31:57 +00:00
parent f04abdeceb
commit efeb6ace63
2 changed files with 5 additions and 6 deletions

View File

@ -91,9 +91,8 @@ AC_SUBST_LIST([STLPORT_LIBS])
dnl Configure an Android SDK.
dnl Arg 1: compile SDK version, like 23.
dnl Arg 2: target SDK version, like 23.
dnl Arg 3: list of build-tools versions, like "23.0.3 23.0.1".
dnl Arg 1: target SDK version, like 23.
dnl Arg 2: list of build-tools versions, like "23.0.3 23.0.1".
AC_DEFUN([MOZ_ANDROID_SDK],
[
@ -117,11 +116,11 @@ case "$target" in
AC_MSG_ERROR([Including platforms/android-* in --with-android-sdk arguments is deprecated. Use --with-android-sdk=$android_sdk_root.])
fi
android_target_sdk=$2
android_target_sdk=$1
AC_MSG_CHECKING([for Android build-tools])
android_build_tools_base="$android_sdk_root"/build-tools
for version in $3; do
for version in $2; do
android_build_tools="$android_build_tools_base"/$version
if test -d "$android_build_tools" -a -f "$android_build_tools/zipalign"; then
AC_MSG_RESULT([$android_build_tools])

View File

@ -1835,7 +1835,7 @@ dnl ========================================================
case "$MOZ_BUILD_APP" in
mobile/android)
MOZ_ANDROID_SDK(26, 26, 27.0.3)
MOZ_ANDROID_SDK(26, 27.0.3)
;;
esac