AI 146943: Move JetCreator into tools/Jet/JetCreator. Add demo content and Logic templates in tools/Jet/

BUG=1793093

Automated import of CL 146943
This commit is contained in:
Xavier Ducrohet
2009-04-20 10:59:21 -07:00
committed by The Android Open Source Project
parent 0cb5e26dab
commit c6a9036940
2 changed files with 20 additions and 11 deletions

View File

@@ -129,24 +129,31 @@ function package() {
cp -v development/tools/draw9patch/etc/draw9patch.bat "$TOOLS"
cp -v development/tools/sdkmanager/app/etc/android.bat "$TOOLS"
# Put the JetCreator tools (not available in the linux SDK)
JETCREATOR="$TOOLS/JetCreator"
# Put the JetCreator tools, content and docs (not available in the linux SDK)
JET="$TOOLS/Jet"
JETCREATOR="$JET/JetCreator"
JETDEMOCONTENT="$JET/demo_content"
JETLOGICTEMPLATES="$JET/logic_templates"
JETDOC="$DEST/docs/JetCreator"
# need to rm these folders since a Mac SDK will have them and it would create a conflict
rm -rfv "$JETCREATOR"
rm -rfv "$JET"
rm -rfv "$JETDOC"
# now create fresh folders for JetCreator
mkdir "$JETCREATOR"
mkdir "$JET"
mkdir "$JETDOC"
cp -rv external/sonivox/jet_tools/JetCreator "$JETCREATOR"
cp -v prebuilt/windows/jetcreator/EASDLL.dll "$JETCREATOR"
cp -v external/sonivox/docs/JET_Authoring_Guidelines.html "$JETDOC"
cp -rv external/sonivox/docs/JET_Authoring_Guidelines_files/* docs/JetCreator/JET_Authoring_Guidelines_files
cp -v external/sonivox/docs/JET_Creator_User_Manual.html "$JETDOC"
cp -rv external/sonivox/docs/JET_Creator_User_Manual_files/* docs/JetCreator/JET_Creator_User_Manual_files
cp -v prebuilt/windows/jetcreator/EASDLL.dll "$JETCREATOR"
cp -v prebuilt/windows/jetcreator/EASDLL.dll "$JETCREATOR"
cp -rv external/sonivox/jet_tools/JetCreator_content "$JETDEMOCONTENT"
cp -rv external/sonivox/jet_tools/logic_templates "$JETLOGICTEMPLATES"
cp -v external/sonivox/docs/JET_Authoring_Guidelines.html "$JETDOC"/
cp -rv external/sonivox/docs/JET_Authoring_Guidelines_files "$JETDOC"/
cp -v external/sonivox/docs/JET_Creator_User_Manual.html "$JETDOC"/
cp -rv external/sonivox/docs/JET_Creator_User_Manual_files "$JETDOC"/
# Copy or move platform specific tools to the default platform.
cp -v dalvik/dx/etc/dx.bat "$PLATFORM_TOOLS"