Change default for source_build config variable to true.

To reflect the new (temporary) true default in make.

Test: m
Bug: 172480615
Change-Id: I9a32578554650776c1d6b3920fa233c5613a05e3
This commit is contained in:
Martin Stjernholm 2020-12-15 02:55:55 +00:00
parent f7c3bbe433
commit ed623eaed8
1 changed files with 4 additions and 1 deletions

View File

@ -77,6 +77,9 @@ readonly SOONG_VARS=${SOONG_OUT}/soong.variables
# CrossHost: linux_bionic # CrossHost: linux_bionic
# CrossHostArch: x86_64 # CrossHostArch: x86_64
# - Enable Bionic on host as ART needs prebuilts for it. # - Enable Bionic on host as ART needs prebuilts for it.
# VendorVars.art_mdoule.source_build
# - TODO(b/172480615): Change default to false when platform uses ART Module
# prebuilts by default.
cat > ${SOONG_VARS}.new << EOF cat > ${SOONG_VARS}.new << EOF
{ {
"BuildNumberFile": "build_number.txt", "BuildNumberFile": "build_number.txt",
@ -98,7 +101,7 @@ cat > ${SOONG_VARS}.new << EOF
"VendorVars": { "VendorVars": {
"art_module": { "art_module": {
"source_build": "${ENABLE_ART_SOURCE_BUILD:-false}" "source_build": "${ENABLE_ART_SOURCE_BUILD:-true}"
} }
} }
} }