diff options
Diffstat (limited to 'build/sdk.atree')
-rw-r--r-- | build/sdk.atree | 53 |
1 files changed, 35 insertions, 18 deletions
diff --git a/build/sdk.atree b/build/sdk.atree index 7d81761a1..e28249a9c 100644 --- a/build/sdk.atree +++ b/build/sdk.atree @@ -33,6 +33,7 @@ development/docs/SDK_RELEASE_NOTES RELEASE_NOTES.html # doc redirect frameworks/base/docs/docs-redirect.html documentation.html + ############################################################################## # Platform Tools Component ############################################################################## @@ -42,24 +43,36 @@ development/sdk/plat_tools_source.properties platform-tools/source.properties # host tools from out/host/$(HOST_OS)-$(HOST_ARCH)/ bin/adb strip platform-tools/adb -bin/aapt strip platform-tools/aapt -bin/aidl strip platform-tools/aidl bin/fastboot strip platform-tools/fastboot -bin/llvm-rs-cc strip platform-tools/llvm-rs-cc - -# dx -bin/dx platform-tools/dx -bin/dexdump platform-tools/dexdump -framework/dx.jar platform-tools/lib/dx.jar - -# Framework include for Renderscript -frameworks/rs/scriptc platform-tools/renderscript/include -external/clang/lib/Headers platform-tools/renderscript/clang-include -external/clang/LICENSE.TXT platform-tools/renderscript/clang-include/LICENSE.TXT # API database for tools such as lint development/sdk/api-versions.xml platform-tools/api/api-versions.xml + +############################################################################## +# Build Tools Component +############################################################################## +# Note that the build-tools sub-folder uses the platform-name as a placeholder +# at build-time. Packaging will later change that to the actual build-tools +# revision as specified in the source.properties. + +sdk/files/sdk_files_NOTICE.txt build-tools/${PLATFORM_NAME}/NOTICE.txt +development/sdk/build_tools_source.properties build-tools/${PLATFORM_NAME}/source.properties + +# build tools from out/host/$(HOST_OS)-$(HOST_ARCH)/ +bin/aapt strip build-tools/${PLATFORM_NAME}/aapt +bin/aidl strip build-tools/${PLATFORM_NAME}/aidl +# renderscript (cc + headers) +bin/llvm-rs-cc strip build-tools/${PLATFORM_NAME}/llvm-rs-cc +frameworks/rs/scriptc build-tools/${PLATFORM_NAME}/renderscript/include +external/clang/lib/Headers build-tools/${PLATFORM_NAME}/renderscript/clang-include +external/clang/LICENSE.TXT build-tools/${PLATFORM_NAME}/renderscript/clang-include/LICENSE.TXT +# dx +bin/dx build-tools/${PLATFORM_NAME}/dx +framework/dx.jar build-tools/${PLATFORM_NAME}/lib/dx.jar +bin/dexdump build-tools/${PLATFORM_NAME}/dexdump + + ############################################################################## # Platform Component ############################################################################## @@ -71,8 +84,8 @@ ${HOST_OUT}/development/sdk/platform_source.properties platforms/${PLATFORM_NAME sdk/sdk-build.prop platforms/${PLATFORM_NAME}/build.prop # the uper-jar file that apps link against. This is the public API -${OUT_DIR}/target/common/obj/PACKAGING/android_jar_intermediates/android.jar platforms/${PLATFORM_NAME}/android.jar -${OUT_DIR}/target/common/obj/JAVA_LIBRARIES/android_uiautomator_intermediates/javalib.jar platforms/${PLATFORM_NAME}/uiautomator.jar +${OUT_DIR}/target/common/obj/PACKAGING/android_jar_intermediates/android.jar platforms/${PLATFORM_NAME}/android.jar +${OUT_DIR}/target/common/obj/JAVA_LIBRARIES/android_uiautomator_intermediates/javalib.jar platforms/${PLATFORM_NAME}/uiautomator.jar # the aidl precompiled include obj/framework.aidl platforms/${PLATFORM_NAME}/framework.aidl @@ -90,7 +103,7 @@ development/tools/emulator/skins/WXGA800 platforms/${PLATFORM_NAME}/skins/ development/tools/emulator/skins/WXGA800-7in platforms/${PLATFORM_NAME}/skins/WXGA800-7in # Platform SDK properties -development/sdk/sdk.properties platforms/${PLATFORM_NAME}/sdk.properties +development/sdk/sdk.properties platforms/${PLATFORM_NAME}/sdk.properties # sdk.git Ant templates for project files development/tools/templates/AndroidManifest.template platforms/${PLATFORM_NAME}/templates/AndroidManifest.template @@ -122,6 +135,7 @@ sdk/files/sdk_files_NOTICE.txt platforms/${PLATFORM_NAME}/templates/NOTICE.txt sdk/files/sdk_files_NOTICE.txt platforms/${PLATFORM_NAME}/data/NOTICE.txt sdk/files/sdk_files_NOTICE.txt platforms/${PLATFORM_NAME}/skins/NOTICE.txt + ############################################################################## # System image Component ############################################################################## @@ -134,6 +148,7 @@ system/build.prop system-images/${PLATFORM_NAME}/${TARG # Note: the kernel image is handled by sdk-android-<abi>.atree now. + ############################################################################## # Docs Component ############################################################################## @@ -181,7 +196,7 @@ development/samples/MultiResolution samples/${PLATFORM_NAME}/MultiRes development/samples/NotePad samples/${PLATFORM_NAME}/NotePad development/samples/RandomMusicPlayer samples/${PLATFORM_NAME}/RandomMusicPlayer development/samples/SpellChecker/SampleSpellCheckerService samples/${PLATFORM_NAME}/SpellChecker/SampleSpellCheckerService -development/samples/SpellChecker/HelloSpellChecker samples/${PLATFORM_NAME}/SpellChecker/HelloSpellChecker +development/samples/SpellChecker/HelloSpellChecker samples/${PLATFORM_NAME}/SpellChecker/HelloSpellChecker development/samples/SampleSyncAdapter samples/${PLATFORM_NAME}/SampleSyncAdapter development/samples/SearchableDictionary samples/${PLATFORM_NAME}/SearchableDictionary development/samples/SipDemo samples/${PLATFORM_NAME}/SipDemo @@ -209,7 +224,7 @@ development/samples/XmlAdapters samples/${PLATFORM_NAME}/XmlAdapt development/samples/RenderScript/HelloCompute samples/${PLATFORM_NAME}/RenderScript/HelloCompute # NOTICE files are copied by build/core/Makefile from sdk.git -sdk/files/sdk_files_NOTICE.txt samples/${PLATFORM_NAME}/NOTICE.txt +sdk/files/sdk_files_NOTICE.txt samples/${PLATFORM_NAME}/NOTICE.txt ############################################################################## # Add-on Folder @@ -218,6 +233,7 @@ sdk/files/sdk_files_NOTICE.txt samples/${PLATFORM_NAME}/NOTICE.txt # empty add-on folder with just a readme copied from sdk.git sdk/files/README_add-ons.txt add-ons/README.txt + ############################################################################## # Extra Component: Support ############################################################################## @@ -270,3 +286,4 @@ development/samples/Support7Demos framework/layoutlib-tests.jar tests/libtests/layoutlib-tests.jar system/app/ConnectivityTest.apk tests/emulator-test-apps/ConnectivityTest.apk system/app/GpsLocationTest.apk tests/emulator-test-apps/GpsLocationTest.apk + |