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

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

Issue 9837108: Require Apache Ant 1.8 for Android builds (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/bin/bash -e 1 #!/bin/bash -e
2 2
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 5 # found in the LICENSE file.
6 6
7 # Script to install everything needed to build chromium on android that 7 # Script to install everything needed to build chromium on android that
8 # requires sudo privileges. 8 # requires sudo privileges.
9 # See http://code.google.com/p/chromium/wiki/AndroidBuildInstructions 9 # See http://code.google.com/p/chromium/wiki/AndroidBuildInstructions
10 10
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
63 if grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out \ 63 if grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out \
64 >& /dev/null 64 >& /dev/null
65 then 65 then
66 # If there are non-javaplugin.so errors, treat as errors and exit 66 # If there are non-javaplugin.so errors, treat as errors and exit
67 echo 'ERRORS: Failed to update alternatives for java-6-sun:' 67 echo 'ERRORS: Failed to update alternatives for java-6-sun:'
68 grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out 68 grep -v 'javaplugin.so' "${TEMPDIR}"/update-java-alternatives.out
69 exit 1 69 exit 1
70 fi 70 fi
71 fi 71 fi
72 72
73 # Install ant 73 # Install ant 1.8 (default is 1.7).
74 sudo apt-get install ant 74 sudo apt-get install ant1.8
75 75
76 echo "install-build-deps-android.sh complete." 76 echo "install-build-deps-android.sh complete."
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698