1#############################################################################
2## Standard rules for installing runtime resouce overlay APKs.
3##
4## Set LOCAL_RRO_THEME to the theme name if the package should apply only to
5## a particular theme as set by ro.boot.vendor.overlay.theme system property.
6##
7## If LOCAL_RRO_THEME is not set, the package will apply always, independent
8## of themes.
9##
10#############################################################################
11
12LOCAL_IS_RUNTIME_RESOURCE_OVERLAY := true
13
14ifneq ($(LOCAL_SRC_FILES),)
15  $(error runtime resource overlay package should not contain sources)
16endif
17
18ifeq ($(LOCAL_RRO_THEME),)
19  LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR)/overlay
20else
21  LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR)/overlay/$(LOCAL_RRO_THEME)
22endif
23
24include $(BUILD_SYSTEM)/package.mk
25
26