Merge "Skip VNDK variant check on coverage builds." am: 791a8b5128

Change-Id: I506aac7d8dfe868ac123d7b68628e5e67864998e
This commit is contained in:
Automerger Merge Worker 2020-03-05 00:04:48 +00:00
commit a78856cee6
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