Merge "Delay eval to save memory use in create-suite-dependencies"

am: f05573eb91

Change-Id: Id156daa483e3b0c59de1d1f0a76a49a2b5367491
This commit is contained in:
Dan Willemsen 2018-04-09 19:44:54 -07:00 committed by android-build-merger
commit 239974e95a

View file

@ -3117,7 +3117,7 @@ endef
define create-suite-dependencies
$(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
$(eval COMPATIBILITY.$(suite).FILES := \
$(COMPATIBILITY.$(suite).FILES) $(foreach f,$(my_compat_dist_$(suite)),$(call word-colon,2,$(f))))) \
$$(COMPATIBILITY.$(suite).FILES) $$(foreach f,$$(my_compat_dist_$(suite)),$$(call word-colon,2,$$(f))))) \
$(eval $(my_all_targets) : $(call copy-many-files, \
$(sort $(foreach suite,$(LOCAL_COMPATIBILITY_SUITE),$(my_compat_dist_$(suite))))))
endef