2016-10-19 12:42:51 +02:00
|
|
|
|
#############################################################################
|
2016-10-03 10:56:16 +02:00
|
|
|
|
## Standard rules for installing runtime resouce overlay APKs.
|
|
|
|
|
##
|
2016-10-19 12:42:51 +02:00
|
|
|
|
## Set LOCAL_RRO_THEME to the theme name if the package should apply only to
|
|
|
|
|
## a particular theme as set by ro.boot.vendor.overlay.theme system property.
|
2016-10-03 10:56:16 +02:00
|
|
|
|
##
|
2016-10-19 12:42:51 +02:00
|
|
|
|
## If LOCAL_RRO_THEME is not set, the package will apply always, independent
|
|
|
|
|
## of themes.
|
|
|
|
|
##
|
|
|
|
|
#############################################################################
|
2016-10-03 10:56:16 +02:00
|
|
|
|
|
|
|
|
|
LOCAL_IS_RUNTIME_RESOURCE_OVERLAY := true
|
|
|
|
|
|
|
|
|
|
ifneq ($(LOCAL_SRC_FILES),)
|
|
|
|
|
$(error runtime resource overlay package should not contain sources)
|
|
|
|
|
endif
|
|
|
|
|
|
2018-11-26 23:32:40 +01:00
|
|
|
|
partition :=
|
2019-04-03 03:10:37 +02:00
|
|
|
|
ifeq ($(strip $(LOCAL_ODM_MODULE)),true)
|
2018-11-26 23:32:40 +01:00
|
|
|
|
partition := $(TARGET_OUT_ODM)
|
2019-04-03 03:10:37 +02:00
|
|
|
|
else ifeq ($(strip $(LOCAL_VENDOR_MODULE)),true)
|
2019-02-06 12:54:40 +01:00
|
|
|
|
partition := $(TARGET_OUT_VENDOR)
|
2019-06-25 08:58:13 +02:00
|
|
|
|
else ifeq ($(strip $(LOCAL_SYSTEM_EXT_MODULE)),true)
|
|
|
|
|
partition := $(TARGET_OUT_SYSTEM_EXT)
|
2018-11-26 23:32:40 +01:00
|
|
|
|
else
|
2019-02-06 12:54:40 +01:00
|
|
|
|
partition := $(TARGET_OUT_PRODUCT)
|
2018-11-26 23:32:40 +01:00
|
|
|
|
endif
|
|
|
|
|
|
2017-03-31 09:33:45 +02:00
|
|
|
|
ifeq ($(LOCAL_RRO_THEME),)
|
2018-11-26 23:32:40 +01:00
|
|
|
|
LOCAL_MODULE_PATH := $(partition)/overlay
|
2016-10-03 10:56:16 +02:00
|
|
|
|
else
|
2018-11-26 23:32:40 +01:00
|
|
|
|
LOCAL_MODULE_PATH := $(partition)/overlay/$(LOCAL_RRO_THEME)
|
2016-10-03 10:56:16 +02:00
|
|
|
|
endif
|
|
|
|
|
|
2019-12-17 21:19:15 +01:00
|
|
|
|
# Do not remove resources without default values nor dedupe resource
|
|
|
|
|
# configurations with the same value
|
|
|
|
|
LOCAL_AAPT_FLAGS += \
|
|
|
|
|
--no-resource-deduping \
|
|
|
|
|
--no-resource-removal
|
|
|
|
|
|
2018-11-26 23:32:40 +01:00
|
|
|
|
partition :=
|
2016-10-03 10:56:16 +02:00
|
|
|
|
|
2018-11-26 23:32:40 +01:00
|
|
|
|
include $(BUILD_SYSTEM)/package.mk
|