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

Side by Side Diff: build/install-build-deps-android-sdk.sh

Issue 10694048: Refactor and rename install-build-deps-android-sdk (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 #!/bin/bash -x
2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 set -e
8
9 # The script is to install Android SDK, NDK for build chromium on Android, and
10 # doesn't need to run as root.
11
12 # Using Android 4.0, API Level: 14 (ice cream sandwich). The SDK package is
13 # about 25M.
14 SDK_FILE_NAME="android-sdk_r20-linux.tgz"
15 SDK_DOWNLOAD_URL="http://dl.google.com/android/${SDK_FILE_NAME}"
16 SDK_MD5SUM="22a81cf1d4a951c62f71a8758290e9bb"
17
18 # Using "ANDROID_SDK_ROOT/tools/android list targets" to get the matching target
19 # id which will be loaded in simulator for testing.
20 # For example: the output of the listed the target could be below, and the
21 # 'android-13' is the SDK_TARGET_ID in this case.
22 # id: 9 or "android-13"
23 # Name: Android 3.2
24 # Type: Platform
25 # API level: 13
26 # Revision: 1
27 # Skins: WXGA (default)
28 SDK_TARGET_ID="android-15"
29
30 # Using NDK r7; The package is about 64M.
31 # *** DO NOT UPDATE THE NDK without updating the 64-bit linker changes ***
32 # *** at the end of this file ***
33 NDK_FILE_NAME="android-ndk-r7-linux-x86.tar.bz2"
34 NDK_DOWNLOAD_URL="http://dl.google.com/android/ndk/${NDK_FILE_NAME}"
35 NDK_MD5SUM="bf15e6b47bf50824c4b96849bf003ca3"
36
37 # The temporary directory used to store the downloaded file.
38 TEMPDIR=$(mktemp -d)
39 cleanup() {
40 local status=${?}
41 trap - EXIT
42 rm -rf "${TEMPDIR}"
43 exit ${status}
44 }
45 trap cleanup EXIT
46
47 ##########################################################
48 # Download and install a tgz package by wget and tar -xvf.
49 # The current directory is changed in this function.
50 # Arguments:
51 # local_file_name, the name of downloaded file.
52 # download_url, the url to download the package.
53 # md5, the package's md5 which could be found in download page.
54 # install_path, where the package should be installed.
55 # Returns:
56 # None
57 ##########################################################
58 install_dev_kit() {
59 local local_file_name="${1}"
60 local download_url="${2}"
61 local md5="${3}"
62 local install_path="${4}"
63
64 cd "${TEMPDIR}"
65 wget "${download_url}"
66
67 local computed_md5=$(md5sum "${local_file_name}" | cut -d' ' -f1)
68 if [[ "${computed_md5}" != "${md5}" ]]; then
69 echo "Downloaded ${local_file_name} has bad md5sum, which is expected" >& 2
70 echo "to be ${md5} but was ${computed_md5}" >& 2
71 exit 1
72 fi
73
74 echo "Install ${local_file_name}"
75 mv "${local_file_name}" "${install_path}"
76 cd "${install_path}"
77 tar -xf "${local_file_name}"
78 }
79
80 if [[ -z "${ANDROID_SDK_ROOT}" ]]; then
81 echo "Please set ANDROID_SDK_ROOT to where they should installed to." >& 2
82 echo "For example: /usr/local/android-sdk-linux_x86" >& 2
83 exit 1
84 fi
85
86 if [[ -z "${ANDROID_NDK_ROOT}" ]]; then
87 echo "Please set ANDROID_NDK_ROOT to where they should installed to." >& 2
88 echo "For example: /usr/local/android-ndk-r6b" >& 2
89 exit 1
90 fi
91
92 # Install Android SDK if it doesn't exist.
93 if [[ ! -d "${ANDROID_SDK_ROOT}" ]]; then
94 echo 'Install ANDROID SDK ...'
95 (install_dev_kit "${SDK_FILE_NAME}" "${SDK_DOWNLOAD_URL}" "${SDK_MD5SUM}" \
96 $(dirname "${ANDROID_SDK_ROOT}"))
97 fi
98
99
100 # Updates the SDK by installing the necessary components.
101 # From current configuration, all android platforms will be installed.
102 echo "Install platform, platform-tool and tool ..."
103
104 pushd "$ANDROID_SDK_ROOT"
105 if tools/android list sdk --extended | grep -q "^id.*$SDK_TARGET_ID"; then
106 # Updates the SDK to latest version firstly.
107 "tools/android" update sdk --no-ui \
108 --filter "platform-tool,tool,system-image,$SDK_TARGET_ID"
109
110 # Create a Android Virtual Device named 'buildbot' with default hardware
111 # configuration and override the existing one, since there is no easy way to
112 # check whether current AVD has correct configuration and it takes almost no
113 # time to create a new one. Create one ARM AVD and one x86 AVD.
114 "tools/android" --silent create avd --name buildbot \
115 --abi armeabi-v7a --target ${SDK_TARGET_ID} --force <<< "no"
116
117 "tools/android" --silent create avd --name buildbot-x86 \
118 --abi x86 --target ${SDK_TARGET_ID} --force <<< "no"
119 fi
120 popd
121
122 # Install Android NDK if it doesn't exist.
123 if [[ ! -d "${ANDROID_NDK_ROOT}" ]]; then
124 echo 'Install ANDROID NDK ...'
125 (install_dev_kit "${NDK_FILE_NAME}" "${NDK_DOWNLOAD_URL}" "${NDK_MD5SUM}" \
126 $(dirname "${ANDROID_NDK_ROOT}"))
127 fi
128
129 # Install the 64-bit linker if needed.
130 ROOT=$(cd "$(dirname $0)/.."; pwd)
131 LINKER_DIR_PREFIX="$ANDROID_NDK_ROOT/toolchains/\
132 arm-linux-androideabi-4.4.3/prebuilt/linux-x86"
133 LINKER_DIRNAME_1="$LINKER_DIR_PREFIX/bin"
134 LINKER_BASENAME_1=arm-linux-androideabi-ld
135 LINKER_DIRNAME_2="$LINKER_DIR_PREFIX/arm-linux-androideabi/bin"
136 LINKER_BASENAME_2=ld
137 NEW_LINKER=arm-linux-androideabi-ld.e4df3e0a5bb640ccfa2f30ee67fe9b3146b152d6
138
139 # $1: destination directory
140 # $2: destination binary
141 function replace_linker {
142 local linker_dirname=$1
143 local linker_basename=$2
144 if [[ -f "$ROOT/third_party/aosp/$NEW_LINKER" ]]; then
145 if [[ -d "$linker_dirname" ]]; then
146 if [[ ! -f "$linker_dirname/$NEW_LINKER" ]]; then
147 echo "Installing linker in $linker_dirname"
148 cp $ROOT/third_party/aosp/$NEW_LINKER "$linker_dirname/$NEW_LINKER"
149 mv "$linker_dirname/$linker_basename" \
150 "$linker_dirname/$linker_basename.orig"
151 ( cd "$linker_dirname" ; ln -s "$NEW_LINKER" "$linker_basename" )
152 fi
153 if [[ ! -f "$linker_dirname/$NEW_LINKER" ]]; then
154 echo "Could not copy linker"
155 exit 1
156 fi
157 fi
158 fi
159 }
160
161 replace_linker $LINKER_DIRNAME_1 $LINKER_BASENAME_1
162 replace_linker $LINKER_DIRNAME_2 $LINKER_BASENAME_2
OLDNEW
« build/install-android-sdk-ndk.sh ('K') | « build/install-android-sdk-ndk.sh ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698