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

Unified Diff: android_webview/build/install_binary

Issue 10913074: Add WebView implementation for CookieManager. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Rebased Created 8 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: android_webview/build/install_binary
diff --git a/android_webview/build/install_binary b/android_webview/build/install_binary
index 24aaa83119f4d2369d28dfd8a2865388e188ddf8..ad63e0dcf182de52463c57d1ed408fb4262da1f5 100755
--- a/android_webview/build/install_binary
+++ b/android_webview/build/install_binary
@@ -7,7 +7,7 @@
if [ "$3" = "" ]
then
- echo "Usage: install_binary path/to/binary path/to/target1 path/to/target2 path/to/symbols"
+ echo "Usage: install_binary path/to/binary path/to/target1 path/to/target2 path/to/symbols path/to/symbols2"
exit 1
fi
@@ -15,9 +15,12 @@ SOURCE=$1
TARGET=$2
TARGET2=$3
SYMBOLS=$4
+SYMBOLS2=$5
mkdir -p $(dirname $SYMBOLS)
cp $SOURCE $SYMBOLS
+# Create a hard link to avoid the additional copy to the secondary location.
+ln $SYMBOLS $SYMBOLS2
$STRIP --strip-unneeded $SOURCE -o $TARGET
cp $TARGET $TARGET2

Powered by Google App Engine
This is Rietveld 408576698