blob: 88bb3474d203c06ed36e0ce450313195e2f8fd0e [file] [log] [blame]
Alex Buynytskyybdcef7b2023-02-19 18:40:44 +00001#!/bin/bash
2
3set -ex
4
5function 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 Buynytskyybdcef7b2023-02-19 18:40:44 +000012 # ABI difference between user and userdebug builds.
13 # Resource/SDK finalization.
Devin Moore920037c2024-04-05 15:32:38 +000014 $m
Alex Buynytskyybdcef7b2023-02-19 18:40:44 +000015}
16
17finalize_main_step1_and_m
18