2009-03-04 04:28:42 +01:00
|
|
|
###########################################################
|
|
|
|
## Standard rules for building a java library.
|
|
|
|
##
|
|
|
|
###########################################################
|
|
|
|
|
|
|
|
ifdef LOCAL_IS_HOST_MODULE
|
|
|
|
$(error $(LOCAL_PATH): Host java libraries must use BUILD_HOST_JAVA_LIBRARY)
|
|
|
|
endif
|
|
|
|
|
|
|
|
LOCAL_MODULE_SUFFIX := $(COMMON_JAVA_PACKAGE_SUFFIX)
|
|
|
|
LOCAL_MODULE_CLASS := JAVA_LIBRARIES
|
|
|
|
|
|
|
|
ifneq (,$(LOCAL_ASSET_DIR))
|
|
|
|
$(error $(LOCAL_PATH): Target java libraries may not set LOCAL_ASSET_DIR)
|
|
|
|
endif
|
|
|
|
|
2011-12-14 23:29:28 +01:00
|
|
|
ifneq (true,$(LOCAL_IS_STATIC_JAVA_LIBRARY))
|
2009-03-04 04:28:42 +01:00
|
|
|
ifneq (,$(LOCAL_RESOURCE_DIR))
|
|
|
|
$(error $(LOCAL_PATH): Target java libraries may not set LOCAL_RESOURCE_DIR)
|
|
|
|
endif
|
2013-08-28 20:16:06 +02:00
|
|
|
# base_rules.mk looks at this
|
2009-03-04 04:28:42 +01:00
|
|
|
all_res_assets :=
|
2013-08-28 20:16:06 +02:00
|
|
|
endif
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
LOCAL_BUILT_MODULE_STEM := javalib.jar
|
|
|
|
|
2015-02-05 16:10:58 +01:00
|
|
|
#################################
|
|
|
|
include $(BUILD_SYSTEM)/configure_local_jack.mk
|
|
|
|
#################################
|
|
|
|
|
|
|
|
ifdef LOCAL_IS_STATIC_JAVA_LIBRARY
|
|
|
|
LOCAL_BUILT_MODULE_STEM := classes.jack
|
|
|
|
endif
|
|
|
|
|
2010-09-27 23:53:39 +02:00
|
|
|
intermediates.COMMON := $(call local-intermediates-dir,COMMON)
|
|
|
|
|
2010-09-25 03:09:04 +02:00
|
|
|
# This file will be the one that other modules should depend on.
|
2015-02-05 16:10:58 +01:00
|
|
|
common_javalib.jar := $(intermediates.COMMON)/javalib.jar
|
2010-09-25 03:09:04 +02:00
|
|
|
LOCAL_INTERMEDIATE_TARGETS += $(common_javalib.jar)
|
|
|
|
|
2013-03-26 20:42:32 +01:00
|
|
|
ifeq ($(LOCAL_PROGUARD_ENABLED),disabled)
|
|
|
|
LOCAL_PROGUARD_ENABLED :=
|
|
|
|
endif
|
|
|
|
|
2012-08-22 01:59:01 +02:00
|
|
|
ifeq (true,$(EMMA_INSTRUMENT))
|
|
|
|
ifeq (true,$(LOCAL_EMMA_INSTRUMENT))
|
|
|
|
ifeq (true,$(EMMA_INSTRUMENT_STATIC))
|
2015-11-19 17:53:00 +01:00
|
|
|
# Jack supports coverage with Jacoco
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += jacocoagent
|
2012-08-22 01:59:01 +02:00
|
|
|
endif # LOCAL_EMMA_INSTRUMENT
|
|
|
|
endif # EMMA_INSTRUMENT_STATIC
|
|
|
|
else
|
|
|
|
LOCAL_EMMA_INSTRUMENT := false
|
|
|
|
endif # EMMA_INSTRUMENT
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
#################################
|
|
|
|
include $(BUILD_SYSTEM)/java.mk
|
|
|
|
#################################
|
|
|
|
|
|
|
|
ifeq ($(LOCAL_IS_STATIC_JAVA_LIBRARY),true)
|
2011-04-02 00:45:58 +02:00
|
|
|
# No dex; all we want are the .class files with resources.
|
2013-03-26 20:42:32 +01:00
|
|
|
$(common_javalib.jar) : $(java_resource_sources)
|
|
|
|
$(common_javalib.jar) : $(full_classes_jar)
|
2009-03-04 04:28:42 +01:00
|
|
|
@echo "target Static Jar: $(PRIVATE_MODULE) ($@)"
|
|
|
|
$(copy-file-to-target)
|
|
|
|
|
2015-02-05 16:10:58 +01:00
|
|
|
$(LOCAL_BUILT_MODULE) : $(full_classes_jack)
|
2010-09-25 03:09:04 +02:00
|
|
|
$(copy-file-to-target)
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
else # !LOCAL_IS_STATIC_JAVA_LIBRARY
|
|
|
|
|
2010-09-25 03:09:04 +02:00
|
|
|
$(common_javalib.jar): PRIVATE_DEX_FILE := $(built_dex)
|
2015-10-30 00:33:05 +01:00
|
|
|
$(common_javalib.jar) : $(built_dex) $(java_resource_sources) | $(ZIPTIME)
|
2010-09-18 01:36:06 +02:00
|
|
|
@echo "target Jar: $(PRIVATE_MODULE) ($@)"
|
|
|
|
$(create-empty-package)
|
Running jarjar on Java resources.
Before this change, Java resources are added as a separate step
(add-java-resources-to-package) after dex is run, so jarjar isn't run on
the resource files.
With this change, we add Java resources immediately after we call javac,
so jarjar is run on the resource files (the module's own resource, as
well as resources carried by static Java libraries).
When we generate the final apk/jar, we use the jarjar'ed jar as the
inital pacakge file, with class files and empty folders removed.
When jack is enabled, in jack-java-to-dex we add the Java resources to
a temp jar using the PRIVATE_EXTRA_JAR_ARGS, and extrac the files in a
temp dir. Jack will process the resource files and output the result to
PRIVATE_JACK_INTERMEDIATES_DIR. When we package the final apk/jar, we
need to call add-carried-jack-resources to readd the resources.
(TODO: if jack can output all resources to a jar/zip file, we can use
that file as the initial package file as well.)
Bug: 18837479
Change-Id: I8d7296e30ec8d005054cf04c4f2aed6d7a0d823b
2015-01-14 23:23:56 +01:00
|
|
|
$(add-dex-to-package)
|
|
|
|
$(add-carried-jack-resources)
|
2015-10-30 00:33:05 +01:00
|
|
|
$(remove-timestamps-from-package)
|
2010-09-18 01:36:06 +02:00
|
|
|
|
2011-10-24 21:17:03 +02:00
|
|
|
ifdef LOCAL_DEX_PREOPT
|
2013-11-15 08:44:56 +01:00
|
|
|
ifneq ($(dexpreopt_boot_jar_module),) # boot jar
|
2010-09-18 01:36:06 +02:00
|
|
|
# boot jar's rules are defined in dex_preopt.mk
|
|
|
|
dexpreopted_boot_jar := $(DEXPREOPT_BOOT_JAR_DIR_FULL_PATH)/$(dexpreopt_boot_jar_module)_nodex.jar
|
2016-03-01 02:52:39 +01:00
|
|
|
$(LOCAL_BUILT_MODULE) : $(dexpreopted_boot_jar)
|
2010-09-18 01:36:06 +02:00
|
|
|
$(call copy-file-to-target)
|
|
|
|
|
2013-11-15 08:44:56 +01:00
|
|
|
# For libart boot jars, we don't have .odex files.
|
|
|
|
else # ! boot jar
|
2010-09-18 01:36:06 +02:00
|
|
|
$(built_odex): PRIVATE_MODULE := $(LOCAL_MODULE)
|
2014-05-13 22:57:28 +02:00
|
|
|
# Use pattern rule - we may have multiple built odex files.
|
|
|
|
$(built_odex) : $(dir $(LOCAL_BUILT_MODULE))% : $(common_javalib.jar)
|
2010-09-18 01:36:06 +02:00
|
|
|
@echo "Dexpreopt Jar: $(PRIVATE_MODULE) ($@)"
|
2014-05-13 22:57:28 +02:00
|
|
|
$(call dexpreopt-one-file,$<,$@)
|
2010-09-18 01:36:06 +02:00
|
|
|
|
2016-03-01 02:52:39 +01:00
|
|
|
$(LOCAL_BUILT_MODULE) : $(common_javalib.jar)
|
2010-09-18 01:36:06 +02:00
|
|
|
$(call copy-file-to-target)
|
2011-10-24 21:17:03 +02:00
|
|
|
ifneq (nostripping,$(LOCAL_DEX_PREOPT))
|
2010-09-18 01:36:06 +02:00
|
|
|
$(call dexpreopt-remove-classes.dex,$@)
|
2011-10-24 21:17:03 +02:00
|
|
|
endif
|
2010-09-18 01:36:06 +02:00
|
|
|
|
2013-11-15 08:44:56 +01:00
|
|
|
endif # ! boot jar
|
2010-09-18 01:36:06 +02:00
|
|
|
|
|
|
|
else # LOCAL_DEX_PREOPT
|
2016-03-01 02:52:39 +01:00
|
|
|
$(LOCAL_BUILT_MODULE) : $(common_javalib.jar)
|
2010-09-25 03:09:04 +02:00
|
|
|
$(call copy-file-to-target)
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2010-09-25 03:09:04 +02:00
|
|
|
endif # LOCAL_DEX_PREOPT
|
2009-03-04 04:28:42 +01:00
|
|
|
endif # !LOCAL_IS_STATIC_JAVA_LIBRARY
|