• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/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
20