1#!/bin/bash 2 3set -ex 4 5function finalize_locally() { 6 local top="$(dirname "$0")"/../../../.. 7 source $top/build/make/tools/finalization/environment.sh 8 9 # default target to modify tree and build SDK 10 local m="$top/build/soong/soong_ui.bash --make-mode TARGET_PRODUCT=aosp_arm64 TARGET_RELEASE=fina_1 TARGET_BUILD_VARIANT=userdebug DIST_DIR=out/dist" 11 12 # adb keys 13 # The keys are already generated for Android 15. Keeping the command (commented out) for future reference. 14 # $m adb 15 # LOGNAME=android-eng HOSTNAME=google.com "$top/out/host/linux-x86/bin/adb" keygen "$top/vendor/google/security/adb/${FINAL_PLATFORM_VERSION}.adb_key" 16 17 # Build Platform SDKs. 18 $top/build/soong/soong_ui.bash --make-mode TARGET_PRODUCT=sdk TARGET_RELEASE=fina_1 TARGET_BUILD_VARIANT=userdebug sdk dist sdk_repo DIST_DIR=out/dist 19 20 # Build Modules SDKs. 21 TARGET_RELEASE=fina_1 TARGET_BUILD_VARIANT=userdebug UNBUNDLED_BUILD_SDKS_FROM_SOURCE=true DIST_DIR=out/dist "$top/vendor/google/build/mainline_modules_sdks.sh" --build-release=next 22 23 # Update prebuilts. 24 "$top/prebuilts/build-tools/path/linux-x86/python3" -W ignore::DeprecationWarning "$top/prebuilts/sdk/update_prebuilts.py" --local_mode -f ${FINAL_PLATFORM_SDK_VERSION} -e ${FINAL_MAINLINE_EXTENSION} --bug 1 1 25} 26 27finalize_locally 28