| #!/bin/bash | |
| # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| # Creates a stripped copy of a library for inclusion in an apk. | |
| if [[ $# -ne 3 ]] | |
| then | |
| echo "Usage: prepare_library_for_apk android_strip path/to/library stripped/library/output/path" | |
| exit 1 | |
| fi | |
| ANDROID_STRIP=$1 | |
| LIBRARY=$2 | |
| STRIPPED=$3 | |
| set -ex | |
| $ANDROID_STRIP --strip-unneeded $LIBRARY -o $STRIPPED |