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.
7 # Script to install everything needed to build chromium on android, including
8 # items requiring sudo privileges.
9 # See http://code.google.com/p/chromium/wiki/AndroidBuildInstructions
11 # This script installs the sun-java6 packages (bin, jre and jdk). Sun requires
12 # a license agreement, so upon installation it will prompt the user. To get
13 # past the curses-based dialog press TAB <ret> TAB <ret> to agree.
16 if test "$1" = "--skip-sdk-packages"; then
17 skip_inst_sdk_packages
=1
20 skip_inst_sdk_packages
=0
23 if ! uname
-m |
egrep -q "i686|x86_64"; then
24 echo "Only x86 architectures are currently supported" >&2
28 # Install first the default Linux build deps.
29 "$(dirname "${BASH_SOURCE[0]}")/install-build-deps.sh" \
30 --no-syms --lib32 --no-arm --no-chromeos-fonts --no-nacl --no-prompt "${args}"
32 lsb_release
=$
(lsb_release
--codename --short)
34 # The temporary directory used to store output of update-java-alternatives
45 sudo apt-get
-f install
48 # This step differs depending on what Ubuntu release we are running
49 # on since the package names are different, and Sun's Java must
50 # be installed manually on late-model versions.
53 sudo apt-get
-y install lighttpd python-pexpect xvfb x11-utils
55 # Some binaries in the Android SDK require 32-bit libraries on the host.
56 # See https://developer.android.com/sdk/installing/index.html?pkg=tools
57 if [[ $lsb_release == "precise" ]]; then
58 sudo apt-get
-y install ia32-libs
60 sudo apt-get
-y install libncurses5
:i386 libstdc
++6:i386 zlib1g
:i386
63 sudo apt-get
-y install ant
65 # Install openjdk and openjre 7 stuff
66 sudo apt-get
-y install openjdk-7-jre openjdk-7-jdk
68 # Switch version of Java to openjdk 7.
69 # Some Java plugins (e.g. for firefox, mozilla) are not required to build, and
70 # thus are treated only as warnings. Any errors in updating java alternatives
71 # which are not '*-javaplugin.so' will cause errors and stop the script from
72 # completing successfully.
73 if ! sudo update-java-alternatives
-s java-1.7
.0-openjdk-amd64 \
74 >& "${TEMPDIR}"/update-java-alternatives.out
76 # Check that there are the expected javaplugin.so errors for the update
77 if grep 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out
>& \
80 # Print as warnings all the javaplugin.so errors
81 echo 'WARNING: java-6-sun has no alternatives for the following plugins:'
82 grep 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out
84 # Check if there are any errors that are not javaplugin.so
85 if grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out \
88 # If there are non-javaplugin.so errors, treat as errors and exit
89 echo 'ERRORS: Failed to update alternatives for java-6-sun:'
90 grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out
95 # Install SDK packages for android
96 if test "$skip_inst_sdk_packages" != 1; then
97 "$(dirname "${BASH_SOURCE[0]}")/install-android-sdks.sh"
100 DownloadFromBucket
() {
105 tmpfile
=${bin}_$
(/bin
/date +%s
)
106 if [ ! -x ${path}/${bin} ]; then
107 /b
/build
/scripts
/slave
/gsutil
cp ${gs_url} ${tmpfile}
108 md5
=$
(md5sum ${tmpfile} | cut
-d' ' -f 1)
109 if [[ $known_hash == $md5 ]]; then
110 /usr
/bin
/sudo
/bin
/mv ${tmpfile} ${path}/${bin}
111 /usr
/bin
/sudo
/bin
/chmod a
+x
${path}/${bin}
112 /usr
/bin
/sudo
/bin
/chown root
:root
${path}/${bin}
114 echo 'ERROR: Bad md5sum. Not installing' ${bin}
120 DownloadFromBucket apktool
/usr
/local
/bin \
121 'gs://chromium-apktool-bucket/apktool_1_5_2/apktool' \
122 89d099df9f8b12c043dc74f6f1368f36
124 DownloadFromBucket apktool.jar
/usr
/local
/bin \
125 'gs://chromium-apktool-bucket/apktool_1_5_2/apktool.jar' \
126 2d616934a8eaa37c4501868f05c62871
128 echo "install-build-deps-android.sh complete."