Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(75)

Unified Diff: build/install-build-deps-android-sdk.sh

Issue 10702162: add sd card when creating avd and wait for it ready before pushing data into it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix coding style Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/android/pylib/single_test_runner.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/install-build-deps-android-sdk.sh
diff --git a/build/install-build-deps-android-sdk.sh b/build/install-build-deps-android-sdk.sh
index 212352189603af0d3f76dd6a2da8accd9a072621..ced46cd3d24d7b97f47656afafeda392c0d6d06d 100755
--- a/build/install-build-deps-android-sdk.sh
+++ b/build/install-build-deps-android-sdk.sh
@@ -126,10 +126,10 @@ fi
# check whether current AVD has correct configuration and it takes almost no
# time to create a new one. Create one ARM AVD and one x86 AVD.
"${ANDROID_SDK_ROOT}/tools/android" --silent create avd --name avd_armeabi \
- --abi armeabi-v7a --target ${SDK_TARGET_ID} --force <<< "no"
+ --abi armeabi-v7a --target ${SDK_TARGET_ID} -c 64M --force <<< "no"
"${ANDROID_SDK_ROOT}/tools/android" --silent create avd --name avd_x86 \
- --abi x86 --target ${SDK_TARGET_ID} --force <<< "no"
+ --abi x86 --target ${SDK_TARGET_ID} -c 64M --force <<< "no"
# Install Android NDK if it doesn't exist.
if [[ ! -d "${ANDROID_NDK_ROOT}" ]]; then
« no previous file with comments | « build/android/pylib/single_test_runner.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698