| Index: android_webview/build/install_binary
|
| diff --git a/android_webview/build/install_binary b/android_webview/build/install_binary
|
| new file mode 100755
|
| index 0000000000000000000000000000000000000000..24aaa83119f4d2369d28dfd8a2865388e188ddf8
|
| --- /dev/null
|
| +++ b/android_webview/build/install_binary
|
| @@ -0,0 +1,23 @@
|
| +#!/bin/bash -x
|
| +# 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.
|
| +
|
| +# Copies a possibly stripped binary and a symbol file to installation dirs.
|
| +
|
| +if [ "$3" = "" ]
|
| +then
|
| + echo "Usage: install_binary path/to/binary path/to/target1 path/to/target2 path/to/symbols"
|
| + exit 1
|
| +fi
|
| +
|
| +SOURCE=$1
|
| +TARGET=$2
|
| +TARGET2=$3
|
| +SYMBOLS=$4
|
| +
|
| +mkdir -p $(dirname $SYMBOLS)
|
| +
|
| +cp $SOURCE $SYMBOLS
|
| +$STRIP --strip-unneeded $SOURCE -o $TARGET
|
| +cp $TARGET $TARGET2
|
|
|