platform_build/tools/finalization/build-step-1-and-m.sh
Alex Buynytskyy bdcef7bfb8 Refresh the latest script versions + preparation for local mode.
Bug: 260755259
Test: local run
Change-Id: I45d3651bd4b837e1338535f98d7256ca9b47e089
2023-02-21 04:56:37 +00:00

19 lines
496 B
Bash
Executable file

#!/bin/bash
set -ex
function finalize_main_step1_and_m() {
local top="$(dirname "$0")"/../../../..
source $top/build/make/tools/finalization/build-step-1.sh
local m="$top/build/soong/soong_ui.bash --make-mode TARGET_PRODUCT=aosp_arm64 TARGET_BUILD_VARIANT=userdebug"
# This command tests:
# The release state for AIDL.
# ABI difference between user and userdebug builds.
# Resource/SDK finalization.
AIDL_FROZEN_REL=true $m
}
finalize_main_step1_and_m