Merge "Allow extending of the list of directories to be scanned for VSDK" am: 0f05976472

Original change: https://android-review.googlesource.com/c/platform/build/+/1603218

Change-Id: Ic91c308f8f4587a3fa0e61ae7f16c339cce8bd7b
This commit is contained in:
Justin DeMartino 2021-03-16 15:44:23 +00:00 committed by Automerger Merge Worker
commit 6f7c112592

View file

@ -158,6 +158,11 @@ $(foreach module,$(RECOVERY_SNAPSHOT_MODULES),\
$(call add_json_bool,$(module),true))
$(call end_json_map)
$(call add_json_list, VendorSnapshotDirsIncluded, $(VENDOR_SNAPSHOT_DIRS_INCLUDED))
$(call add_json_list, VendorSnapshotDirsExcluded, $(VENDOR_SNAPSHOT_DIRS_EXCLUDED))
$(call add_json_list, RecoverySnapshotDirsIncluded, $(RECOVERY_SNAPSHOT_DIRS_INCLUDED))
$(call add_json_list, RecoverySnapshotDirsExcluded, $(RECOVERY_SNAPSHOT_DIRS_EXCLUDED))
$(call add_json_bool, Treble_linker_namespaces, $(filter true,$(PRODUCT_TREBLE_LINKER_NAMESPACES)))
$(call add_json_bool, Enforce_vintf_manifest, $(filter true,$(PRODUCT_ENFORCE_VINTF_MANIFEST)))