forked from openkylin/platform_build
Merge "Reland "Check system manifest against frozen data."" am: 3dd40ccebe
Original change: https://android-review.googlesource.com/c/platform/build/+/1467570 Change-Id: I7f122f851c160da7f4d3b97293d5a3c987786eba
This commit is contained in:
commit
c75703ca98
|
@ -3612,11 +3612,19 @@ endif
|
|||
check_vintf_system_deps := $(filter $(TARGET_OUT)/etc/vintf/%, $(check_vintf_common_srcs))
|
||||
ifneq ($(check_vintf_system_deps),)
|
||||
check_vintf_has_system := true
|
||||
|
||||
check_vintf_system_log := $(intermediates)/check_vintf_system_log
|
||||
check_vintf_all_deps += $(check_vintf_system_log)
|
||||
$(check_vintf_system_log): $(HOST_OUT_EXECUTABLES)/checkvintf $(check_vintf_system_deps)
|
||||
@( $< --check-one --dirmap /system:$(TARGET_OUT) > $@ 2>&1 ) || ( cat $@ && exit 1 )
|
||||
check_vintf_system_log :=
|
||||
|
||||
vintffm_log := $(intermediates)/vintffm_log
|
||||
check_vintf_all_deps += $(vintffm_log)
|
||||
$(vintffm_log): $(HOST_OUT_EXECUTABLES)/vintffm $(check_vintf_system_deps)
|
||||
@( $< --check --dirmap /system:$(TARGET_OUT) \
|
||||
$(VINTF_FRAMEWORK_MANIFEST_FROZEN_DIR) > $@ 2>&1 ) || ( cat $@ && exit 1 )
|
||||
|
||||
endif # check_vintf_system_deps
|
||||
check_vintf_system_deps :=
|
||||
|
||||
|
|
Loading…
Reference in New Issue