Merge "For prebuilts, use the built_module for nostripping dexpreopt." am: f90b7e1948
am: 3a011d4f9c
Change-Id: Id8993df444b6a2faaeaa4c4589b31a8be1b543ba
This commit is contained in:
commit
8f4f0f43a1
|
@ -417,11 +417,19 @@ endif # LOCAL_COMPRESSED_MODULE
|
||||||
endif # ! LOCAL_REPLACE_PREBUILT_APK_INSTALLED
|
endif # ! LOCAL_REPLACE_PREBUILT_APK_INSTALLED
|
||||||
|
|
||||||
###############################
|
###############################
|
||||||
## Rule to build the odex file
|
## Rule to build the odex file.
|
||||||
|
# In case we don't strip the built module, use it, as dexpreopt
|
||||||
|
# can do optimizations based on whether the built module only
|
||||||
|
# contains uncompressed dex code.
|
||||||
ifdef LOCAL_DEX_PREOPT
|
ifdef LOCAL_DEX_PREOPT
|
||||||
|
ifeq (nostripping,$(LOCAL_DEX_PREOPT))
|
||||||
|
$(built_odex) : $(built_module)
|
||||||
|
$(call dexpreopt-one-file,$<,$@)
|
||||||
|
else
|
||||||
$(built_odex) : $(my_prebuilt_src_file)
|
$(built_odex) : $(my_prebuilt_src_file)
|
||||||
$(call dexpreopt-one-file,$<,$@)
|
$(call dexpreopt-one-file,$<,$@)
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
###############################
|
###############################
|
||||||
## Install split apks.
|
## Install split apks.
|
||||||
|
|
Loading…
Reference in New Issue