blob: 17424b74fc56afb54639750cb7b79eedb18b11ac [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
Raphael7a508ae2011-02-01 12:48:48 -08008# depend on the sdk.git repo. This file is invoked by the makefile
9# at development/tools/build/windows_sdk.mk.
Raphael Moll1fe58f32010-11-11 15:58:28 -080010#
11# Input arguments:
12# -q = Optional arg to make this silent. Must be given first.
13# $1 = Temporary SDK directory, that is the Linux SDK being patched into
14# a Windows one.
15# $2 = The out/host/windows directory, which contains the new Windows
16# binaries to use.
17# $3 = An optional replacement for $TOPDIR (inherited from the Android
18# build system), which is the top directory where Android is located.
19
Raphael7a508ae2011-02-01 12:48:48 -080020set -e # any error stops the build
21
Raphael0e4dd612010-04-16 17:37:25 -070022# Verbose by default. Use -q to make more silent.
Raphael7a508ae2011-02-01 12:48:48 -080023V=""
Raphael Moll1fe58f32010-11-11 15:58:28 -080024Q=""
25if [[ "$1" == "-q" ]]; then
26 Q="$1"
Raphael Moll1fe58f32010-11-11 15:58:28 -080027 shift
Raphael7a508ae2011-02-01 12:48:48 -080028else
29 echo "Win SDK: $0 $*"
30 set -x # show bash commands; no need for V=-v
Raphael Moll1fe58f32010-11-11 15:58:28 -080031fi
Raphael0e4dd612010-04-16 17:37:25 -070032
33TEMP_SDK_DIR=$1
34WIN_OUT_DIR=$2
35TOPDIR=${TOPDIR:-$3}
36
Raphael Moll1fe58f32010-11-11 15:58:28 -080037# The unix2dos is provided by the APT package "tofrodos". However
Raphael7a508ae2011-02-01 12:48:48 -080038# as for ubuntu lucid, the package renamed the command to "todos".
39UNIX2DOS=$(which unix2dos || true)
Raphael Moll1fe58f32010-11-11 15:58:28 -080040if [[ ! -x $UNIX2DOS ]]; then
Raphael7a508ae2011-02-01 12:48:48 -080041 UNIX2DOS=$(which todos || true)
Raphael Moll1fe58f32010-11-11 15:58:28 -080042fi
43
Raphael0e4dd612010-04-16 17:37:25 -070044PLATFORMS=( $TEMP_SDK_DIR/platforms/* )
45if [[ ${#PLATFORMS[@]} != 1 ]]; then
46 echo "Error: Too many platforms found in $TEMP_SDK_DIR"
Raphael7a508ae2011-02-01 12:48:48 -080047 echo "Expected one. Instead, found: ${PLATFORMS[@]}"
Raphael0e4dd612010-04-16 17:37:25 -070048 exit 1
49fi
Raphael0e4dd612010-04-16 17:37:25 -070050
51# Package USB Driver
52if [[ -n "$USB_DRIVER_HOOK" ]]; then
53 $USB_DRIVER_HOOK $V $TEMP_SDK_DIR $TOPDIR
54fi
55
56# Remove obsolete stuff from tools & platform
57TOOLS=$TEMP_SDK_DIR/tools
Raphael Mollff779c02010-08-05 13:30:39 -070058PLATFORM_TOOLS=$TEMP_SDK_DIR/platform-tools
Raphael0e4dd612010-04-16 17:37:25 -070059LIB=$TEMP_SDK_DIR/tools/lib
Raphael Moll1fe58f32010-11-11 15:58:28 -080060rm $V $TOOLS/{dmtracedump,etc1tool,hprof-conv,sqlite3,zipalign}
Raphael0e4dd612010-04-16 17:37:25 -070061rm $V $LIB/*/swt.jar
Raphael32d597b2011-01-13 16:59:09 -080062rm $V $PLATFORM_TOOLS/{adb,aapt,aidl,dx,dexdump,llvm-rs-cc}
Raphael0e4dd612010-04-16 17:37:25 -070063
64# Copy all the new stuff in tools
65# Note: some tools are first copied here and then moved in platforms/<name>/tools/
66cp $V $WIN_OUT_DIR/host/windows-x86/bin/*.{exe,dll} $TOOLS/
Raphael32d597b2011-01-13 16:59:09 -080067# Remove some tools we don't want to take in the SDK
68rm $V -f $TOOLS/{fastboot.exe,rs-spec-gen.exe,tblgen.exe}
Raphael0e4dd612010-04-16 17:37:25 -070069mkdir -pv $LIB/x86
70cp $V ${TOPDIR}prebuilt/windows/swt/swt.jar $LIB/x86/
71mkdir -pv $LIB/x86_64
72cp $V ${TOPDIR}prebuilt/windows-x86_64/swt/swt.jar $LIB/x86_64/
73
Raphael0e4dd612010-04-16 17:37:25 -070074# Put the JetCreator tools, content and docs (not available in the linux SDK)
75JET=$TOOLS/Jet
76JETCREATOR=$JET/JetCreator
77JETDEMOCONTENT=$JET/demo_content
78JETLOGICTEMPLATES=$JET/logic_templates
79JETDOC=$TEMP_SDK_DIR/docs/JetCreator
80
81# need to rm these folders since a Mac SDK will have them and it might create a conflict
82rm -rf $V $JET
83rm -rf $V $JETDOC
84
85# now create fresh folders for JetCreator
86mkdir $V $JET
87mkdir $V $JETDOC
88
89cp -r $V ${TOPDIR}external/sonivox/jet_tools/JetCreator $JETCREATOR/
90cp -r $V ${TOPDIR}external/sonivox/jet_tools/JetCreator_content $JETDEMOCONTENT/
91cp -r $V ${TOPDIR}external/sonivox/jet_tools/logic_templates $JETLOGICTEMPLATES/
92chmod $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 -070093cp $V ${TOPDIR}prebuilt/windows/jetcreator/EASDLL.dll $JETCREATOR/
Raphael0e4dd612010-04-16 17:37:25 -070094
95cp $V ${TOPDIR}external/sonivox/docs/JET_Authoring_Guidelines.html $JETDOC/
96cp -r $V ${TOPDIR}external/sonivox/docs/JET_Authoring_Guidelines_files $JETDOC/
97cp $V ${TOPDIR}external/sonivox/docs/JET_Creator_User_Manual.html $JETDOC/
98cp -r $V ${TOPDIR}external/sonivox/docs/JET_Creator_User_Manual_files $JETDOC/
99
100# Copy or move platform specific tools to the default platform.
101cp $V ${TOPDIR}dalvik/dx/etc/dx.bat $PLATFORM_TOOLS/
Raphael32d597b2011-01-13 16:59:09 -0800102mv $V $TOOLS/{adb.exe,aapt.exe,aidl.exe,dexdump.exe} $PLATFORM_TOOLS/
103mv $V $TOOLS/llvm-rs-cc.exe $PLATFORM_TOOLS/
104mv $V $TOOLS/Adb*.dll $PLATFORM_TOOLS/
Raphael0e4dd612010-04-16 17:37:25 -0700105
Raphael0e4dd612010-04-16 17:37:25 -0700106# Fix EOL chars to make window users happy - fix all files at the top level
107# as well as all batch files including those in platforms/<name>/tools/
Raphael Moll1fe58f32010-11-11 15:58:28 -0800108if [[ -x $UNIX2DOS ]]; then
109 find $TEMP_SDK_DIR -maxdepth 1 -name "*.[ht]*" -type f -print0 | xargs -0 $UNIX2DOS
110 find $TEMP_SDK_DIR -maxdepth 3 -name "*.bat" -type f -print0 | xargs -0 $UNIX2DOS
111fi
112
Raphael7a508ae2011-02-01 12:48:48 -0800113# Just to make it easier on the build servers, we want fastboot and adb
114# (and its DLLs) next to the new SDK.
Raphael0e4dd612010-04-16 17:37:25 -0700115for 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
Raphael1adaa572011-01-27 13:26:44 -0800118