2009-03-04 04:28:42 +01:00
|
|
|
# Requires:
|
|
|
|
# LOCAL_MODULE_SUFFIX
|
|
|
|
# LOCAL_MODULE_CLASS
|
|
|
|
# all_res_assets
|
|
|
|
|
2012-04-20 00:36:18 +02:00
|
|
|
ifeq ($(TARGET_BUILD_PDK),true)
|
2012-06-07 02:19:29 +02:00
|
|
|
ifeq ($(TARGET_BUILD_PDK_JAVA_PLATFORM),)
|
2012-04-20 00:36:18 +02:00
|
|
|
# LOCAL_SDK not defined or set to current
|
|
|
|
ifeq ($(filter-out current,$(LOCAL_SDK_VERSION)),)
|
|
|
|
LOCAL_SDK_VERSION := $(PDK_BUILD_SDK_VERSION)
|
|
|
|
endif
|
2012-05-16 19:32:41 +02:00
|
|
|
endif # !PDK_JAVA
|
2012-04-20 00:36:18 +02:00
|
|
|
endif #PDK
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
LOCAL_NO_STANDARD_LIBRARIES:=$(strip $(LOCAL_NO_STANDARD_LIBRARIES))
|
|
|
|
LOCAL_SDK_VERSION:=$(strip $(LOCAL_SDK_VERSION))
|
|
|
|
|
|
|
|
ifneq ($(LOCAL_SDK_VERSION),)
|
|
|
|
ifeq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
|
|
|
|
$(error $(LOCAL_PATH): Must not define both LOCAL_NO_STANDARD_LIBRARIES and LOCAL_SDK_VERSION)
|
|
|
|
else
|
|
|
|
ifeq ($(strip $(filter $(LOCAL_SDK_VERSION),$(TARGET_AVAILABLE_SDK_VERSIONS))),)
|
|
|
|
$(error $(LOCAL_PATH): Invalid LOCAL_SDK_VERSION '$(LOCAL_SDK_VERSION)' \
|
|
|
|
Choices are: $(TARGET_AVAILABLE_SDK_VERSIONS))
|
|
|
|
else
|
2012-05-11 02:25:51 +02:00
|
|
|
ifeq ($(LOCAL_SDK_VERSION)$(TARGET_BUILD_APPS),current)
|
|
|
|
# Use android_stubs_current if LOCAL_SDK_VERSION is current and no TARGET_BUILD_APPS.
|
2012-04-03 03:21:36 +02:00
|
|
|
LOCAL_JAVA_LIBRARIES := android_stubs_current $(LOCAL_JAVA_LIBRARIES)
|
2010-01-25 18:56:41 +01:00
|
|
|
else
|
|
|
|
LOCAL_JAVA_LIBRARIES := sdk_v$(LOCAL_SDK_VERSION) $(LOCAL_JAVA_LIBRARIES)
|
|
|
|
endif
|
2009-03-04 04:28:42 +01:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
ifneq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
|
2013-08-07 00:07:18 +02:00
|
|
|
LOCAL_JAVA_LIBRARIES := $(TARGET_DEFAULT_JAVA_LIBRARIES) $(LOCAL_JAVA_LIBRARIES)
|
2009-03-04 04:28:42 +01:00
|
|
|
endif
|
|
|
|
endif
|
2010-11-03 02:43:16 +01:00
|
|
|
|
|
|
|
proto_sources := $(filter %.proto,$(LOCAL_SRC_FILES))
|
|
|
|
ifneq ($(proto_sources),)
|
|
|
|
ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),micro)
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += libprotobuf-java-2.3.0-micro
|
|
|
|
else
|
2013-03-28 22:02:14 +01:00
|
|
|
ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nano)
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += libprotobuf-java-2.3.0-nano
|
|
|
|
else
|
2010-11-03 02:43:16 +01:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += libprotobuf-java-2.3.0-lite
|
2013-03-28 22:02:14 +01:00
|
|
|
endif
|
2010-11-03 02:43:16 +01:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2009-12-08 03:14:00 +01:00
|
|
|
LOCAL_JAVA_LIBRARIES := $(sort $(LOCAL_JAVA_LIBRARIES))
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
LOCAL_BUILT_MODULE_STEM := $(strip $(LOCAL_BUILT_MODULE_STEM))
|
|
|
|
ifeq ($(LOCAL_BUILT_MODULE_STEM),)
|
|
|
|
$(error $(LOCAL_PATH): Target java template must define LOCAL_BUILT_MODULE_STEM)
|
|
|
|
endif
|
|
|
|
ifneq ($(filter classes-compiled.jar classes.jar,$(LOCAL_BUILT_MODULE_STEM)),)
|
|
|
|
$(error LOCAL_BUILT_MODULE_STEM may not be "$(LOCAL_BUILT_MODULE_STEM)")
|
|
|
|
endif
|
|
|
|
|
2009-07-17 21:33:40 +02:00
|
|
|
|
|
|
|
##############################################################################
|
|
|
|
# Define the intermediate targets before including base_rules so they get
|
|
|
|
# the correct environment.
|
|
|
|
##############################################################################
|
|
|
|
|
|
|
|
intermediates := $(call local-intermediates-dir)
|
|
|
|
intermediates.COMMON := $(call local-intermediates-dir,COMMON)
|
|
|
|
|
|
|
|
# Choose leaf name for the compiled jar file.
|
2012-08-22 01:59:01 +02:00
|
|
|
ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
|
2009-07-17 21:33:40 +02:00
|
|
|
full_classes_compiled_jar_leaf := classes-no-debug-var.jar
|
2013-08-20 17:05:27 +02:00
|
|
|
built_dex_intermediate_leaf := no-local
|
2009-07-17 21:33:40 +02:00
|
|
|
else
|
|
|
|
full_classes_compiled_jar_leaf := classes-full-debug.jar
|
2013-08-20 17:05:27 +02:00
|
|
|
built_dex_intermediate_leaf := with-local
|
2010-09-23 20:48:38 +02:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(LOCAL_PROGUARD_ENABLED),disabled)
|
|
|
|
LOCAL_PROGUARD_ENABLED :=
|
2009-07-17 21:33:40 +02:00
|
|
|
endif
|
|
|
|
|
2010-09-23 20:48:38 +02:00
|
|
|
ifdef LOCAL_PROGUARD_ENABLED
|
|
|
|
proguard_jar_leaf := proguard.classes.jar
|
|
|
|
else
|
|
|
|
proguard_jar_leaf := noproguard.classes.jar
|
|
|
|
endif
|
|
|
|
|
|
|
|
full_classes_compiled_jar := $(intermediates.COMMON)/$(full_classes_compiled_jar_leaf)
|
2010-07-07 23:07:24 +02:00
|
|
|
jarjar_leaf := classes-jarjar.jar
|
|
|
|
full_classes_jarjar_jar := $(intermediates.COMMON)/$(jarjar_leaf)
|
2009-07-17 21:33:40 +02:00
|
|
|
emma_intermediates_dir := $(intermediates.COMMON)/emma_out
|
2010-07-07 23:07:24 +02:00
|
|
|
# emma is hardcoded to use the leaf name of its input for the output file --
|
|
|
|
# only the output directory can be changed
|
|
|
|
full_classes_emma_jar := $(emma_intermediates_dir)/lib/$(jarjar_leaf)
|
2010-09-23 20:48:38 +02:00
|
|
|
full_classes_proguard_jar := $(intermediates.COMMON)/$(proguard_jar_leaf)
|
2013-08-20 17:05:27 +02:00
|
|
|
built_dex_intermediate := $(intermediates.COMMON)/$(built_dex_intermediate_leaf)/classes.dex
|
2010-09-23 20:48:38 +02:00
|
|
|
full_classes_stubs_jar := $(intermediates.COMMON)/stubs.jar
|
|
|
|
|
2013-08-29 02:28:36 +02:00
|
|
|
ifeq ($(LOCAL_MODULE_CLASS)$(LOCAL_SRC_FILES)$(LOCAL_STATIC_JAVA_LIBRARIES)$(LOCAL_SOURCE_FILES_ALL_GENERATED),APPS)
|
|
|
|
# If this is an apk without any Java code (e.g. framework-res), we should skip compiling Java.
|
2013-08-28 22:04:46 +02:00
|
|
|
full_classes_jar :=
|
|
|
|
built_dex :=
|
|
|
|
else
|
2010-09-23 20:48:38 +02:00
|
|
|
full_classes_jar := $(intermediates.COMMON)/classes.jar
|
2013-09-13 02:35:21 +02:00
|
|
|
built_dex := $(intermediates.COMMON)/classes.dex
|
2013-08-28 22:04:46 +02:00
|
|
|
endif
|
2009-07-17 21:33:40 +02:00
|
|
|
|
|
|
|
LOCAL_INTERMEDIATE_TARGETS += \
|
|
|
|
$(full_classes_compiled_jar) \
|
2010-09-23 20:48:38 +02:00
|
|
|
$(full_classes_jarjar_jar) \
|
2009-07-17 21:33:40 +02:00
|
|
|
$(full_classes_emma_jar) \
|
2010-09-23 20:48:38 +02:00
|
|
|
$(full_classes_jar) \
|
2010-10-03 03:35:51 +02:00
|
|
|
$(full_classes_proguard_jar) \
|
2010-09-23 20:48:38 +02:00
|
|
|
$(built_dex_intermediate) \
|
2010-03-11 00:48:03 +01:00
|
|
|
$(built_dex) \
|
2010-09-23 20:48:38 +02:00
|
|
|
$(full_classes_stubs_jar)
|
|
|
|
|
2009-07-17 21:33:40 +02:00
|
|
|
|
2010-05-18 03:16:11 +02:00
|
|
|
LOCAL_INTERMEDIATE_SOURCE_DIR := $(intermediates.COMMON)/src
|
2009-07-17 21:33:40 +02:00
|
|
|
|
2010-07-16 02:17:52 +02:00
|
|
|
###############################################################
|
|
|
|
## .rs files: RenderScript sources to .java files and .bc files
|
2012-10-12 00:01:53 +02:00
|
|
|
## .fs files: Filterscript sources to .java files and .bc files
|
2010-07-16 02:17:52 +02:00
|
|
|
###############################################################
|
2012-10-12 00:01:53 +02:00
|
|
|
renderscript_sources := $(filter %.rs %.fs,$(LOCAL_SRC_FILES))
|
2010-07-16 02:17:52 +02:00
|
|
|
# Because names of the java files from RenderScript are unknown until the
|
|
|
|
# .rs file(s) are compiled, we have to depend on a timestamp file.
|
|
|
|
RenderScript_file_stamp :=
|
2013-02-07 01:19:30 +01:00
|
|
|
rs_compatibility_jni_libs :=
|
2010-07-16 02:17:52 +02:00
|
|
|
ifneq ($(renderscript_sources),)
|
|
|
|
renderscript_sources_fullpath := $(addprefix $(LOCAL_PATH)/, $(renderscript_sources))
|
|
|
|
RenderScript_file_stamp := $(LOCAL_INTERMEDIATE_SOURCE_DIR)/RenderScript.stamp
|
2013-02-26 01:06:42 +01:00
|
|
|
renderscript_intermediate.COMMON := $(LOCAL_INTERMEDIATE_SOURCE_DIR)/renderscript
|
2010-07-16 02:17:52 +02:00
|
|
|
|
2011-08-10 22:53:05 +02:00
|
|
|
renderscript_target_api :=
|
2011-08-30 03:53:53 +02:00
|
|
|
|
|
|
|
ifneq (,$(LOCAL_RENDERSCRIPT_TARGET_API))
|
|
|
|
renderscript_target_api := $(LOCAL_RENDERSCRIPT_TARGET_API)
|
|
|
|
else
|
2011-08-10 22:53:05 +02:00
|
|
|
ifneq (,$(LOCAL_SDK_VERSION))
|
2011-08-30 03:53:53 +02:00
|
|
|
# Set target-api for LOCAL_SDK_VERSIONs other than current.
|
|
|
|
ifneq (,$(filter-out current, $(LOCAL_SDK_VERSION)))
|
2011-08-10 22:53:05 +02:00
|
|
|
renderscript_target_api := $(LOCAL_SDK_VERSION)
|
|
|
|
endif
|
|
|
|
endif # LOCAL_SDK_VERSION is set
|
2011-08-30 03:53:53 +02:00
|
|
|
endif # LOCAL_RENDERSCRIPT_TARGET_API is set
|
2011-08-10 22:53:05 +02:00
|
|
|
|
|
|
|
ifeq ($(LOCAL_RENDERSCRIPT_CC),)
|
|
|
|
LOCAL_RENDERSCRIPT_CC := $(LLVM_RS_CC)
|
|
|
|
endif
|
|
|
|
|
2011-12-07 03:43:24 +01:00
|
|
|
# Turn on all warnings and warnings as errors for RS compiles.
|
|
|
|
# This can be disabled with LOCAL_RENDERSCRIPT_FLAGS := -Wno-error
|
|
|
|
renderscript_flags := -Wall -Werror
|
|
|
|
renderscript_flags += $(LOCAL_RENDERSCRIPT_FLAGS)
|
|
|
|
|
2010-09-01 22:28:52 +02:00
|
|
|
# prepend the RenderScript system include path
|
2012-05-11 02:25:51 +02:00
|
|
|
ifneq ($(filter-out current,$(LOCAL_SDK_VERSION))$(if $(TARGET_BUILD_APPS),$(filter current,$(LOCAL_SDK_VERSION))),)
|
|
|
|
# if a numeric LOCAL_SDK_VERSION, or current LOCAL_SDK_VERSION with TARGET_BUILD_APPS
|
2011-03-29 20:47:12 +02:00
|
|
|
LOCAL_RENDERSCRIPT_INCLUDES := \
|
2012-03-07 06:48:36 +01:00
|
|
|
$(HISTORICAL_SDK_VERSIONS_ROOT)/renderscript/clang-include \
|
|
|
|
$(HISTORICAL_SDK_VERSIONS_ROOT)/renderscript/include \
|
2011-03-29 20:47:12 +02:00
|
|
|
$(LOCAL_RENDERSCRIPT_INCLUDES)
|
|
|
|
else
|
2011-01-19 20:49:21 +01:00
|
|
|
LOCAL_RENDERSCRIPT_INCLUDES := \
|
2011-08-10 22:53:05 +02:00
|
|
|
$(TOPDIR)external/clang/lib/Headers \
|
2012-03-28 23:22:55 +02:00
|
|
|
$(TOPDIR)frameworks/rs/scriptc \
|
2011-08-10 22:53:05 +02:00
|
|
|
$(LOCAL_RENDERSCRIPT_INCLUDES)
|
2011-05-26 02:16:22 +02:00
|
|
|
endif
|
|
|
|
|
2011-08-24 07:01:49 +02:00
|
|
|
ifneq ($(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE),)
|
|
|
|
LOCAL_RENDERSCRIPT_INCLUDES := $(LOCAL_RENDERSCRIPT_INCLUDES_OVERRIDE)
|
|
|
|
endif
|
|
|
|
|
2010-09-01 22:28:52 +02:00
|
|
|
$(RenderScript_file_stamp): PRIVATE_RS_INCLUDES := $(LOCAL_RENDERSCRIPT_INCLUDES)
|
2011-05-26 02:16:22 +02:00
|
|
|
$(RenderScript_file_stamp): PRIVATE_RS_CC := $(LOCAL_RENDERSCRIPT_CC)
|
2011-12-07 03:43:24 +01:00
|
|
|
$(RenderScript_file_stamp): PRIVATE_RS_FLAGS := $(renderscript_flags)
|
2010-07-16 02:17:52 +02:00
|
|
|
$(RenderScript_file_stamp): PRIVATE_RS_SOURCE_FILES := $(renderscript_sources_fullpath)
|
|
|
|
# By putting the generated java files into $(LOCAL_INTERMEDIATE_SOURCE_DIR), they will be
|
|
|
|
# automatically found by the java compiling function transform-java-to-classes.jar.
|
2013-02-26 01:06:42 +01:00
|
|
|
$(RenderScript_file_stamp): PRIVATE_RS_OUTPUT_DIR := $(renderscript_intermediate.COMMON)
|
2011-08-10 22:53:05 +02:00
|
|
|
$(RenderScript_file_stamp): PRIVATE_RS_TARGET_API := $(renderscript_target_api)
|
2011-05-26 02:16:22 +02:00
|
|
|
$(RenderScript_file_stamp): $(renderscript_sources_fullpath) $(LOCAL_RENDERSCRIPT_CC)
|
2010-07-16 02:17:52 +02:00
|
|
|
$(transform-renderscripts-to-java-and-bc)
|
|
|
|
|
2012-11-29 01:52:41 +01:00
|
|
|
ifneq ($(LOCAL_RENDERSCRIPT_COMPATIBILITY),)
|
|
|
|
bc_files := $(patsubst %.fs,%.bc, $(patsubst %.rs,%.bc, $(notdir $(renderscript_sources))))
|
|
|
|
rs_generated_bc := $(addprefix \
|
2013-02-26 01:06:42 +01:00
|
|
|
$(renderscript_intermediate.COMMON)/res/raw/, $(bc_files))
|
2012-11-29 01:52:41 +01:00
|
|
|
|
2013-02-26 01:06:42 +01:00
|
|
|
renderscript_intermediate := $(intermediates)/renderscript
|
2013-05-14 00:46:37 +02:00
|
|
|
|
|
|
|
# We don't need the .so files in bundled branches
|
|
|
|
# Prevent these from showing up on the device
|
2013-10-01 00:57:36 +02:00
|
|
|
ifneq (,$(TARGET_BUILD_APPS)$(FORCE_BUILD_RS_COMPAT))
|
2013-05-14 00:46:37 +02:00
|
|
|
|
2012-11-29 01:52:41 +01:00
|
|
|
rs_compatibility_jni_libs := $(addprefix \
|
2013-02-16 08:02:20 +01:00
|
|
|
$(renderscript_intermediate)/librs., \
|
2012-11-29 01:52:41 +01:00
|
|
|
$(patsubst %.bc,%.so, $(bc_files)))
|
|
|
|
|
|
|
|
$(rs_generated_bc) : $(RenderScript_file_stamp)
|
|
|
|
|
2012-12-17 23:23:14 +01:00
|
|
|
rs_support_lib := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/libRSSupport.so
|
|
|
|
rs_jni_lib := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/librsjni.so
|
2013-02-13 23:13:23 +01:00
|
|
|
LOCAL_JNI_SHARED_LIBRARIES += libRSSupport librsjni
|
2012-12-17 23:23:14 +01:00
|
|
|
|
2013-05-14 00:46:37 +02:00
|
|
|
|
|
|
|
|
2013-03-05 20:07:15 +01:00
|
|
|
$(rs_compatibility_jni_libs): $(RenderScript_file_stamp) $(RS_PREBUILT_CLCORE) \
|
2013-02-20 22:34:05 +01:00
|
|
|
$(rs_support_lib) $(rs_jni_lib) $(rs_compiler_rt)
|
2013-03-28 00:51:38 +01:00
|
|
|
$(rs_compatibility_jni_libs): $(BCC_COMPAT)
|
2012-11-29 01:52:41 +01:00
|
|
|
$(rs_compatibility_jni_libs): PRIVATE_CXX := $(TARGET_CXX)
|
2013-02-16 08:02:20 +01:00
|
|
|
$(rs_compatibility_jni_libs): $(renderscript_intermediate)/librs.%.so: \
|
2013-02-26 01:06:42 +01:00
|
|
|
$(renderscript_intermediate.COMMON)/res/raw/%.bc
|
2012-11-29 01:52:41 +01:00
|
|
|
$(transform-bc-to-so)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2013-05-14 00:46:37 +02:00
|
|
|
endif
|
|
|
|
|
2010-10-09 01:57:46 +02:00
|
|
|
# include the dependency files (.d) generated by llvm-rs-cc.
|
2013-02-26 01:06:42 +01:00
|
|
|
renderscript_generated_dep_files := $(addprefix $(renderscript_intermediate.COMMON)/, \
|
2012-10-12 00:01:53 +02:00
|
|
|
$(patsubst %.fs,%.d, $(patsubst %.rs,%.d, $(notdir $(renderscript_sources)))))
|
2010-10-08 03:57:57 +02:00
|
|
|
-include $(renderscript_generated_dep_files)
|
|
|
|
|
2010-07-16 02:17:52 +02:00
|
|
|
LOCAL_INTERMEDIATE_TARGETS += $(RenderScript_file_stamp)
|
|
|
|
# Make sure the generated resource will be added to the apk.
|
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_INTERMEDIATE_SOURCE_DIR)/renderscript/res $(LOCAL_RESOURCE_DIR)
|
|
|
|
endif
|
|
|
|
|
2013-01-30 20:22:06 +01:00
|
|
|
# All of the rules after full_classes_compiled_jar are very unlikely
|
|
|
|
# to fail except for bugs in their respective tools. If you would
|
|
|
|
# like to run these rules, add the "all" modifier goal to the make
|
|
|
|
# command line.
|
2013-08-28 22:04:46 +02:00
|
|
|
ifdef full_classes_jar
|
2013-01-30 20:22:06 +01:00
|
|
|
java_alternative_checked_module := $(full_classes_compiled_jar)
|
2013-08-28 22:04:46 +02:00
|
|
|
else
|
|
|
|
java_alternative_checked_module :=
|
|
|
|
endif
|
2013-01-30 20:22:06 +01:00
|
|
|
|
2009-07-17 21:33:40 +02:00
|
|
|
# TODO: It looks like the only thing we need from base_rules is
|
|
|
|
# all_java_sources. See if we can get that by adding a
|
|
|
|
# common_java.mk, and moving the include of base_rules.mk to
|
|
|
|
# after all the declarations.
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
#######################################
|
|
|
|
include $(BUILD_SYSTEM)/base_rules.mk
|
|
|
|
#######################################
|
|
|
|
|
2013-01-30 20:22:06 +01:00
|
|
|
java_alternative_checked_module :=
|
|
|
|
|
2013-11-15 08:44:56 +01:00
|
|
|
#######################################
|
|
|
|
# defines built_odex along with rule to install odex
|
|
|
|
include $(BUILD_SYSTEM)/dex_preopt_odex_install.mk
|
|
|
|
#######################################
|
|
|
|
|
2013-08-28 22:04:46 +02:00
|
|
|
# Make sure there's something to build.
|
|
|
|
ifdef full_classes_jar
|
|
|
|
ifndef need_compile_java
|
|
|
|
$(error $(LOCAL_PATH): Target java module does not define any source or resource files)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2013-02-07 01:19:30 +01:00
|
|
|
# Install the RS compatibility libraries to /system/lib/ if necessary
|
|
|
|
ifdef rs_compatibility_jni_libs
|
|
|
|
installed_rs_compatibility_jni_libs := $(addprefix $(TARGET_OUT_SHARED_LIBRARIES)/,\
|
|
|
|
$(notdir $(rs_compatibility_jni_libs)))
|
|
|
|
# Provide a way to skip sources included in multiple projects.
|
|
|
|
ifdef LOCAL_RENDERSCRIPT_SKIP_INSTALL
|
|
|
|
skip_install_rs_libs := $(patsubst %.rs,%.so, \
|
2013-02-19 23:31:59 +01:00
|
|
|
$(addprefix $(TARGET_OUT_SHARED_LIBRARIES)/librs., \
|
2013-02-07 01:19:30 +01:00
|
|
|
$(notdir $(LOCAL_RENDERSCRIPT_SKIP_INSTALL))))
|
|
|
|
installed_rs_compatibility_jni_libs := \
|
|
|
|
$(filter-out $(skip_install_rs_libs),$(installed_rs_compatibility_jni_libs))
|
|
|
|
endif
|
|
|
|
ifneq (,$(strip $(installed_rs_compatibility_jni_libs)))
|
|
|
|
$(installed_rs_compatibility_jni_libs) : $(TARGET_OUT_SHARED_LIBRARIES)/lib%.so : \
|
|
|
|
$(renderscript_intermediate)/lib%.so
|
|
|
|
$(hide) mkdir -p $(dir $@) && cp -f $< $@
|
|
|
|
|
|
|
|
# Install them only if the current module is installed.
|
|
|
|
$(LOCAL_INSTALLED_MODULE) : $(installed_rs_compatibility_jni_libs)
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
# We use intermediates.COMMON because the classes.jar/.dex files will be
|
|
|
|
# common even if LOCAL_BUILT_MODULE isn't.
|
|
|
|
#
|
|
|
|
# Override some target variables that base_rules set up for us.
|
|
|
|
$(LOCAL_INTERMEDIATE_TARGETS): \
|
|
|
|
PRIVATE_CLASS_INTERMEDIATES_DIR := $(intermediates.COMMON)/classes
|
|
|
|
$(LOCAL_INTERMEDIATE_TARGETS): \
|
2010-05-18 03:16:11 +02:00
|
|
|
PRIVATE_SOURCE_INTERMEDIATES_DIR := $(LOCAL_INTERMEDIATE_SOURCE_DIR)
|
2009-03-04 04:28:42 +01:00
|
|
|
|
|
|
|
# Since we're using intermediates.COMMON, make sure that it gets cleaned
|
|
|
|
# properly.
|
|
|
|
$(cleantarget): PRIVATE_CLEAN_FILES += $(intermediates.COMMON)
|
|
|
|
|
2013-08-28 22:04:46 +02:00
|
|
|
ifdef full_classes_jar
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2009-04-10 04:31:12 +02:00
|
|
|
# Droiddoc isn't currently able to generate stubs for modules, so we're just
|
|
|
|
# allowing it to use the classes.jar as the "stubs" that would be use to link
|
|
|
|
# against, for the cases where someone needs the jar to link against.
|
|
|
|
# - Use the classes.jar instead of the handful of other intermediates that
|
|
|
|
# we have, because it's the most processed, but still hasn't had dex run on
|
|
|
|
# it, so it's closest to what's on the device.
|
|
|
|
# - This extra copy, with the dependency on LOCAL_BUILT_MODULE allows the
|
|
|
|
# PRIVATE_ vars to be preserved.
|
|
|
|
$(full_classes_stubs_jar): PRIVATE_SOURCE_FILE := $(full_classes_jar)
|
|
|
|
$(full_classes_stubs_jar) : $(LOCAL_BUILT_MODULE) | $(ACP)
|
|
|
|
@echo Copying $(PRIVATE_SOURCE_FILE)
|
|
|
|
$(hide) $(ACP) -fp $(PRIVATE_SOURCE_FILE) $@
|
|
|
|
ALL_MODULES.$(LOCAL_MODULE).STUBS := $(full_classes_stubs_jar)
|
|
|
|
|
2011-10-31 05:37:35 +01:00
|
|
|
# The layers file allows you to enforce a layering between java packages.
|
|
|
|
# Run build/tools/java-layers.py for more details.
|
|
|
|
layers_file := $(addprefix $(LOCAL_PATH)/, $(LOCAL_JAVA_LAYERS_FILE))
|
|
|
|
$(full_classes_compiled_jar): PRIVATE_JAVA_LAYERS_FILE := $(layers_file)
|
2012-10-18 19:54:49 +02:00
|
|
|
$(full_classes_compiled_jar): PRIVATE_WARNINGS_ENABLE := $(LOCAL_WARNINGS_ENABLE)
|
2011-10-31 05:37:35 +01:00
|
|
|
|
2013-08-15 01:59:00 +02:00
|
|
|
ifdef LOCAL_RMTYPEDEFS
|
|
|
|
$(full_classes_compiled_jar): | $(RMTYPEDEFS)
|
|
|
|
endif
|
|
|
|
|
2009-03-25 03:07:34 +01:00
|
|
|
# Compile the java files to a .jar file.
|
|
|
|
# This intentionally depends on java_sources, not all_java_sources.
|
|
|
|
# Deps for generated source files must be handled separately,
|
|
|
|
# via deps on the target that generates the sources.
|
2010-02-01 20:13:32 +01:00
|
|
|
$(full_classes_compiled_jar): PRIVATE_JAVACFLAGS := $(LOCAL_JAVACFLAGS)
|
2011-12-16 01:36:55 +01:00
|
|
|
$(full_classes_compiled_jar): PRIVATE_JAR_EXCLUDE_FILES := $(LOCAL_JAR_EXCLUDE_FILES)
|
2013-07-18 05:29:51 +02:00
|
|
|
$(full_classes_compiled_jar): PRIVATE_JAR_PACKAGES := $(LOCAL_JAR_PACKAGES)
|
2013-08-15 01:59:00 +02:00
|
|
|
$(full_classes_compiled_jar): PRIVATE_RMTYPEDEFS := $(LOCAL_RMTYPEDEFS)
|
2012-08-30 21:59:42 +02:00
|
|
|
$(full_classes_compiled_jar): PRIVATE_DONT_DELETE_JAR_META_INF := $(LOCAL_DONT_DELETE_JAR_META_INF)
|
2011-10-31 05:37:35 +01:00
|
|
|
$(full_classes_compiled_jar): $(java_sources) $(java_resource_sources) $(full_java_lib_deps) \
|
2011-10-31 05:37:35 +01:00
|
|
|
$(jar_manifest_file) $(layers_file) $(RenderScript_file_stamp) \
|
2012-10-19 21:04:55 +02:00
|
|
|
$(proto_java_sources_file_stamp) $(LOCAL_ADDITIONAL_DEPENDENCIES)
|
2009-03-25 03:07:34 +01:00
|
|
|
$(transform-java-to-classes.jar)
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
$(full_classes_compiled_jar): PRIVATE_JAVAC_DEBUG_FLAGS := -g
|
|
|
|
|
2010-07-07 23:07:24 +02:00
|
|
|
# Run jarjar if necessary, otherwise just copy the file.
|
|
|
|
ifneq ($(strip $(LOCAL_JARJAR_RULES)),)
|
|
|
|
$(full_classes_jarjar_jar): PRIVATE_JARJAR_RULES := $(LOCAL_JARJAR_RULES)
|
2013-06-04 17:48:13 +02:00
|
|
|
$(full_classes_jarjar_jar): $(full_classes_compiled_jar) $(LOCAL_JARJAR_RULES) | $(JARJAR)
|
2010-07-07 23:07:24 +02:00
|
|
|
@echo JarJar: $@
|
|
|
|
$(hide) java -jar $(JARJAR) process $(PRIVATE_JARJAR_RULES) $< $@
|
|
|
|
else
|
|
|
|
$(full_classes_jarjar_jar): $(full_classes_compiled_jar) | $(ACP)
|
|
|
|
@echo Copying: $@
|
2011-01-19 02:21:20 +01:00
|
|
|
$(hide) $(ACP) -fp $< $@
|
2010-07-07 23:07:24 +02:00
|
|
|
endif
|
|
|
|
|
2012-08-22 01:59:01 +02:00
|
|
|
ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
|
2009-03-04 04:28:42 +01:00
|
|
|
$(full_classes_emma_jar): PRIVATE_EMMA_COVERAGE_FILE := $(intermediates.COMMON)/coverage.em
|
|
|
|
$(full_classes_emma_jar): PRIVATE_EMMA_INTERMEDIATES_DIR := $(emma_intermediates_dir)
|
2010-03-11 00:48:03 +01:00
|
|
|
# module level coverage filter can be defined using LOCAL_EMMA_COVERAGE_FILTER
|
|
|
|
# in Android.mk
|
|
|
|
ifdef LOCAL_EMMA_COVERAGE_FILTER
|
|
|
|
$(full_classes_emma_jar): PRIVATE_EMMA_COVERAGE_FILTER := $(LOCAL_EMMA_COVERAGE_FILTER)
|
|
|
|
else
|
|
|
|
# by default, avoid applying emma instrumentation onto emma classes itself,
|
|
|
|
# otherwise there will be exceptions thrown
|
|
|
|
$(full_classes_emma_jar): PRIVATE_EMMA_COVERAGE_FILTER := *,-emma,-emmarun,-com.vladium.*
|
|
|
|
endif
|
2009-03-04 04:28:42 +01:00
|
|
|
# this rule will generate both $(PRIVATE_EMMA_COVERAGE_FILE) and
|
|
|
|
# $(full_classes_emma_jar)
|
2010-07-07 23:07:24 +02:00
|
|
|
$(full_classes_emma_jar): $(full_classes_jarjar_jar) | $(EMMA_JAR)
|
2009-03-04 04:28:42 +01:00
|
|
|
$(transform-classes.jar-to-emma)
|
2010-03-10 02:24:32 +01:00
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
else
|
2010-07-07 23:07:24 +02:00
|
|
|
$(full_classes_emma_jar): $(full_classes_jarjar_jar) | $(ACP)
|
2009-03-04 04:28:42 +01:00
|
|
|
@echo Copying: $@
|
2010-07-07 23:07:24 +02:00
|
|
|
$(copy-file-to-target)
|
2009-03-04 04:28:42 +01:00
|
|
|
endif
|
|
|
|
|
2010-02-01 18:51:23 +01:00
|
|
|
# Keep a copy of the jar just before proguard processing.
|
2010-10-03 03:35:51 +02:00
|
|
|
$(full_classes_jar): $(full_classes_emma_jar) | $(ACP)
|
2010-02-01 18:51:23 +01:00
|
|
|
@echo Copying: $@
|
2011-01-19 02:21:20 +01:00
|
|
|
$(hide) $(ACP) -fp $< $@
|
2010-02-01 18:51:23 +01:00
|
|
|
|
2010-10-03 03:35:51 +02:00
|
|
|
# Run proguard if necessary, otherwise just copy the file.
|
2013-08-22 03:32:49 +02:00
|
|
|
ifdef LOCAL_PROGUARD_ENABLED
|
|
|
|
ifneq ($(filter-out full custom nosystem obfuscation optimization,$(LOCAL_PROGUARD_ENABLED)),)
|
|
|
|
$(warning while processing: $(LOCAL_MODULE))
|
|
|
|
$(error invalid value for LOCAL_PROGUARD_ENABLED: $(LOCAL_PROGUARD_ENABLED))
|
|
|
|
endif
|
2009-08-30 22:39:24 +02:00
|
|
|
proguard_dictionary := $(intermediates.COMMON)/proguard_dictionary
|
2013-08-22 03:32:49 +02:00
|
|
|
proguard_flags := $(addprefix -libraryjars ,$(full_shared_java_libs)) \
|
2009-08-30 22:39:24 +02:00
|
|
|
-forceprocessing \
|
|
|
|
-printmapping $(proguard_dictionary)
|
2013-08-22 03:32:49 +02:00
|
|
|
|
|
|
|
ifeq ($(filter nosystem,$(LOCAL_PROGUARD_ENABLED)),)
|
2013-01-12 00:31:06 +01:00
|
|
|
proguard_flags += -include $(BUILD_SYSTEM)/proguard.flags
|
2012-08-28 01:01:38 +02:00
|
|
|
ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
|
|
|
|
proguard_flags += -include $(BUILD_SYSTEM)/proguard.emma.flags
|
|
|
|
endif
|
2010-02-01 18:51:23 +01:00
|
|
|
# If this is a test package, add proguard keep flags for tests.
|
2013-08-22 03:32:49 +02:00
|
|
|
ifneq ($(LOCAL_INSTRUMENTATION_FOR)$(filter tests,$(LOCAL_MODULE_TAGS)),)
|
|
|
|
proguard_flags += -include $(BUILD_SYSTEM)/proguard_tests.flags
|
2010-02-01 18:51:23 +01:00
|
|
|
endif # test package
|
2013-08-22 03:32:49 +02:00
|
|
|
ifeq ($(filter obfuscation,$(LOCAL_PROGUARD_ENABLED)),)
|
|
|
|
# By default no obfuscation
|
|
|
|
proguard_flags += -dontobfuscate
|
|
|
|
endif # No obfuscation
|
|
|
|
ifeq ($(filter optimization,$(LOCAL_PROGUARD_ENABLED)),)
|
|
|
|
# By default no optimization
|
|
|
|
proguard_flags += -dontoptimize
|
|
|
|
endif # No optimization
|
|
|
|
|
|
|
|
ifdef LOCAL_INSTRUMENTATION_FOR
|
|
|
|
ifeq ($(filter obfuscation,$(LOCAL_PROGUARD_ENABLED)),)
|
|
|
|
# If no obfuscation, link in the instrmented package's classes.jar as a library.
|
|
|
|
# link_instr_classes_jar is defined in base_rule.mk
|
|
|
|
proguard_flags += -libraryjars $(link_instr_classes_jar)
|
|
|
|
else # obfuscation
|
|
|
|
# If obfuscation is enabled, the main app must be obfuscated too.
|
|
|
|
# We need to run obfuscation using the main app's dictionary,
|
|
|
|
# and treat the main app's class.jar as injars instead of libraryjars.
|
|
|
|
proguard_flags := -injars $(link_instr_classes_jar) \
|
|
|
|
-outjars $(intermediates.COMMON)/proguard.$(LOCAL_INSTRUMENTATION_FOR).jar \
|
|
|
|
-include $(link_instr_intermediates_dir.COMMON)/proguard_options \
|
|
|
|
-applymapping $(link_instr_intermediates_dir.COMMON)/proguard_dictionary \
|
|
|
|
-verbose \
|
|
|
|
$(proguard_flags)
|
|
|
|
|
|
|
|
# Sometimes (test + main app) uses different keep rules from the main app -
|
|
|
|
# apply the main app's dictionary anyway.
|
|
|
|
proguard_flags += -ignorewarnings
|
|
|
|
|
|
|
|
# Make sure we run Proguard on the main app first
|
|
|
|
$(full_classes_proguard_jar) : $(link_instr_intermediates_dir.COMMON)/proguard.classes.jar
|
|
|
|
|
|
|
|
endif # no obfuscation
|
|
|
|
endif # LOCAL_INSTRUMENTATION_FOR
|
|
|
|
endif # LOCAL_PROGUARD_ENABLED is not nosystem
|
2009-08-30 22:39:24 +02:00
|
|
|
|
2010-09-29 23:50:41 +02:00
|
|
|
proguard_flag_files := $(addprefix $(LOCAL_PATH)/, $(LOCAL_PROGUARD_FLAG_FILES))
|
|
|
|
LOCAL_PROGUARD_FLAGS += $(addprefix -include , $(proguard_flag_files))
|
|
|
|
|
2014-02-07 16:18:59 +01:00
|
|
|
ifdef LOCAL_TEST_MODULE_TO_PROGUARD_WITH
|
|
|
|
extra_input_jar := $(call intermediates-dir-for,APPS,$(LOCAL_TEST_MODULE_TO_PROGUARD_WITH),,COMMON)/classes.jar
|
|
|
|
else
|
|
|
|
extra_input_jar :=
|
|
|
|
endif
|
|
|
|
$(full_classes_proguard_jar): PRIVATE_EXTRA_INPUT_JAR := $(extra_input_jar)
|
2009-08-30 22:39:24 +02:00
|
|
|
$(full_classes_proguard_jar): PRIVATE_PROGUARD_FLAGS := $(proguard_flags) $(LOCAL_PROGUARD_FLAGS)
|
2014-02-07 16:18:59 +01:00
|
|
|
$(full_classes_proguard_jar) : $(full_classes_jar) $(extra_input_jar) $(proguard_flag_files) | $(ACP) $(PROGUARD)
|
2010-02-01 18:51:23 +01:00
|
|
|
$(call transform-jar-to-proguard)
|
|
|
|
|
2013-08-22 03:32:49 +02:00
|
|
|
else # LOCAL_PROGUARD_ENABLED not defined
|
|
|
|
$(full_classes_proguard_jar) : $(full_classes_jar)
|
|
|
|
@echo Copying: $@
|
|
|
|
$(hide) $(ACP) -fp $< $@
|
|
|
|
|
|
|
|
endif # LOCAL_PROGUARD_ENABLED defined
|
|
|
|
|
2009-08-30 22:39:24 +02:00
|
|
|
|
2011-04-07 03:32:38 +02:00
|
|
|
# Override PRIVATE_INTERMEDIATES_DIR so that install-dex-debug
|
|
|
|
# will work even when intermediates != intermediates.COMMON.
|
|
|
|
$(built_dex_intermediate): PRIVATE_INTERMEDIATES_DIR := $(intermediates.COMMON)
|
|
|
|
$(built_dex_intermediate): PRIVATE_DX_FLAGS := $(LOCAL_DX_FLAGS)
|
2010-03-11 00:48:03 +01:00
|
|
|
# If you instrument class files that have local variable debug information in
|
|
|
|
# them emma does not correctly maintain the local variable table.
|
|
|
|
# This will cause an error when you try to convert the class files for Android.
|
|
|
|
# The workaround here is to build different dex file here based on emma switch
|
|
|
|
# then later copy into classes.dex. When emma is on, dx is run with --no-locals
|
|
|
|
# option to remove local variable information
|
2012-08-22 01:59:01 +02:00
|
|
|
ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
|
2010-03-11 00:48:03 +01:00
|
|
|
$(built_dex_intermediate): PRIVATE_DX_FLAGS += --no-locals
|
|
|
|
endif
|
2010-10-03 03:35:51 +02:00
|
|
|
$(built_dex_intermediate): $(full_classes_proguard_jar) $(DX)
|
2009-03-04 04:28:42 +01:00
|
|
|
$(transform-classes.jar-to-dex)
|
2010-03-11 00:48:03 +01:00
|
|
|
$(built_dex): $(built_dex_intermediate) | $(ACP)
|
|
|
|
@echo Copying: $@
|
2013-08-20 17:05:27 +02:00
|
|
|
$(hide) mkdir -p $(dir $@)
|
|
|
|
$(hide) rm -f $(dir $@)/classes*.dex
|
|
|
|
$(hide) $(ACP) -fp $(dir $<)/classes*.dex $(dir $@)
|
2009-03-04 04:28:42 +01:00
|
|
|
ifneq ($(GENERATE_DEX_DEBUG),)
|
|
|
|
$(install-dex-debug)
|
|
|
|
endif
|
|
|
|
|
|
|
|
findbugs_xml := $(intermediates.COMMON)/findbugs.xml
|
|
|
|
$(findbugs_xml) : PRIVATE_JAR_FILE := $(full_classes_jar)
|
|
|
|
$(findbugs_xml) : PRIVATE_AUXCLASSPATH := $(addprefix -auxclasspath ,$(strip \
|
|
|
|
$(call normalize-path-list,$(filter %.jar,\
|
|
|
|
$(full_java_libs)))))
|
|
|
|
# We can't depend directly on full_classes_jar because the PRIVATE_
|
|
|
|
# vars won't be set up correctly.
|
|
|
|
$(findbugs_xml) : $(LOCAL_BUILT_MODULE)
|
|
|
|
@echo Findbugs: $@
|
|
|
|
$(hide) $(FINDBUGS) -textui -effort:min -xml:withMessages \
|
|
|
|
$(PRIVATE_AUXCLASSPATH) \
|
|
|
|
$(PRIVATE_JAR_FILE) \
|
|
|
|
> $@
|
|
|
|
|
|
|
|
ALL_FINDBUGS_FILES += $(findbugs_xml)
|
|
|
|
|
|
|
|
findbugs_html := $(PRODUCT_OUT)/findbugs/$(LOCAL_MODULE).html
|
|
|
|
$(findbugs_html) : PRIVATE_XML_FILE := $(findbugs_xml)
|
|
|
|
$(LOCAL_MODULE)-findbugs : $(findbugs_html)
|
|
|
|
$(findbugs_html) : $(findbugs_xml)
|
|
|
|
@mkdir -p $(dir $@)
|
2009-05-13 09:44:59 +02:00
|
|
|
@echo ConvertXmlToText: $@
|
2014-05-20 10:04:16 +02:00
|
|
|
$(hide) $(FINDBUGS_DIR)/convertXmlToText -html:fancy.xsl $(PRIVATE_XML_FILE) \
|
2009-03-04 04:28:42 +01:00
|
|
|
> $@
|
|
|
|
|
|
|
|
$(LOCAL_MODULE)-findbugs : $(findbugs_html)
|
|
|
|
|
2013-08-28 22:04:46 +02:00
|
|
|
endif # full_classes_jar is defined
|