Merge "Move CtsShim and CtsPrivShim APKs out of system."

This commit is contained in:
Dario Freni 2019-12-17 13:19:11 +00:00 committed by Android (Google) Code Review
commit c81d71ff67
3 changed files with 9 additions and 3 deletions

View File

@ -722,6 +722,13 @@ $(call add-clean-step, find $(SOONG_OUT_DIR)/.intermediates -type d -name "andro
# Remove 'media' command # Remove 'media' command
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/bin/media) $(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/bin/media)
# Remove CtsShim apks from system partition, since the have been moved inside
# the cts shim apex. Also remove the cts shim apex prebuilt since it has been
# removed in flattened apexs configurations.
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/priv-app/CtsShimPrivPrebuilt)
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/app/CtsShimPrebuilt)
$(call add-clean-step, rm -rf $(PRODUCT_OUT)/system/apex/com.android.apex.cts.shim.apex)
# ************************************************ # ************************************************
# NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST # NEWER CLEAN STEPS MUST BE AT THE END OF THE LIST
# ************************************************ # ************************************************

View File

@ -51,7 +51,7 @@ PRODUCT_PACKAGES += \
charger \ charger \
cmd \ cmd \
com.android.adbd \ com.android.adbd \
com.android.apex.cts.shim.v1_prebuilt \ com.android.apex.cts.shim.v1 \
com.android.conscrypt \ com.android.conscrypt \
com.android.cronet \ com.android.cronet \
com.android.i18n \ com.android.i18n \
@ -72,8 +72,6 @@ PRODUCT_PACKAGES += \
ContactsProvider \ ContactsProvider \
content \ content \
crash_dump \ crash_dump \
CtsShimPrebuilt \
CtsShimPrivPrebuilt \
debuggerd\ debuggerd\
device_config \ device_config \
dmctl \ dmctl \

View File

@ -17,6 +17,7 @@
# Inherit this when the target needs to support updating APEXes # Inherit this when the target needs to support updating APEXes
ifneq ($(OVERRIDE_TARGET_FLATTEN_APEX),true) ifneq ($(OVERRIDE_TARGET_FLATTEN_APEX),true)
PRODUCT_PACKAGES += com.android.apex.cts.shim.v1_prebuilt
PRODUCT_PROPERTY_OVERRIDES := ro.apex.updatable=true PRODUCT_PROPERTY_OVERRIDES := ro.apex.updatable=true
TARGET_FLATTEN_APEX := false TARGET_FLATTEN_APEX := false
endif endif