resolved conflicts for merge of 121a7873
to gingerbread
Change-Id: I7b5cecd4236f263c31d4af73d929ff6b5729089e
This commit is contained in:
commit
f2bfa76cf8
2 changed files with 6 additions and 1 deletions
|
@ -95,6 +95,7 @@ LOCAL_NO_EMMA_COMPILE:=
|
|||
LOCAL_PROGUARD_ENABLED:= # '',optonly,full,custom
|
||||
LOCAL_PROGUARD_FLAGS:=
|
||||
LOCAL_EMMA_COVERAGE_FILTER:=
|
||||
LOCAL_MANIFEST_FILE:=
|
||||
|
||||
# Trim MAKEFILE_LIST so that $(call my-dir) doesn't need to
|
||||
# iterate over thousands of entries every time.
|
||||
|
|
|
@ -61,6 +61,10 @@ ifneq (,$(LOCAL_JAVA_RESOURCE_FILES))
|
|||
$(error $(LOCAL_PATH): Package modules may not set LOCAL_JAVA_RESOURCE_FILES)
|
||||
endif
|
||||
|
||||
ifeq ($(strip $(LOCAL_MANIFEST_FILE)),)
|
||||
LOCAL_MANIFEST_FILE := AndroidManifest.xml
|
||||
endif
|
||||
|
||||
ifneq ($(strip $(LOCAL_MODULE_CLASS)),)
|
||||
$(error $(LOCAL_PATH): Package modules may not set LOCAL_MODULE_CLASS)
|
||||
endif
|
||||
|
@ -160,7 +164,7 @@ include $(BUILD_SYSTEM)/java.mk
|
|||
DONT_INSTALL_DEX_FILES := $(old_DONT_INSTALL_DEX_FILES)
|
||||
old_DONT_INSTALL_DEX_FILES =
|
||||
|
||||
full_android_manifest := $(LOCAL_PATH)/AndroidManifest.xml
|
||||
full_android_manifest := $(LOCAL_PATH)/$(LOCAL_MANIFEST_FILE)
|
||||
$(LOCAL_INTERMEDIATE_TARGETS): \
|
||||
PRIVATE_ANDROID_MANIFEST := $(full_android_manifest)
|
||||
|
||||
|
|
Loading…
Reference in a new issue