Revert "Use checked in android_tools Android NDK."

This reverts commit 7c03095b7982407cc15bb7713ebeb715599a3125.

BUG=
TEST=

Review URL: https://chromiumcodereview.appspot.com/10824228

git-svn-id: http://src.chromium.org/svn/trunk/src/build@150715 4ff67af0-8c30-449e-8e8b-ad334ec8d88c
This commit is contained in:
ilevy@chromium.org 2012-08-09 03:57:07 +00:00
Родитель 3a80a9086b
Коммит dd098766b1
2 изменённых файлов: 15 добавлений и 3 удалений

Просмотреть файл

@ -34,6 +34,15 @@ function bb_parse_args {
done
}
# Setup environment for Android build. Do not set ANDROID_SDK_ROOT so that
# default version from $ROOT/src/third_party/android_tools/
# Called from bb_baseline_setup.
# Moved to top of file so it is easier to find.
function bb_setup_environment {
export ANDROID_NDK_ROOT=/usr/local/google/android-ndk-r7
}
# Function to force-green a bot.
function bb_force_bot_green_and_exit {
echo "@@@BUILD_STEP Bot forced green.@@@"
@ -70,6 +79,8 @@ function bb_baseline_setup {
return 1
fi
bb_setup_environment
for mandatory_directory in $(dirname "${ANDROID_SDK_ROOT}") \
$(dirname "${ANDROID_NDK_ROOT}") ; do
if [[ ! -d "${mandatory_directory}" ]]; then

Просмотреть файл

@ -146,10 +146,11 @@ common_gyp_vars() {
# > make
################################################################################
sdk_build_init() {
# If ANDROID_NDK_ROOT is set when envsetup is run, use the ndk pointed to by
# the environment variable. Otherwise, use the default ndk from the tree.
if [ ! -d "${ANDROID_NDK_ROOT}" ]; then
export ANDROID_NDK_ROOT="${CHROME_SRC}/third_party/android_tools/ndk/"
echo "ANDROID_NDK_ROOT must be set to the path of Android NDK." >& 2
echo "which could be installed by" >& 2
echo "<chromium_tree>/src/build/install-build-deps-android-sdk.sh" >& 2
return 1
fi
# If ANDROID_SDK_ROOT is set when envsetup is run, use the sdk pointed to by