summaryrefslogtreecommitdiffstats
path: root/core/dex_preopt_odex_install.mk
diff options
context:
space:
mode:
authorYing Wang <wangying@google.com>2014-01-03 16:24:56 -0800
committerYing Wang <wangying@google.com>2014-01-03 17:53:00 -0800
commit9db168ca5ce93cbb43f7245f7163f1be2ff06d54 (patch)
treee9922c945d2a303c71e8a66278f1c3ca28061006 /core/dex_preopt_odex_install.mk
parent6e8ffe3f1e328ee71354b539e63b34b2342160a8 (diff)
downloadbuild-9db168ca5ce93cbb43f7245f7163f1be2ff06d54.zip
build-9db168ca5ce93cbb43f7245f7163f1be2ff06d54.tar.gz
build-9db168ca5ce93cbb43f7245f7163f1be2ff06d54.tar.bz2
Remove LOCAL_SRC_FILES as precondition of enabling dexpreopt
Because a library or app can be built from mere static libraries, or generated java files. For example, framework is built from only static library framework-base but without LOCAL_SRC_FILES. Also added framework2 to PRODUCT_PACKAGES. Previously framework2.jar was installed by dependency explicitly established in frameworks/base/Android.mk. That's not enough for the .odex file. This fixed the boot failure reported in bug 12382916. Bug: 12382916 Change-Id: If1a70261ab2bb7fef77cf7b7b995bdc029be0fc3
Diffstat (limited to 'core/dex_preopt_odex_install.mk')
-rw-r--r--core/dex_preopt_odex_install.mk16
1 files changed, 7 insertions, 9 deletions
diff --git a/core/dex_preopt_odex_install.mk b/core/dex_preopt_odex_install.mk
index 70b83a4..e0932a9 100644
--- a/core/dex_preopt_odex_install.mk
+++ b/core/dex_preopt_odex_install.mk
@@ -8,15 +8,13 @@ ifneq (true,$(WITH_DEXPREOPT))
LOCAL_DEX_PREOPT :=
else # WITH_DEXPREOPT=true
ifeq (,$(TARGET_BUILD_APPS)) # TARGET_BUILD_APPS empty
- ifneq (,$(LOCAL_SRC_FILES)) # LOCAL_SRC_FILES not empty
- ifndef LOCAL_DEX_PREOPT # LOCAL_DEX_PREOPT undefined
- ifeq (,$(LOCAL_APK_LIBRARIES)) # LOCAL_APK_LIBRARIES empty
- LOCAL_DEX_PREOPT := $(DEX_PREOPT_DEFAULT)
- else # LOCAL_APK_LIBRARIES not empty
- LOCAL_DEX_PREOPT := nostripping
- endif # LOCAL_APK_LIBRARIES not empty
- endif # LOCAL_DEX_PREOPT undefined
- endif # LOCAL_SRC_FILES not empty
+ ifndef LOCAL_DEX_PREOPT # LOCAL_DEX_PREOPT undefined
+ ifeq (,$(LOCAL_APK_LIBRARIES)) # LOCAL_APK_LIBRARIES empty
+ LOCAL_DEX_PREOPT := $(DEX_PREOPT_DEFAULT)
+ else # LOCAL_APK_LIBRARIES not empty
+ LOCAL_DEX_PREOPT := nostripping
+ endif # LOCAL_APK_LIBRARIES not empty
+ endif # LOCAL_DEX_PREOPT undefined
endif # TARGET_BUILD_APPS empty
endif # WITH_DEXPREOPT=true
ifeq (false,$(LOCAL_DEX_PREOPT))