From 22c5f08685db140dd6738b996e122a9f99775ca0 Mon Sep 17 00:00:00 2001 From: "tedchoc@chromium.org" Date: Fri, 7 Sep 2012 05:43:10 +0000 Subject: Add WebView implementation for CookieManager. Additional details of the requirements can be found from the Android SDK. http://developer.android.com/reference/android/webkit/CookieManager.html BUG= TEST=make forwarder android_webview_apk android_webview_test_apk Review URL: https://chromiumcodereview.appspot.com/10913074 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@155331 0039d316-1c4b-4281-b951-d872f2087c98 --- android_webview/build/install_binary | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'android_webview/build') diff --git a/android_webview/build/install_binary b/android_webview/build/install_binary index 24aaa83..ad63e0d 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 -- cgit v1.1