Remove unnecessary lunch output
Currently, running lunch writes multiple lines including less informative ones. This change removes unnecessary variables and enables the user to focus on more useful information when running the lunch command. Bug: 204196816 Test: m Change-Id: Ifbbe01abf03a1701158881febe5982489f96dc65
This commit is contained in:
parent
5480f9414a
commit
3690485a16
1 changed files with 7 additions and 8 deletions
|
@ -141,7 +141,6 @@ var BannerVars = []string{
|
|||
"PLATFORM_VERSION",
|
||||
"TARGET_PRODUCT",
|
||||
"TARGET_BUILD_VARIANT",
|
||||
"TARGET_BUILD_TYPE",
|
||||
"TARGET_BUILD_APPS",
|
||||
"TARGET_BUILD_UNBUNDLED",
|
||||
"TARGET_ARCH",
|
||||
|
@ -150,18 +149,11 @@ var BannerVars = []string{
|
|||
"TARGET_2ND_ARCH",
|
||||
"TARGET_2ND_ARCH_VARIANT",
|
||||
"TARGET_2ND_CPU_VARIANT",
|
||||
"HOST_ARCH",
|
||||
"HOST_2ND_ARCH",
|
||||
"HOST_OS",
|
||||
"HOST_OS_EXTRA",
|
||||
"HOST_CROSS_OS",
|
||||
"HOST_CROSS_ARCH",
|
||||
"HOST_CROSS_2ND_ARCH",
|
||||
"HOST_BUILD_TYPE",
|
||||
"BUILD_ID",
|
||||
"OUT_DIR",
|
||||
"AUX_OS_VARIANT_LIST",
|
||||
"PRODUCT_SOONG_NAMESPACES",
|
||||
"SOONG_SDK_SNAPSHOT_PREFER",
|
||||
"SOONG_SDK_SNAPSHOT_TARGET_BUILD_RELEASE",
|
||||
"SOONG_SDK_SNAPSHOT_USE_SOURCE_CONFIG_VAR",
|
||||
|
@ -236,6 +228,13 @@ func runMakeProductConfig(ctx Context, config Config) {
|
|||
|
||||
// Not used, but useful to be in the soong.log
|
||||
"BOARD_VNDK_VERSION",
|
||||
"TARGET_BUILD_TYPE",
|
||||
"HOST_ARCH",
|
||||
"HOST_2ND_ARCH",
|
||||
"HOST_CROSS_ARCH",
|
||||
"HOST_CROSS_2ND_ARCH",
|
||||
"HOST_BUILD_TYPE",
|
||||
"PRODUCT_SOONG_NAMESPACES",
|
||||
|
||||
"DEFAULT_WARNING_BUILD_MODULE_TYPES",
|
||||
"DEFAULT_ERROR_BUILD_MODULE_TYPES",
|
||||
|
|
Loading…
Reference in a new issue