blob: 0e7129f3425f67f418bdb2c5213334fab98f890e [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:
12 # The release state for AIDL.
13 # ABI difference between user and userdebug builds.
14 # Resource/SDK finalization.
15 AIDL_FROZEN_REL=true $m
16}
17
18finalize_main_step1_and_m
19