forked from openkylin/platform_build
Remove android.test.base from bootclasspath
Default to exclude android.test.base from the bootclasspath unless the REMOVE_ATB_FROM_BCP flag is set to false. Bug: 73711752 Test: make droid, flash, atest -p cts/tests/signature/ Change-Id: Iabcda707ff0f0b4ec7cade1125938a2759af8f76
This commit is contained in:
parent
6b529750c5
commit
fad04b7591
|
@ -329,7 +329,8 @@ PRODUCT_COPY_FILES += \
|
|||
|
||||
# Add the compatibility library that is needed when android.test.base
|
||||
# is removed from the bootclasspath.
|
||||
ifeq ($(REMOVE_ATB_FROM_BCP),true)
|
||||
# Default to excluding android.test.base from the bootclasspath.
|
||||
ifneq ($(REMOVE_ATB_FROM_BCP),false)
|
||||
PRODUCT_PACKAGES += framework-atb-backward-compatibility
|
||||
PRODUCT_BOOT_JARS += framework-atb-backward-compatibility
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue