Merge "Don't check VNDK lib list for PDK builds"

This commit is contained in:
Treehugger Robot 2018-11-01 05:10:15 +00:00 committed by Gerrit Code Review
commit 1b4b378bf7
1 changed files with 4 additions and 0 deletions

View File

@ -42,6 +42,10 @@ check-vndk-list-timestamp := $(call intermediates-dir-for,PACKAGING,vndk)/check-
ifeq ($(TARGET_IS_64_BIT)|$(TARGET_2ND_ARCH),true|)
# TODO(b/110429754) remove this condition when we support 64-bit-only device
check-vndk-list: ;
else ifeq ($(TARGET_BUILD_PDK),true)
# b/118634643: don't check VNDK lib list when building PDK. Some libs (libandroid_net.so
# and some render-script related ones) can't be built in PDK due to missing frameworks/base.
check-vndk-list: ;
else
check-vndk-list: $(check-vndk-list-timestamp)
endif