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

Side by Side Diff: build/android/prepare_library_for_apk

Issue 11606010: Reduce verbosity of Android builds. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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
1 #!/bin/bash 1 #!/bin/bash
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # Creates a stripped copy of a library for inclusion in an apk. 6 # Creates a stripped copy of a library for inclusion in an apk.
7 7
8 if [[ $# -ne 3 ]] 8 if [[ $# -ne 3 ]]
9 then 9 then
10 echo "Usage: prepare_library_for_apk android_strip path/to/library stripped/li brary/output/path" 10 echo "Usage: prepare_library_for_apk android_strip path/to/library stripped/li brary/output/path"
11 exit 1 11 exit 1
12 fi 12 fi
13 13
14 ANDROID_STRIP=$1 14 ANDROID_STRIP=$1
15 LIBRARY=$2 15 LIBRARY=$2
16 STRIPPED=$3 16 STRIPPED=$3
17 17
18 set -ex 18 set -e
19 $ANDROID_STRIP --strip-unneeded $LIBRARY -o $STRIPPED 19 $ANDROID_STRIP --strip-unneeded $LIBRARY -o $STRIPPED
OLDNEW
« no previous file with comments | « build/android/ant/sdk-targets.xml ('k') | build/apk_test.gypi » ('j') | build/apk_test.gypi » ('J')

Powered by Google App Engine
This is Rietveld 408576698