forked from openkylin/platform_build
Don't uncompress/page-align the jni libraries in apps_only build.
Don't uncompress/page-align the jni libraries in apps_only build, because the apk may be run on older platforms that don't support loading jni directly from apk. When prebuilt apks are installed to platform build, the build system will automatically uncompress/page-align the prebuit apks in M and downstream, so no need to uncompress/page-align in the apps_only build either. Bug: 22491084 Change-Id: I67e977b2592800ae467450592069843b4e5fc466
This commit is contained in:
parent
6b74f21a4d
commit
1f8964d388
|
@ -2026,13 +2026,23 @@ $(hide) cp $(2) $(dir $@)lib/$(1)
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
# For apps_only build, don't uncompress/page-align the jni libraries,
|
||||||
|
# because the apk may be run on older platforms that don't support loading jni directly from apk.
|
||||||
|
ifdef TARGET_BUILD_APPS
|
||||||
|
JNI_COMPRESS_FLAGS :=
|
||||||
|
ZIPALIGN_PAGE_ALIGN_FLAGS :=
|
||||||
|
else
|
||||||
|
JNI_COMPRESS_FLAGS := -0
|
||||||
|
ZIPALIGN_PAGE_ALIGN_FLAGS := -p
|
||||||
|
endif
|
||||||
|
|
||||||
define add-jni-shared-libs-to-package
|
define add-jni-shared-libs-to-package
|
||||||
$(hide) rm -rf $(dir $@)lib
|
$(hide) rm -rf $(dir $@)lib
|
||||||
$(hide) mkdir -p $(addprefix $(dir $@)lib/,$(PRIVATE_JNI_SHARED_LIBRARIES_ABI))
|
$(hide) mkdir -p $(addprefix $(dir $@)lib/,$(PRIVATE_JNI_SHARED_LIBRARIES_ABI))
|
||||||
$(foreach abi,$(PRIVATE_JNI_SHARED_LIBRARIES_ABI),\
|
$(foreach abi,$(PRIVATE_JNI_SHARED_LIBRARIES_ABI),\
|
||||||
$(call _add-jni-shared-libs-to-package-per-abi,$(abi),\
|
$(call _add-jni-shared-libs-to-package-per-abi,$(abi),\
|
||||||
$(patsubst $(abi):%,%,$(filter $(abi):%,$(PRIVATE_JNI_SHARED_LIBRARIES)))))
|
$(patsubst $(abi):%,%,$(filter $(abi):%,$(PRIVATE_JNI_SHARED_LIBRARIES)))))
|
||||||
$(hide) (cd $(dir $@) && zip -r -0 $(notdir $@) lib)
|
$(hide) (cd $(dir $@) && zip -r $(JNI_COMPRESS_FLAGS) $(notdir $@) lib)
|
||||||
$(hide) rm -rf $(dir $@)lib
|
$(hide) rm -rf $(dir $@)lib
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
@ -2078,7 +2088,8 @@ endef
|
||||||
define align-package
|
define align-package
|
||||||
$(hide) mv $@ $@.unaligned
|
$(hide) mv $@ $@.unaligned
|
||||||
$(hide) $(ZIPALIGN) \
|
$(hide) $(ZIPALIGN) \
|
||||||
-f -p \
|
-f \
|
||||||
|
$(ZIPALIGN_PAGE_ALIGN_FLAGS) \
|
||||||
4 \
|
4 \
|
||||||
$@.unaligned $@.aligned
|
$@.unaligned $@.aligned
|
||||||
$(hide) mv $@.aligned $@
|
$(hide) mv $@.aligned $@
|
||||||
|
|
Loading…
Reference in New Issue