That variable is used to ensure all VINTF interfaces are frozen and is needed for vFRC/VINTF finalization is step-0. Since SDK finalization (step-1 and step-2) are done at a different time, they shouldn't care about unfrozen VINTF interfaces. Ignore-AOSP-First: b/304316873#comment10 Test: na Bug: 333039895 Change-Id: Ica6807599d5b18078ecea96d939e147d4785749e
19 lines
439 B
Bash
Executable File
19 lines
439 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:
|
|
# ABI difference between user and userdebug builds.
|
|
# Resource/SDK finalization.
|
|
$m
|
|
}
|
|
|
|
finalize_main_step1_and_m
|
|
|