blob: 842fb47a176f2c9a7fd2632a719a5bed83105f1d [file] [log] [blame]
Raphael0e4dd612010-04-16 17:37:25 -07001#!/bin/bash
2
Raphael Moll1fe58f32010-11-11 15:58:28 -08003# This script takes a Linux SDK, cleans it and injects the necessary Windows
4# binaries needed by the SDK. The script has 2 parts:
5# - development/tools/build/path_windows_sdk.sh to process the
6# platform-dependent folders and files.
7# - sdk/build/patch_windows_sdk.sh to process folder and files which
8# depend on the sdk.git repo. This file will be invoked by this one.
9#
10# Input arguments:
11# -q = Optional arg to make this silent. Must be given first.
12# $1 = Temporary SDK directory, that is the Linux SDK being patched into
13# a Windows one.
14# $2 = The out/host/windows directory, which contains the new Windows
15# binaries to use.
16# $3 = An optional replacement for $TOPDIR (inherited from the Android
17# build system), which is the top directory where Android is located.
18
Raphael0e4dd612010-04-16 17:37:25 -070019# Verbose by default. Use -q to make more silent.
20V="-v"
Raphael Moll1fe58f32010-11-11 15:58:28 -080021Q=""
22if [[ "$1" == "-q" ]]; then
23 Q="$1"
24 V=""
25 shift
26fi
Raphael0e4dd612010-04-16 17:37:25 -070027
28TEMP_SDK_DIR=$1
29WIN_OUT_DIR=$2
30TOPDIR=${TOPDIR:-$3}
31
Raphael Moll1fe58f32010-11-11 15:58:28 -080032# The unix2dos is provided by the APT package "tofrodos". However
33# as for ubuntu lucid, the package renamed the command to "todos".
34UNIX2DOS=`which unix2dos`
35if [[ ! -x $UNIX2DOS ]]; then
36 UNIX2DOS=`which todos`
37fi
38
Raphael0e4dd612010-04-16 17:37:25 -070039PLATFORMS=( $TEMP_SDK_DIR/platforms/* )
40if [[ ${#PLATFORMS[@]} != 1 ]]; then
41 echo "Error: Too many platforms found in $TEMP_SDK_DIR"
42 echo "Only one was expected."
43 echo "Instead, found: ${PLATFORMS[@]}"
44 exit 1
45fi
Raphael0e4dd612010-04-16 17:37:25 -070046
47# Package USB Driver
48if [[ -n "$USB_DRIVER_HOOK" ]]; then
49 $USB_DRIVER_HOOK $V $TEMP_SDK_DIR $TOPDIR
50fi
51
52# Remove obsolete stuff from tools & platform
53TOOLS=$TEMP_SDK_DIR/tools
Raphael Mollff779c02010-08-05 13:30:39 -070054PLATFORM_TOOLS=$TEMP_SDK_DIR/platform-tools
Raphael0e4dd612010-04-16 17:37:25 -070055LIB=$TEMP_SDK_DIR/tools/lib
Raphael Moll1fe58f32010-11-11 15:58:28 -080056rm $V $TOOLS/{dmtracedump,etc1tool,hprof-conv,sqlite3,zipalign}
Raphael Mollb04a4f92010-10-23 22:11:37 -070057rm $V $TOOLS/proguard/bin/*.sh
Raphael0e4dd612010-04-16 17:37:25 -070058rm $V $LIB/*/swt.jar
Raphael32d597b2011-01-13 16:59:09 -080059rm $V $PLATFORM_TOOLS/{adb,aapt,aidl,dx,dexdump,llvm-rs-cc}
Raphael0e4dd612010-04-16 17:37:25 -070060
61# Copy all the new stuff in tools
62# Note: some tools are first copied here and then moved in platforms/<name>/tools/
63cp $V $WIN_OUT_DIR/host/windows-x86/bin/*.{exe,dll} $TOOLS/
Raphael32d597b2011-01-13 16:59:09 -080064# Remove some tools we don't want to take in the SDK
65rm $V -f $TOOLS/{fastboot.exe,rs-spec-gen.exe,tblgen.exe}
Raphael0e4dd612010-04-16 17:37:25 -070066mkdir -pv $LIB/x86
67cp $V ${TOPDIR}prebuilt/windows/swt/swt.jar $LIB/x86/
68mkdir -pv $LIB/x86_64
69cp $V ${TOPDIR}prebuilt/windows-x86_64/swt/swt.jar $LIB/x86_64/
70
Raphael0e4dd612010-04-16 17:37:25 -070071# Put the JetCreator tools, content and docs (not available in the linux SDK)
72JET=$TOOLS/Jet
73JETCREATOR=$JET/JetCreator
74JETDEMOCONTENT=$JET/demo_content
75JETLOGICTEMPLATES=$JET/logic_templates
76JETDOC=$TEMP_SDK_DIR/docs/JetCreator
77
78# need to rm these folders since a Mac SDK will have them and it might create a conflict
79rm -rf $V $JET
80rm -rf $V $JETDOC
81
82# now create fresh folders for JetCreator
83mkdir $V $JET
84mkdir $V $JETDOC
85
86cp -r $V ${TOPDIR}external/sonivox/jet_tools/JetCreator $JETCREATOR/
87cp -r $V ${TOPDIR}external/sonivox/jet_tools/JetCreator_content $JETDEMOCONTENT/
88cp -r $V ${TOPDIR}external/sonivox/jet_tools/logic_templates $JETLOGICTEMPLATES/
89chmod $V -R u+w $JETCREATOR # fixes an issue where Cygwin might copy the above as u+rx only
Raphael Moll2f613962010-09-27 16:20:07 -070090cp $V ${TOPDIR}prebuilt/windows/jetcreator/EASDLL.dll $JETCREATOR/
Raphael0e4dd612010-04-16 17:37:25 -070091
92cp $V ${TOPDIR}external/sonivox/docs/JET_Authoring_Guidelines.html $JETDOC/
93cp -r $V ${TOPDIR}external/sonivox/docs/JET_Authoring_Guidelines_files $JETDOC/
94cp $V ${TOPDIR}external/sonivox/docs/JET_Creator_User_Manual.html $JETDOC/
95cp -r $V ${TOPDIR}external/sonivox/docs/JET_Creator_User_Manual_files $JETDOC/
96
97# Copy or move platform specific tools to the default platform.
98cp $V ${TOPDIR}dalvik/dx/etc/dx.bat $PLATFORM_TOOLS/
Raphael32d597b2011-01-13 16:59:09 -080099mv $V $TOOLS/{adb.exe,aapt.exe,aidl.exe,dexdump.exe} $PLATFORM_TOOLS/
100mv $V $TOOLS/llvm-rs-cc.exe $PLATFORM_TOOLS/
101mv $V $TOOLS/Adb*.dll $PLATFORM_TOOLS/
Raphael0e4dd612010-04-16 17:37:25 -0700102
Raphael0e4dd612010-04-16 17:37:25 -0700103# Fix EOL chars to make window users happy - fix all files at the top level
104# as well as all batch files including those in platforms/<name>/tools/
Raphael Moll1fe58f32010-11-11 15:58:28 -0800105if [[ -x $UNIX2DOS ]]; then
106 find $TEMP_SDK_DIR -maxdepth 1 -name "*.[ht]*" -type f -print0 | xargs -0 $UNIX2DOS
107 find $TEMP_SDK_DIR -maxdepth 3 -name "*.bat" -type f -print0 | xargs -0 $UNIX2DOS
108fi
109
110# Execute the packaging script in the sdk directory
111${TOPDIR}sdk/build/patch_windows_sdk.sh $Q ${TEMP_SDK_DIR} ${WIN_OUT_DIR} ${TOPDIR}
Raphael0e4dd612010-04-16 17:37:25 -0700112
113# Just to make it easier on the build servers, we want fastboot and adb (and its DLLs)
114# next to the new SDK, so up one dir.
115for i in fastboot.exe adb.exe AdbWinApi.dll AdbWinUsbApi.dll; do
116 cp -f $V $WIN_OUT_DIR/host/windows-x86/bin/$i $TEMP_SDK_DIR/../$i
117done