From 66c7af81f3e2786c9fd3129ddbfacf8a23327ebc Mon Sep 17 00:00:00 2001 From: Justin Yun Date: Fri, 20 Dec 2019 19:17:38 +0900 Subject: [PATCH] Define PRODUCT_PRODUCT_VNDK_VERSION automatically PRODUCT_PRODUCT_VNDK_VERSION will be automatically set to true for the devices with PRODUCT_SHIPPING_API_LEVEL newer than 29. Bug: 146621746 Test: build with PRODUCT_SHIPPING_API_LEVEL set to 30 Change-Id: I78cd81d1d61e9089b163169bc495df8a880463da --- common/math.mk | 14 ++++++++++++-- core/config.mk | 26 ++++++++++++++++++++++---- 2 files changed, 34 insertions(+), 6 deletions(-) diff --git a/common/math.mk b/common/math.mk index ac3151e3c5..83f2218192 100644 --- a/common/math.mk +++ b/common/math.mk @@ -33,8 +33,8 @@ math-expect := math-expect-error := # Run the math tests with: -# make -f ${ANDROID_BUILD_TOP}/build/make/core/math.mk RUN_MATH_TESTS=true -# $(get_build_var CKATI) -f ${ANDROID_BUILD_TOP}//build/make/core/math.mk RUN_MATH_TESTS=true +# make -f ${ANDROID_BUILD_TOP}/build/make/common/math.mk RUN_MATH_TESTS=true +# $(get_build_var CKATI) -f ${ANDROID_BUILD_TOP}//build/make/common/math.mk RUN_MATH_TESTS=true ifdef RUN_MATH_TESTS MATH_TEST_FAILURE := MATH_TEST_ERROR := @@ -134,6 +134,10 @@ define math_gt_or_eq $(if $(filter $(1),$(call math_max,$(1),$(2))),true) endef +define math_gt +$(if $(call math_gt_or_eq,$(2),$(1)),,true) +endef + define math_lt $(if $(call math_gt_or_eq,$(1),$(2)),,true) endef @@ -141,6 +145,12 @@ endef $(call math-expect-true,(call math_gt_or_eq, 2, 1)) $(call math-expect-true,(call math_gt_or_eq, 1, 1)) $(call math-expect-false,(call math_gt_or_eq, 1, 2)) +$(call math-expect-true,(call math_gt, 4, 3)) +$(call math-expect-false,(call math_gt, 5, 5)) +$(call math-expect-false,(call math_gt, 6, 7)) +$(call math-expect-false,(call math_lt, 1, 0)) +$(call math-expect-false,(call math_lt, 8, 8)) +$(call math-expect-true,(call math_lt, 10, 11)) # $1 is the variable name to increment define inc_and_print diff --git a/core/config.mk b/core/config.mk index 1fe0f7f6ed..c5f54de972 100644 --- a/core/config.mk +++ b/core/config.mk @@ -710,19 +710,37 @@ ifneq ($(PRODUCT_USE_VNDK_OVERRIDE),) PRODUCT_USE_VNDK := $(PRODUCT_USE_VNDK_OVERRIDE) else ifeq ($(PRODUCT_SHIPPING_API_LEVEL),) # No shipping level defined -else ifeq ($(call math_gt_or_eq,27,$(PRODUCT_SHIPPING_API_LEVEL)),) +else ifeq ($(call math_gt,$(PRODUCT_SHIPPING_API_LEVEL),27),true) PRODUCT_USE_VNDK := $(PRODUCT_FULL_TREBLE) endif +# Define PRODUCT_PRODUCT_VNDK_VERSION if PRODUCT_USE_VNDK is true and +# PRODUCT_SHIPPING_API_LEVEL is greater than 29. +PRODUCT_USE_PRODUCT_VNDK := false ifeq ($(PRODUCT_USE_VNDK),true) + ifneq ($(PRODUCT_USE_PRODUCT_VNDK_OVERRIDE),) + PRODUCT_USE_PRODUCT_VNDK := $(PRODUCT_USE_PRODUCT_VNDK_OVERRIDE) + else ifeq ($(PRODUCT_SHIPPING_API_LEVEL),) + # No shipping level defined + else ifeq ($(call math_gt,$(PRODUCT_SHIPPING_API_LEVEL),29),true) + PRODUCT_USE_PRODUCT_VNDK := true + endif + ifndef BOARD_VNDK_VERSION BOARD_VNDK_VERSION := current endif + + ifeq ($(PRODUCT_USE_PRODUCT_VNDK),true) + ifndef PRODUCT_PRODUCT_VNDK_VERSION + PRODUCT_PRODUCT_VNDK_VERSION := current + endif + endif endif -$(KATI_obsolete_var PRODUCT_USE_VNDK_OVERRIDE,Use PRODUCT_USE_VNDK instead) -.KATI_READONLY := \ - PRODUCT_USE_VNDK +$(KATI_obsolete_var PRODUCT_USE_VNDK,Use BOARD_VNDK_VERSION instead) +$(KATI_obsolete_var PRODUCT_USE_VNDK_OVERRIDE,Use BOARD_VNDK_VERSION instead) +$(KATI_obsolete_var PRODUCT_USE_PRODUCT_VNDK,Use PRODUCT_PRODUCT_VNDK_VERSION instead) +$(KATI_obsolete_var PRODUCT_USE_PRODUCT_VNDK_OVERRIDE,Use PRODUCT_PRODUCT_VNDK_VERSION instead) # Set BOARD_SYSTEMSDK_VERSIONS to the latest SystemSDK version starting from P-launching # devices if unset.