Martin Stjernholm | 691503e | 2020-05-06 22:03:26 +0100 | [diff] [blame] | 1 | #!/bin/bash -e |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 2 | |
| 3 | # Non exhaustive list of modules where we want prebuilts. More can be added as |
| 4 | # needed. |
| 5 | MAINLINE_MODULES=( |
Martin Stjernholm | 7f51107 | 2020-10-12 15:10:36 +0100 | [diff] [blame] | 6 | com.android.art |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 7 | com.android.art.debug |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 8 | com.android.art.testing |
| 9 | com.android.conscrypt |
Martin Stjernholm | 7f51107 | 2020-10-12 15:10:36 +0100 | [diff] [blame] | 10 | com.android.i18n |
Eric Holk | 277b0e7 | 2021-02-17 13:00:41 -0800 | [diff] [blame] | 11 | com.android.os.statsd |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 12 | com.android.runtime |
| 13 | com.android.tzdata |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 14 | ) |
| 15 | |
| 16 | # List of SDKs and module exports we know of. |
| 17 | MODULES_SDK_AND_EXPORTS=( |
| 18 | art-module-sdk |
| 19 | art-module-test-exports |
Martin Stjernholm | 4c13f58 | 2020-11-11 12:49:03 +0000 | [diff] [blame] | 20 | conscrypt-module-host-exports |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 21 | conscrypt-module-sdk |
| 22 | conscrypt-module-test-exports |
Martin Stjernholm | 4c13f58 | 2020-11-11 12:49:03 +0000 | [diff] [blame] | 23 | i18n-module-host-exports |
Nicolas Geoffray | 7505c50 | 2020-06-18 15:33:18 +0100 | [diff] [blame] | 24 | i18n-module-sdk |
Martin Stjernholm | 4c13f58 | 2020-11-11 12:49:03 +0000 | [diff] [blame] | 25 | i18n-module-test-exports |
Nicolas Geoffray | 792ea73 | 2020-06-26 14:44:32 +0100 | [diff] [blame] | 26 | platform-mainline-sdk |
Nicolas Geoffray | b0df23f | 2020-08-05 15:56:09 +0100 | [diff] [blame] | 27 | platform-mainline-test-exports |
Martin Stjernholm | 4c13f58 | 2020-11-11 12:49:03 +0000 | [diff] [blame] | 28 | runtime-module-host-exports |
| 29 | runtime-module-sdk |
Eric Holk | 7529f06 | 2021-02-11 02:06:32 +0000 | [diff] [blame] | 30 | statsd-module-sdk |
Nicolas Geoffray | c1b1663 | 2021-01-11 09:45:57 +0000 | [diff] [blame] | 31 | tzdata-module-test-exports |
Nicolas Geoffray | 792ea73 | 2020-06-26 14:44:32 +0100 | [diff] [blame] | 32 | ) |
| 33 | |
| 34 | # List of libraries installed on the platform that are needed for ART chroot |
| 35 | # testing. |
| 36 | PLATFORM_LIBRARIES=( |
Martin Stjernholm | 4f0f3f0 | 2021-03-09 17:13:51 +0000 | [diff] [blame] | 37 | heapprofd_client_api |
Nicolas Geoffray | 792ea73 | 2020-06-26 14:44:32 +0100 | [diff] [blame] | 38 | libartpalette-system |
Martin Stjernholm | 4f0f3f0 | 2021-03-09 17:13:51 +0000 | [diff] [blame] | 39 | liblog |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 40 | ) |
| 41 | |
| 42 | # We want to create apex modules for all supported architectures. |
| 43 | PRODUCTS=( |
Martin Stjernholm | 691503e | 2020-05-06 22:03:26 +0100 | [diff] [blame] | 44 | aosp_arm |
| 45 | aosp_arm64 |
| 46 | aosp_x86 |
| 47 | aosp_x86_64 |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 48 | ) |
| 49 | |
| 50 | if [ ! -e "build/make/core/Makefile" ]; then |
Martin Stjernholm | 691503e | 2020-05-06 22:03:26 +0100 | [diff] [blame] | 51 | echo "$0 must be run from the top of the tree" |
| 52 | exit 1 |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 53 | fi |
| 54 | |
Martin Stjernholm | 691503e | 2020-05-06 22:03:26 +0100 | [diff] [blame] | 55 | echo_and_run() { |
| 56 | echo "$*" |
| 57 | "$@" |
| 58 | } |
| 59 | |
Nicolas Geoffray | f23054f | 2020-07-31 15:36:39 +0100 | [diff] [blame] | 60 | lib_dir() { |
| 61 | case $1 in |
| 62 | (aosp_arm|aosp_x86) echo "lib";; |
| 63 | (aosp_arm64|aosp_x86_64) echo "lib64";; |
| 64 | esac |
| 65 | } |
| 66 | |
Martin Stjernholm | bd396b6 | 2021-02-02 16:20:45 +0000 | [diff] [blame] | 67 | # Make sure this build builds from source, regardless of the default. |
| 68 | export SOONG_CONFIG_art_module_source_build=true |
| 69 | |
Samiul Islam | d365449 | 2021-06-02 15:23:37 +0100 | [diff] [blame] | 70 | # This script does not intend to handle compressed APEX |
| 71 | export OVERRIDE_PRODUCT_COMPRESSED_APEX=false |
| 72 | |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 73 | OUT_DIR=$(source build/envsetup.sh > /dev/null; TARGET_PRODUCT= get_build_var OUT_DIR) |
| 74 | DIST_DIR=$(source build/envsetup.sh > /dev/null; TARGET_PRODUCT= get_build_var DIST_DIR) |
| 75 | |
| 76 | for product in "${PRODUCTS[@]}"; do |
Martin Stjernholm | 691503e | 2020-05-06 22:03:26 +0100 | [diff] [blame] | 77 | echo_and_run build/soong/soong_ui.bash --make-mode $@ \ |
| 78 | TARGET_PRODUCT=${product} \ |
Nicolas Geoffray | 792ea73 | 2020-06-26 14:44:32 +0100 | [diff] [blame] | 79 | ${MAINLINE_MODULES[@]} \ |
| 80 | ${PLATFORM_LIBRARIES[@]} |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 81 | |
Martin Stjernholm | 691503e | 2020-05-06 22:03:26 +0100 | [diff] [blame] | 82 | PRODUCT_OUT=$(source build/envsetup.sh > /dev/null; TARGET_PRODUCT=${product} get_build_var PRODUCT_OUT) |
| 83 | TARGET_ARCH=$(source build/envsetup.sh > /dev/null; TARGET_PRODUCT=${product} get_build_var TARGET_ARCH) |
| 84 | rm -rf ${DIST_DIR}/${TARGET_ARCH}/ |
| 85 | mkdir -p ${DIST_DIR}/${TARGET_ARCH}/ |
| 86 | for module in "${MAINLINE_MODULES[@]}"; do |
| 87 | echo_and_run cp ${PWD}/${PRODUCT_OUT}/system/apex/${module}.apex ${DIST_DIR}/${TARGET_ARCH}/ |
| 88 | done |
Nicolas Geoffray | 792ea73 | 2020-06-26 14:44:32 +0100 | [diff] [blame] | 89 | for library in "${PLATFORM_LIBRARIES[@]}"; do |
Nicolas Geoffray | f23054f | 2020-07-31 15:36:39 +0100 | [diff] [blame] | 90 | libdir=$(lib_dir $product) |
| 91 | echo_and_run cp ${PWD}/${PRODUCT_OUT}/system/${libdir}/${library}.so ${DIST_DIR}/${TARGET_ARCH}/ |
Nicolas Geoffray | 792ea73 | 2020-06-26 14:44:32 +0100 | [diff] [blame] | 92 | done |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 93 | done |
| 94 | |
Martin Stjernholm | 040e044 | 2021-06-07 23:18:56 +0100 | [diff] [blame] | 95 | # We use force building LLVM components flag (even though we actually don't |
| 96 | # compile them) because we don't have bionic host prebuilts |
| 97 | # for them. |
| 98 | export FORCE_BUILD_LLVM_COMPONENTS=true |
| 99 | |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 100 | # Create multi-archs SDKs in a different out directory. The multi-arch script |
Colin Cross | 34d60c9 | 2021-10-28 16:19:40 -0700 | [diff] [blame] | 101 | # uses Soong in --soong-only mode which cannot use the same directory as normal |
Martin Stjernholm | 691503e | 2020-05-06 22:03:26 +0100 | [diff] [blame] | 102 | # mode with make. |
| 103 | export OUT_DIR=${OUT_DIR}/aml |
Martin Stjernholm | 040e044 | 2021-06-07 23:18:56 +0100 | [diff] [blame] | 104 | echo_and_run build/soong/scripts/build-aml-prebuilts.sh \ |
| 105 | TARGET_PRODUCT=mainline_sdk ${MODULES_SDK_AND_EXPORTS[@]} |
Nicolas Geoffray | 90bc3cd | 2020-02-28 09:04:25 +0000 | [diff] [blame] | 106 | |
| 107 | rm -rf ${DIST_DIR}/mainline-sdks |
Martin Stjernholm | 691503e | 2020-05-06 22:03:26 +0100 | [diff] [blame] | 108 | echo_and_run cp -R ${OUT_DIR}/soong/mainline-sdks ${DIST_DIR} |