Alex Buynytskyy | bdcef7b | 2023-02-19 18:40:44 +0000 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | set -ex |
| 4 | |
| 5 | function finalize_main_step1_and_m() { |
| 6 | local top="$(dirname "$0")"/../../../.. |
| 7 | source $top/build/make/tools/finalization/build-step-1.sh |
| 8 | |
| 9 | local m="$top/build/soong/soong_ui.bash --make-mode TARGET_PRODUCT=aosp_arm64 TARGET_BUILD_VARIANT=userdebug" |
| 10 | |
| 11 | # This command tests: |
Alex Buynytskyy | bdcef7b | 2023-02-19 18:40:44 +0000 | [diff] [blame] | 12 | # ABI difference between user and userdebug builds. |
| 13 | # Resource/SDK finalization. |
Devin Moore | 920037c | 2024-04-05 15:32:38 +0000 | [diff] [blame] | 14 | $m |
Alex Buynytskyy | bdcef7b | 2023-02-19 18:40:44 +0000 | [diff] [blame] | 15 | } |
| 16 | |
| 17 | finalize_main_step1_and_m |
| 18 | |