Merge "Skip VNDK variant check on coverage builds."

This commit is contained in:
Oliver Nguyen 2020-03-04 23:55:32 +00:00 committed by Gerrit Code Review
commit 791a8b5128
1 changed files with 3 additions and 1 deletions

View File

@ -112,7 +112,9 @@ endif
my_check_same_vndk_variants :=
ifeq ($(LOCAL_CHECK_SAME_VNDK_VARIANTS),true)
ifeq ($(filter hwaddress address, $(SANITIZE_TARGET)),)
my_check_same_vndk_variants := true
ifneq ($(CLANG_COVERAGE),true)
my_check_same_vndk_variants := true
endif
endif
endif