forked from openkylin/platform_build
am bebb2b54: am 7b734fd8: Merge "Allow multiple asset directories in aapt" into klp-modular-dev
* commit 'bebb2b54cee7a0fbf9419f6cc8659a8b16a37bd0': Allow multiple asset directories in aapt
This commit is contained in:
commit
9cee77b370
|
@ -100,8 +100,14 @@ package_resource_overlays := $(strip \
|
|||
|
||||
LOCAL_RESOURCE_DIR := $(package_resource_overlays) $(LOCAL_RESOURCE_DIR)
|
||||
|
||||
all_assets := $(call find-subdir-assets,$(LOCAL_ASSET_DIR))
|
||||
all_assets := $(addprefix $(LOCAL_ASSET_DIR)/,$(patsubst assets/%,%,$(all_assets)))
|
||||
all_assets := $(strip \
|
||||
$(foreach dir, $(LOCAL_ASSET_DIR), \
|
||||
$(addprefix $(dir)/, \
|
||||
$(patsubst assets/%,%, \
|
||||
$(call find-subdir-assets, $(dir)) \
|
||||
) \
|
||||
) \
|
||||
))
|
||||
|
||||
all_resources := $(strip \
|
||||
$(foreach dir, $(LOCAL_RESOURCE_DIR), \
|
||||
|
|
Loading…
Reference in New Issue