Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cf426704 authored by Jiyong Park's avatar Jiyong Park Committed by android-build-merger
Browse files

Merge "Don't check VNDK lib list for PDK builds" am: 1b4b378b am: 77dcf098

am: 07724c7b

Change-Id: Ica2cea68cddca1ae50e5c3bd26b3b88233a439e7
parents 4dba0c98 07724c7b
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -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