From 9848be3581345ec4e8ca03838cbf0b8af3ed3b0a Mon Sep 17 00:00:00 2001 From: Jiyong Park Date: Mon, 18 Dec 2017 10:34:26 +0900 Subject: [PATCH] TARGET_COPY_OUT_[ODM|OEM] are exported to soong The two make vars are exported to soong as OdmPath and OemPath. Bug: 68187740 Test: out/soong/soong.variables has OdmPath and OemPath each of which points to 'odm' and 'oem'. Change-Id: Ia283e4eb4aacc61b5b3c46e9001ea924566ea898 --- core/soong_config.mk | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/soong_config.mk b/core/soong_config.mk index 11ca473f1..bbad4c820 100644 --- a/core/soong_config.mk +++ b/core/soong_config.mk @@ -122,6 +122,8 @@ $(call add_json_bool, Enforce_vintf_manifest, $(filter true,$(PRODUCT $(call add_json_bool, Uml, $(filter true,$(TARGET_USER_MODE_LINUX))) $(call add_json_str, VendorPath, $(TARGET_COPY_OUT_VENDOR)) +$(call add_json_str, OdmPath, $(TARGET_COPY_OUT_ODM)) +$(call add_json_str, OemPath, $(TARGET_COPY_OUT_OEM)) $(call add_json_bool, MinimizeJavaDebugInfo, $(filter true,$(PRODUCT_MINIMIZE_JAVA_DEBUG_INFO))) $(call add_json_bool, UseGoma, $(filter-out false,$(USE_GOMA)))