github.com/westcoastroms/westcoastroms-build@v0.0.0-20190928114312-2350e5a73030/build/make/core/build_rro_package.mk (about) 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 12 LOCAL_IS_RUNTIME_RESOURCE_OVERLAY := true 13 14 ifneq ($(LOCAL_SRC_FILES),) 15 $(error runtime resource overlay package should not contain sources) 16 endif 17 18 ifeq ($(LOCAL_RRO_THEME),) 19 LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR)/overlay 20 else 21 LOCAL_MODULE_PATH := $(TARGET_OUT_VENDOR)/overlay/$(LOCAL_RRO_THEME) 22 endif 23 24 include $(BUILD_SYSTEM)/package.mk 25