55 lines
1.2 KiB
Bash
Executable File
55 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
# CD to the top android directory
|
|
D=`dirname "$0"`
|
|
cd "$D/../../../../"
|
|
|
|
# computes relative ".." paths from $1 to here (in /android)
|
|
function back() {
|
|
echo $1 | sed 's@[^/]*@..@g'
|
|
}
|
|
|
|
HOST=`uname`
|
|
if [ "${HOST:0:6}" == "CYGWIN" ]; then
|
|
# We can't use symlinks under Cygwin
|
|
function cpdir() { # $1=dest $2=source
|
|
rsync -avW --delete-after $2 $1
|
|
}
|
|
|
|
else
|
|
# For all other systems which support symlinks
|
|
function cpdir() { # $1=dest $2=source
|
|
ln -svf `back $1`/$2 $1
|
|
}
|
|
fi
|
|
|
|
BASE="development/tools/eclipse/plugins/com.android.ide.eclipse.tests"
|
|
DEST=$BASE
|
|
BACK=`back $DEST`
|
|
|
|
HOST=`uname`
|
|
if [ "$HOST" == "Linux" ]; then
|
|
ln -svf $BACK/out/host/linux-x86/framework/kxml2-2.3.0.jar "$DEST/"
|
|
|
|
elif [ "$HOST" == "Darwin" ]; then
|
|
ln -svf $BACK/out/host/darwin-x86/framework/kxml2-2.3.0.jar "$DEST/"
|
|
|
|
elif [ "${HOST:0:6}" == "CYGWIN" ]; then
|
|
|
|
if [ ! -f "$DEST/kxml2-2.3.0.jar" ]; then
|
|
cp -v "prebuilt/common/kxml2/kxml2-2.3.0.jar" "$DEST/"
|
|
chmod -v a+rx "$DEST"/*.jar
|
|
fi
|
|
|
|
else
|
|
echo "Unsupported platform ($HOST). Nothing done."
|
|
fi
|
|
|
|
# create link to ddmlib tests
|
|
DEST=$BASE/unittests/com/android
|
|
BACK=`back $DEST`
|
|
cpdir $DEST development/tools/ddms/libs/ddmlib/tests/src/com/android/ddmlib
|
|
|