From e257b26059bacea5c42f8c6dbae20bfa4db31e4e Mon Sep 17 00:00:00 2001 From: Colin Cross Date: Tue, 2 Apr 2019 22:57:43 -0700 Subject: [PATCH] Export more config values to Soong Export more config values to Soong that will be use dto generate robolectric's build.prop. Bug: 122331577 Test: m checkbuild Change-Id: I1e9dd165772a071cf78927b3bf1e29e01290a42e --- core/soong_config.mk | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/core/soong_config.mk b/core/soong_config.mk index baba31ba48..0275de6ec9 100644 --- a/core/soong_config.mk +++ b/core/soong_config.mk @@ -33,6 +33,11 @@ $(call add_json_str, Platform_sdk_codename, $(PLATFORM_VERSION_CODE $(call add_json_bool, Platform_sdk_final, $(filter REL,$(PLATFORM_VERSION_CODENAME))) $(call add_json_csv, Platform_version_active_codenames, $(PLATFORM_VERSION_ALL_CODENAMES)) $(call add_json_csv, Platform_version_future_codenames, $(PLATFORM_VERSION_FUTURE_CODENAMES)) +$(call add_json_str, Platform_security_patch, $(PLATFORM_SECURITY_PATCH)) +$(call add_json_str, Platform_preview_sdk_version, $(PLATFORM_PREVIEW_SDK_VERSION)) +$(call add_json_str, Platform_base_os, $(PLATFORM_BASE_OS)) + +$(call add_json_str, Platform_min_supported_target_sdk_version, $(PLATFORM_MIN_SUPPORTED_TARGET_SDK_VERSION)) $(call add_json_bool, Allow_missing_dependencies, $(ALLOW_MISSING_DEPENDENCIES)) $(call add_json_bool, Unbundled_build, $(TARGET_BUILD_APPS))