Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9222bcb9 authored by Justin Yun's avatar Justin Yun
Browse files

Move vndk apex to the vendor partition for in-development builds

We may now install VNDK apex on vendor partition safely as product
modules no longer requires vndk libs.

Bug: 299867815
Bug: 307214977
Test: lunch cf_x86_64_phone-trunk_staging-userdebug; m
Change-Id: Ibc2391c326a392644e251d2938adedbdf8b23630
parent b81aa10e
Loading
Loading
Loading
Loading
+2 −3
Original line number Diff line number Diff line
@@ -7,7 +7,7 @@ INTERNAL_VNDK_LIB_LIST := $(SOONG_VNDK_LIBRARIES_FILE)
#####################################################################
# This is the up-to-date list of vndk libs.
LATEST_VNDK_LIB_LIST := $(LOCAL_PATH)/current.txt
UNFROZEN_VNDK :=
UNFROZEN_VNDK := true
ifeq (REL,$(PLATFORM_VERSION_CODENAME))
    # Use frozen vndk lib list only if "34 >= PLATFORM_VNDK_VERSION"
    ifeq ($(call math_gt_or_eq,34,$(PLATFORM_VNDK_VERSION)),true)
@@ -15,8 +15,7 @@ ifeq (REL,$(PLATFORM_VERSION_CODENAME))
        ifeq ($(wildcard $(LATEST_VNDK_LIB_LIST)),)
            $(error $(LATEST_VNDK_LIB_LIST) file not found. Please copy "$(LOCAL_PATH)/current.txt" to "$(LATEST_VNDK_LIB_LIST)" and commit a CL for release branch)
        endif
    else
        UNFROZEN_VNDK := true
        UNFROZEN_VNDK :=
    endif
endif