2015-08-28 20:47:03 +02:00
|
|
|
# Target Java.
|
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)),)
|
2014-10-18 03:26:39 +02:00
|
|
|
ifneq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
|
2012-04-20 00:36:18 +02:00
|
|
|
LOCAL_SDK_VERSION := $(PDK_BUILD_SDK_VERSION)
|
2014-10-18 03:26:39 +02:00
|
|
|
endif #!LOCAL_NO_STANDARD_LIBRARIES
|
2012-04-20 00:36:18 +02:00
|
|
|
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))
|
|
|
|
|
2017-09-14 23:58:02 +02:00
|
|
|
ifneq ($(LOCAL_MODULE),jacocoagent)
|
|
|
|
ifneq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
|
|
|
|
ifeq ($(EMMA_INSTRUMENT),true)
|
|
|
|
ifneq ($(EMMA_INSTRUMENT_STATIC),true)
|
|
|
|
# For instrumented build, if Jacoco is not being included statically
|
|
|
|
# in instrumented packages then include Jacoco classes into the
|
|
|
|
# bootclasspath.
|
|
|
|
LOCAL_JAVA_LIBRARIES := jacocoagent $(LOCAL_JAVA_LIBRARIES)
|
|
|
|
endif # EMMA_INSTRUMENT_STATIC
|
|
|
|
endif # EMMA_INSTRUMENT
|
|
|
|
endif # !LOCAL_NO_STANDARD_LIBRARIES
|
|
|
|
endif # LOCAL_MODULE == jacocoagent
|
|
|
|
|
2017-09-24 04:52:43 +02:00
|
|
|
ifndef LOCAL_SDK_VERSION
|
|
|
|
ifneq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
|
|
|
|
LOCAL_JAVA_LIBRARIES := $(TARGET_DEFAULT_JAVA_LIBRARIES) $(LOCAL_JAVA_LIBRARIES)
|
|
|
|
endif
|
2016-04-14 21:51:46 +02:00
|
|
|
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)
|
2014-09-16 02:51:11 +02:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += libprotobuf-java-micro
|
2010-11-03 02:43:16 +01:00
|
|
|
else
|
2013-03-28 22:02:14 +01:00
|
|
|
ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),nano)
|
2014-09-16 02:51:11 +02:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += libprotobuf-java-nano
|
2013-03-28 22:02:14 +01:00
|
|
|
else
|
2016-10-06 03:01:10 +02:00
|
|
|
ifeq ($(LOCAL_PROTOC_OPTIMIZE_TYPE),stream)
|
|
|
|
# No library for stream protobufs
|
|
|
|
else
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += libprotobuf-java-lite
|
|
|
|
endif
|
2013-03-28 22:02:14 +01:00
|
|
|
endif
|
2010-11-03 02:43:16 +01:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2016-02-24 23:11:55 +01:00
|
|
|
# LOCAL_STATIC_JAVA_AAR_LIBRARIES and LOCAL_STATIC_ANDROID_LIBRARIES are also LOCAL_STATIC_JAVA_LIBRARIES.
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES := $(strip $(LOCAL_STATIC_JAVA_LIBRARIES) \
|
|
|
|
$(LOCAL_STATIC_JAVA_AAR_LIBRARIES) \
|
|
|
|
$(LOCAL_STATIC_ANDROID_LIBRARIES))
|
|
|
|
# LOCAL_SHARED_ANDROID_LIBRARIES are also LOCAL_JAVA_LIBRARIES.
|
|
|
|
LOCAL_JAVA_LIBRARIES := $(sort $(LOCAL_JAVA_LIBRARIES) $(LOCAL_SHARED_ANDROID_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)
|
|
|
|
|
2016-12-21 23:29:13 +01:00
|
|
|
# Choose leaf name for the compiled jar file.
|
|
|
|
ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
|
|
|
|
full_classes_compiled_jar_leaf := classes-no-debug-var.jar
|
|
|
|
built_dex_intermediate_leaf := no-local
|
|
|
|
else
|
|
|
|
full_classes_compiled_jar_leaf := classes-full-debug.jar
|
|
|
|
built_dex_intermediate_leaf := with-local
|
|
|
|
endif
|
|
|
|
|
2010-09-23 20:48:38 +02:00
|
|
|
ifeq ($(LOCAL_PROGUARD_ENABLED),disabled)
|
|
|
|
LOCAL_PROGUARD_ENABLED :=
|
2009-07-17 21:33:40 +02:00
|
|
|
endif
|
|
|
|
|
2017-08-31 23:43:04 +02:00
|
|
|
full_classes_turbine_jar := $(intermediates.COMMON)/classes-turbine.jar
|
|
|
|
full_classes_header_jarjar := $(intermediates.COMMON)/classes-header-jarjar.jar
|
|
|
|
full_classes_header_jar := $(intermediates.COMMON)/classes-header.jar
|
2016-12-21 23:29:13 +01:00
|
|
|
full_classes_compiled_jar := $(intermediates.COMMON)/$(full_classes_compiled_jar_leaf)
|
2017-05-23 01:21:49 +02:00
|
|
|
full_classes_processed_jar := $(intermediates.COMMON)/classes-processed.jar
|
2017-04-06 00:30:42 +02:00
|
|
|
full_classes_desugar_jar := $(intermediates.COMMON)/classes-desugar.jar
|
2016-12-21 23:29:13 +01:00
|
|
|
jarjar_leaf := classes-jarjar.jar
|
|
|
|
full_classes_jarjar_jar := $(intermediates.COMMON)/$(jarjar_leaf)
|
2017-04-06 00:30:42 +02:00
|
|
|
full_classes_proguard_jar := $(intermediates.COMMON)/classes-proguard.jar
|
2017-09-13 22:13:53 +02:00
|
|
|
full_classes_combined_jar := $(intermediates.COMMON)/classes-combined.jar
|
2016-12-21 23:29:13 +01: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
|
2017-05-27 00:22:02 +02:00
|
|
|
java_source_list_file := $(intermediates.COMMON)/java-source-list
|
|
|
|
|
2010-09-23 20:48:38 +02:00
|
|
|
|
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 += \
|
2017-08-31 23:43:04 +02:00
|
|
|
$(full_classes_turbine_jar) \
|
2009-07-17 21:33:40 +02:00
|
|
|
$(full_classes_compiled_jar) \
|
2016-12-22 02:11:03 +01:00
|
|
|
$(full_classes_desugar_jar) \
|
2010-09-23 20:48:38 +02:00
|
|
|
$(full_classes_jarjar_jar) \
|
|
|
|
$(full_classes_jar) \
|
2017-09-13 22:13:53 +02:00
|
|
|
$(full_classes_combined_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) \
|
2017-05-27 00:22:02 +02:00
|
|
|
$(full_classes_stubs_jar) \
|
|
|
|
$(java_source_list_file)
|
2010-09-23 20:48:38 +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 :=
|
2015-12-04 22:59:18 +01:00
|
|
|
rs_generated_res_dir :=
|
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
|
2016-12-22 02:37:00 +01:00
|
|
|
renderscript_intermediate.COMMON := $(intermediates.COMMON)/renderscript
|
2010-07-16 02:17:52 +02:00
|
|
|
|
2015-07-29 02:43:51 +02:00
|
|
|
# Defaulting to an empty string uses the latest available platform SDK.
|
2011-08-10 22:53:05 +02:00
|
|
|
renderscript_target_api :=
|
2011-08-30 03:53:53 +02:00
|
|
|
|
|
|
|
ifneq (,$(LOCAL_RENDERSCRIPT_TARGET_API))
|
2015-07-29 02:43:51 +02:00
|
|
|
renderscript_target_api := $(LOCAL_RENDERSCRIPT_TARGET_API)
|
2011-08-30 03:53:53 +02:00
|
|
|
else
|
2015-07-29 02:43:51 +02:00
|
|
|
ifneq (,$(LOCAL_SDK_VERSION))
|
|
|
|
# Set target-api for LOCAL_SDK_VERSIONs other than current.
|
2015-11-06 16:20:51 +01:00
|
|
|
ifneq (,$(filter-out current system_current test_current, $(LOCAL_SDK_VERSION)))
|
2015-07-29 02:43:51 +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
|
|
|
|
2015-07-29 20:46:23 +02:00
|
|
|
# For 64-bit, we always have to upgrade to at least 21 for compat build.
|
|
|
|
ifneq ($(LOCAL_RENDERSCRIPT_COMPATIBILITY),)
|
|
|
|
ifeq ($(TARGET_IS_64_BIT),true)
|
|
|
|
ifneq ($(filter $(RSCOMPAT_32BIT_ONLY_API_LEVELS),$(renderscript_target_api)),)
|
|
|
|
renderscript_target_api := 21
|
|
|
|
endif
|
2015-07-29 02:43:51 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
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
|
2015-11-06 16:20:51 +01:00
|
|
|
ifneq ($(filter-out current system_current test_current,$(LOCAL_SDK_VERSION))$(if $(TARGET_BUILD_APPS),$(filter current system_current test_current,$(LOCAL_SDK_VERSION))),)
|
2012-05-11 02:25:51 +02:00
|
|
|
# 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 \
|
2017-01-09 02:40:21 +01:00
|
|
|
$(TOPDIR)frameworks/rs/script_api/include \
|
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
|
|
|
|
|
2015-04-04 01:15:28 +02:00
|
|
|
bc_files := $(patsubst %.fs,%.bc, $(patsubst %.rs,%.bc, $(notdir $(renderscript_sources))))
|
|
|
|
bc_dep_files := $(addprefix $(renderscript_intermediate.COMMON)/,$(patsubst %.bc,%.d,$(bc_files)))
|
|
|
|
|
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)
|
2015-04-04 01:15:28 +02:00
|
|
|
$(RenderScript_file_stamp): PRIVATE_DEP_FILES := $(bc_dep_files)
|
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)
|
|
|
|
|
2015-04-04 01:15:28 +02:00
|
|
|
# include the dependency files (.d/.P) generated by llvm-rs-cc.
|
2016-02-01 09:59:01 +01:00
|
|
|
$(call include-depfile,$(RenderScript_file_stamp).P,$(RenderScript_file_stamp))
|
2015-04-03 18:53:41 +02:00
|
|
|
|
2012-11-29 01:52:41 +01:00
|
|
|
ifneq ($(LOCAL_RENDERSCRIPT_COMPATIBILITY),)
|
2015-01-08 03:18:41 +01:00
|
|
|
|
|
|
|
|
|
|
|
ifeq ($(filter $(RSCOMPAT_32BIT_ONLY_API_LEVELS),$(renderscript_target_api)),)
|
|
|
|
ifeq ($(TARGET_IS_64_BIT),true)
|
|
|
|
renderscript_intermediate.bc_folder := $(renderscript_intermediate.COMMON)/res/raw/bc64/
|
|
|
|
else
|
|
|
|
renderscript_intermediate.bc_folder := $(renderscript_intermediate.COMMON)/res/raw/bc32/
|
|
|
|
endif
|
|
|
|
else
|
|
|
|
renderscript_intermediate.bc_folder := $(renderscript_intermediate.COMMON)/res/raw/
|
|
|
|
endif
|
|
|
|
|
2012-11-29 01:52:41 +01:00
|
|
|
rs_generated_bc := $(addprefix \
|
2015-01-08 03:18:41 +01:00
|
|
|
$(renderscript_intermediate.bc_folder), $(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
|
2015-02-13 01:22:59 +01:00
|
|
|
# One exception is librsjni.so, which is needed for
|
|
|
|
# both native path and compat path.
|
|
|
|
rs_jni_lib := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/librsjni.so
|
|
|
|
LOCAL_JNI_SHARED_LIBRARIES += librsjni
|
|
|
|
|
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
|
2015-02-13 01:22:59 +01:00
|
|
|
LOCAL_JNI_SHARED_LIBRARIES += libRSSupport
|
2012-12-17 23:23:14 +01:00
|
|
|
|
2014-11-20 20:05:18 +01:00
|
|
|
rs_support_io_lib :=
|
|
|
|
# check if the target api level support USAGE_IO
|
|
|
|
ifeq ($(filter $(RSCOMPAT_NO_USAGEIO_API_LEVELS),$(renderscript_target_api)),)
|
|
|
|
rs_support_io_lib := $(TARGET_OUT_INTERMEDIATE_LIBRARIES)/libRSSupportIO.so
|
|
|
|
LOCAL_JNI_SHARED_LIBRARIES += libRSSupportIO
|
|
|
|
endif
|
2013-05-14 00:46:37 +02:00
|
|
|
|
2017-08-17 01:05:26 +02:00
|
|
|
my_arch := $(TARGET_$(LOCAL_2ND_ARCH_VAR_PREFIX)ARCH)
|
|
|
|
ifneq (,$(filter arm64 mips64 x86_64,$(my_arch)))
|
|
|
|
my_min_sdk_version := 21
|
|
|
|
else
|
|
|
|
my_min_sdk_version := $(MIN_SUPPORTED_SDK_VERSION)
|
|
|
|
endif
|
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) \
|
2014-11-20 20:05:18 +01:00
|
|
|
$(rs_support_lib) $(rs_support_io_lib) $(rs_jni_lib) $(rs_compiler_rt)
|
2013-03-28 00:51:38 +01:00
|
|
|
$(rs_compatibility_jni_libs): $(BCC_COMPAT)
|
2015-07-21 03:40:18 +02:00
|
|
|
$(rs_compatibility_jni_libs): PRIVATE_CXX := $(CXX_WRAPPER) $(TARGET_CXX)
|
2017-08-17 01:05:26 +02:00
|
|
|
$(rs_compatibility_jni_libs): PRIVATE_SDK_VERSION := $(my_min_sdk_version)
|
2013-02-16 08:02:20 +01:00
|
|
|
$(rs_compatibility_jni_libs): $(renderscript_intermediate)/librs.%.so: \
|
2017-08-17 01:05:26 +02:00
|
|
|
$(renderscript_intermediate.bc_folder)%.bc \
|
|
|
|
$(SOONG_OUT_DIR)/ndk.timestamp
|
2012-11-29 01:52:41 +01:00
|
|
|
$(transform-bc-to-so)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
2013-05-14 00:46:37 +02:00
|
|
|
endif
|
|
|
|
|
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.
|
2015-12-04 22:59:18 +01:00
|
|
|
rs_generated_res_dir := $(renderscript_intermediate.COMMON)/res
|
|
|
|
LOCAL_RESOURCE_DIR := $(rs_generated_res_dir) $(LOCAL_RESOURCE_DIR)
|
2010-07-16 02:17:52 +02:00
|
|
|
endif
|
|
|
|
|
2015-08-28 20:47:03 +02:00
|
|
|
|
|
|
|
###########################################################
|
|
|
|
## AIDL: Compile .aidl files to .java
|
|
|
|
###########################################################
|
|
|
|
aidl_sources := $(filter %.aidl,$(LOCAL_SRC_FILES))
|
2016-06-24 01:44:47 +02:00
|
|
|
aidl_java_sources :=
|
2015-08-28 20:47:03 +02:00
|
|
|
|
|
|
|
ifneq ($(strip $(aidl_sources)),)
|
|
|
|
|
|
|
|
aidl_preprocess_import :=
|
|
|
|
ifdef LOCAL_SDK_VERSION
|
2015-11-06 16:20:51 +01:00
|
|
|
ifneq ($(filter current system_current test_current, $(LOCAL_SDK_VERSION)$(TARGET_BUILD_APPS)),)
|
2015-08-28 20:47:03 +02:00
|
|
|
# LOCAL_SDK_VERSION is current and no TARGET_BUILD_APPS
|
|
|
|
aidl_preprocess_import := $(TARGET_OUT_COMMON_INTERMEDIATES)/framework.aidl
|
|
|
|
else
|
|
|
|
aidl_preprocess_import := $(HISTORICAL_SDK_VERSIONS_ROOT)/$(LOCAL_SDK_VERSION)/framework.aidl
|
|
|
|
endif # not current or system_current
|
|
|
|
else
|
|
|
|
# build against the platform.
|
|
|
|
LOCAL_AIDL_INCLUDES += $(FRAMEWORKS_BASE_JAVA_SRC_DIRS)
|
|
|
|
endif # LOCAL_SDK_VERSION
|
|
|
|
|
2016-06-24 01:44:47 +02:00
|
|
|
$(foreach s,$(aidl_sources),\
|
2017-09-30 02:37:31 +02:00
|
|
|
$(eval $(call define-aidl-java-rule,$(s),$(intermediates.COMMON)/aidl,aidl_java_sources)))
|
2016-01-28 08:10:00 +01:00
|
|
|
$(foreach java,$(aidl_java_sources), \
|
|
|
|
$(call include-depfile,$(java:%.java=%.P),$(java)))
|
2015-08-28 20:47:03 +02:00
|
|
|
|
2016-06-24 01:44:47 +02:00
|
|
|
$(aidl_java_sources) : $(LOCAL_ADDITIONAL_DEPENDENCIES) $(aidl_preprocess_import)
|
|
|
|
|
|
|
|
$(aidl_java_sources): PRIVATE_AIDL_FLAGS := -b $(addprefix -p,$(aidl_preprocess_import)) -I$(LOCAL_PATH) -I$(LOCAL_PATH)/src $(addprefix -I,$(LOCAL_AIDL_INCLUDES))
|
2016-06-24 22:13:52 +02:00
|
|
|
$(aidl_java_sources): PRIVATE_MODULE := $(LOCAL_MODULE)
|
2016-06-24 01:44:47 +02:00
|
|
|
|
2015-08-28 20:47:03 +02:00
|
|
|
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.
|
2015-09-02 04:12:05 +02:00
|
|
|
ifndef LOCAL_CHECKED_MODULE
|
2015-01-20 15:18:48 +01:00
|
|
|
ifdef full_classes_jar
|
2017-04-27 22:34:02 +02:00
|
|
|
LOCAL_CHECKED_MODULE := $(full_classes_compiled_jar)
|
2013-08-28 22:04:46 +02:00
|
|
|
endif
|
2015-08-18 19:18:18 +02:00
|
|
|
endif
|
2013-01-30 20:22:06 +01:00
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
#######################################
|
|
|
|
include $(BUILD_SYSTEM)/base_rules.mk
|
|
|
|
#######################################
|
|
|
|
|
2015-09-04 09:23:49 +02:00
|
|
|
###########################################################
|
|
|
|
## logtags: emit java source
|
|
|
|
###########################################################
|
|
|
|
ifneq ($(strip $(logtags_sources)),)
|
|
|
|
|
2017-09-30 02:37:31 +02:00
|
|
|
logtags_java_sources := $(patsubst %.logtags,%.java,$(addprefix $(intermediates.COMMON)/logtags/, $(logtags_sources)))
|
2015-09-04 09:23:49 +02:00
|
|
|
logtags_sources := $(addprefix $(LOCAL_PATH)/, $(logtags_sources))
|
|
|
|
|
2016-03-28 20:29:21 +02:00
|
|
|
$(logtags_java_sources): PRIVATE_MERGED_TAG := $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt
|
2017-09-30 02:37:31 +02:00
|
|
|
$(logtags_java_sources): $(intermediates.COMMON)/logtags/%.java: $(LOCAL_PATH)/%.logtags $(TARGET_OUT_COMMON_INTERMEDIATES)/all-event-log-tags.txt $(JAVATAGS) build/tools/event_log_tags.py
|
2015-09-04 09:23:49 +02:00
|
|
|
$(transform-logtags-to-java)
|
|
|
|
|
|
|
|
else
|
|
|
|
logtags_java_sources :=
|
|
|
|
endif
|
|
|
|
|
2015-08-28 20:47:03 +02:00
|
|
|
##########################################
|
|
|
|
java_sources := $(addprefix $(LOCAL_PATH)/, $(filter %.java,$(LOCAL_SRC_FILES))) $(aidl_java_sources) $(logtags_java_sources) \
|
|
|
|
$(filter %.java,$(LOCAL_GENERATED_SOURCES))
|
2017-10-04 18:26:06 +02:00
|
|
|
java_intermediate_sources := $(addprefix $(TARGET_OUT_COMMON_INTERMEDIATES)/, $(filter %.java,$(LOCAL_INTERMEDIATE_SOURCES)))
|
|
|
|
all_java_sources := $(java_sources) $(java_intermediate_sources)
|
|
|
|
|
|
|
|
enable_sharding :=
|
|
|
|
ifneq ($(TURBINE_ENABLED),false)
|
|
|
|
ifneq ($(LOCAL_JAVAC_SHARD_SIZE),)
|
|
|
|
ifneq ($(LOCAL_JAR_PROCESSOR),)
|
|
|
|
$(call pretty-error,Cannot set both LOCAL_JAVAC_SHARD_SIZE and LOCAL_JAR_PROCESSOR!)
|
|
|
|
endif # LOCAL_JAR_PROCESSOR is not empty
|
|
|
|
enable_sharding := true
|
|
|
|
|
|
|
|
num_shards := $(call int_divide,$(words $(java_sources)),$(LOCAL_JAVAC_SHARD_SIZE))
|
|
|
|
ifneq ($(words $(java_sources)),$(call int_multiply,$(LOCAL_JAVAC_SHARD_SIZE),$(num_shards)))
|
|
|
|
# increment number of shards by 1.
|
|
|
|
num_shards := $(call int_plus,$(num_shards),1)
|
|
|
|
endif
|
|
|
|
|
|
|
|
shard_idx_list := $(call int_range_list,1,$(num_shards))
|
|
|
|
sharded_java_source_list_files += $(foreach x,$(shard_idx_list),$(java_source_list_file).shard.$(x))
|
|
|
|
sharded_jar_list += $(foreach x,$(shard_idx_list),$(full_classes_compiled_jar).shard.$(x))
|
|
|
|
|
|
|
|
# always put dynamically-located .java files (generated by Proto/resource, etc) in a new final shard.
|
|
|
|
# increment number of shards by 1.
|
|
|
|
num_shards := $(call int_plus,$(num_shards),1)
|
|
|
|
sharded_java_source_list_files += $(java_source_list_file).shard.$(num_shards)
|
|
|
|
sharded_jar_list += $(full_classes_compiled_jar).shard.$(num_shards)
|
|
|
|
LOCAL_INTERMEDIATE_TARGETS += $(sharded_java_source_list_files)
|
|
|
|
LOCAL_INTERMEDIATE_TARGETS += $(sharded_jar_list)
|
|
|
|
endif # LOCAL_JAVAC_SHARD_SIZE is not empty
|
|
|
|
endif # TURBINE_ENABLED != false
|
2015-08-28 20:47:03 +02:00
|
|
|
|
|
|
|
include $(BUILD_SYSTEM)/java_common.mk
|
|
|
|
|
2016-12-22 02:37:00 +01:00
|
|
|
$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_HAS_RS_SOURCES := $(if $(renderscript_sources),true)
|
|
|
|
$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_RS_SOURCE_INTERMEDIATES_DIR := $(intermediates.COMMON)/renderscript
|
|
|
|
|
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
|
|
|
|
|
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.
|
2017-03-29 21:17:36 +02:00
|
|
|
$(eval $(call copy-one-file,$(full_classes_jar),$(full_classes_stubs_jar)))
|
2009-04-10 04:31:12 +02:00
|
|
|
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
|
|
|
|
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.
|
2016-09-20 16:12:30 +02:00
|
|
|
|
|
|
|
# If error prone is enabled then add LOCAL_ERROR_PRONE_FLAGS to LOCAL_JAVACFLAGS
|
|
|
|
ifeq ($(RUN_ERROR_PRONE),true)
|
|
|
|
LOCAL_JAVACFLAGS += $(LOCAL_ERROR_PRONE_FLAGS)
|
|
|
|
endif
|
|
|
|
|
2017-06-30 15:51:12 +02:00
|
|
|
# For user / userdebug builds, strip the local variable table and the local variable
|
|
|
|
# type table. This has no bearing on stack traces, but will leave less information
|
|
|
|
# available via JDWP.
|
|
|
|
ifneq (,$(PRODUCT_MINIMIZE_JAVA_DEBUG_INFO))
|
|
|
|
ifneq (,$(filter userdebug user,$(TARGET_BUILD_VARIANT)))
|
|
|
|
LOCAL_JAVACFLAGS+= -g:source,lines
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2017-05-27 00:22:02 +02:00
|
|
|
# List of dependencies for anything that needs all java sources in place
|
|
|
|
java_sources_deps := \
|
|
|
|
$(java_sources) \
|
|
|
|
$(java_resource_sources) \
|
|
|
|
$(RenderScript_file_stamp) \
|
|
|
|
$(proto_java_sources_file_stamp) \
|
|
|
|
$(LOCAL_ADDITIONAL_DEPENDENCIES)
|
|
|
|
|
|
|
|
$(java_source_list_file): $(java_sources_deps)
|
|
|
|
$(write-java-source-list)
|
|
|
|
|
2017-10-04 18:26:06 +02:00
|
|
|
ifdef enable_sharding
|
|
|
|
$(foreach x,$(shard_idx_list),\
|
|
|
|
$(eval $(call save-sharded-java-source-list,$(x),\
|
|
|
|
$(wordlist $(call int_plus,1,$(call int_multiply,$(LOCAL_JAVAC_SHARD_SIZE),$(call int_subtract,$(x),1))),\
|
|
|
|
$(call int_multiply,$(LOCAL_JAVAC_SHARD_SIZE),$(x)),$(sort $(java_sources))))))
|
|
|
|
|
|
|
|
# always put dynamically-located .java files (generated by Proto/resource, etc) in a new final shard.
|
|
|
|
$(java_source_list_file).shard.$(num_shards): PRIVATE_JAVA_INTERMEDIATE_SOURCES := $(java_intermediate_sources)
|
|
|
|
$(java_source_list_file).shard.$(num_shards): $(java_resource_sources) \
|
|
|
|
$(RenderScript_file_stamp) \
|
|
|
|
$(proto_java_sources_file_stamp) \
|
|
|
|
$(LOCAL_ADDITIONAL_DEPENDENCIES) \
|
|
|
|
$(NORMALIZE_PATH)
|
|
|
|
$(hide) rm -f $@
|
|
|
|
$(call dump-words-to-file,$(PRIVATE_JAVA_INTERMEDIATE_SOURCES),$@.tmp)
|
|
|
|
$(call fetch-additional-java-source,$@.tmp)
|
|
|
|
$(hide) tr ' ' '\n' < $@.tmp | $(NORMALIZE_PATH) | sort -u > $@
|
|
|
|
|
|
|
|
# Javac sharding with header libs including its own header jar as one of dependency.
|
|
|
|
$(foreach x,$(shard_idx_list),\
|
|
|
|
$(eval $(call create-classes-full-debug.jar,$(full_classes_compiled_jar).shard.$(x),\
|
|
|
|
$(java_source_list_file).shard.$(x),\
|
|
|
|
$(full_java_header_libs) $(full_classes_header_jar),$(x),\
|
|
|
|
$(wordlist $(call int_plus,1,$(call int_multiply,$(LOCAL_JAVAC_SHARD_SIZE),$(call int_subtract,$(x),1))),\
|
|
|
|
$(call int_multiply,$(LOCAL_JAVAC_SHARD_SIZE),$(x)),$(sort $(java_sources))))))
|
|
|
|
|
|
|
|
# Javac sharding for last shard with additional Java dependencies.
|
|
|
|
$(eval $(call create-classes-full-debug.jar,$(full_classes_compiled_jar).shard.$(num_shards),\
|
|
|
|
$(java_source_list_file).shard.$(num_shards),$(full_java_header_libs) $(full_classes_header_jar),$(strip \
|
|
|
|
$(num_shards)),$$(java_resource_sources) $$(RenderScript_file_stamp) \
|
|
|
|
$$(proto_java_sources_file_stamp) $$(LOCAL_ADDITIONAL_DEPENDENCIES)))
|
|
|
|
|
|
|
|
$(full_classes_compiled_jar): PRIVATE_SHARDED_JAR_LIST := $(sharded_jar_list)
|
|
|
|
$(full_classes_compiled_jar): $(sharded_jar_list) | $(MERGE_ZIPS)
|
|
|
|
$(MERGE_ZIPS) -j $@ $(PRIVATE_SHARDED_JAR_LIST)
|
|
|
|
else
|
|
|
|
# we can't use single $ for java_sources_deps since it may contain hash '#' sign.
|
|
|
|
$(eval $(call create-classes-full-debug.jar,$(full_classes_compiled_jar),\
|
|
|
|
$(java_source_list_file),$(full_java_header_libs),,$$(java_sources_deps)))
|
|
|
|
|
|
|
|
endif # ifdef enable_sharding
|
2009-03-25 03:07:34 +01:00
|
|
|
|
2017-09-27 01:17:24 +02:00
|
|
|
ifneq ($(TURBINE_ENABLED),false)
|
|
|
|
|
2017-08-31 23:43:04 +02:00
|
|
|
$(full_classes_turbine_jar): PRIVATE_JAVACFLAGS := $(LOCAL_JAVACFLAGS) $(annotation_processor_flags)
|
|
|
|
$(full_classes_turbine_jar): PRIVATE_DONT_DELETE_JAR_META_INF := $(LOCAL_DONT_DELETE_JAR_META_INF)
|
|
|
|
$(full_classes_turbine_jar): \
|
|
|
|
$(java_source_list_file) \
|
|
|
|
$(java_sources_deps) \
|
|
|
|
$(full_java_header_libs) \
|
2017-09-24 03:19:05 +02:00
|
|
|
$(full_java_bootclasspath_libs) \
|
2017-10-12 22:34:40 +02:00
|
|
|
$(full_java_system_modules_deps) \
|
2017-08-31 23:43:04 +02:00
|
|
|
$(NORMALIZE_PATH) \
|
|
|
|
$(JAR_ARGS) \
|
|
|
|
$(ZIPTIME) \
|
2017-09-13 22:13:53 +02:00
|
|
|
| $(TURBINE) \
|
|
|
|
$(MERGE_ZIPS)
|
2017-08-31 23:43:04 +02:00
|
|
|
$(transform-java-to-header.jar)
|
|
|
|
|
|
|
|
.KATI_RESTAT: $(full_classes_turbine_jar)
|
|
|
|
|
|
|
|
# Run jarjar before generate classes-header.jar if necessary.
|
|
|
|
ifneq ($(strip $(LOCAL_JARJAR_RULES)),)
|
|
|
|
$(full_classes_header_jarjar): PRIVATE_JARJAR_RULES := $(LOCAL_JARJAR_RULES)
|
|
|
|
$(full_classes_header_jarjar): $(full_classes_turbine_jar) $(LOCAL_JARJAR_RULES) | $(JARJAR)
|
|
|
|
@echo Header JarJar: $@
|
|
|
|
$(hide) $(JAVA) -jar $(JARJAR) process $(PRIVATE_JARJAR_RULES) $< $@
|
|
|
|
else
|
|
|
|
full_classes_header_jarjar := $(full_classes_turbine_jar)
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(eval $(call copy-one-file,$(full_classes_header_jarjar),$(full_classes_header_jar)))
|
|
|
|
|
2017-09-27 01:17:24 +02:00
|
|
|
endif # TURBINE_ENABLED != false
|
|
|
|
|
2016-03-24 19:00:30 +01:00
|
|
|
javac-check : $(full_classes_compiled_jar)
|
2016-09-15 15:34:42 +02:00
|
|
|
javac-check-$(LOCAL_MODULE) : $(full_classes_compiled_jar)
|
2016-03-24 19:00:30 +01:00
|
|
|
|
2017-09-13 22:13:53 +02:00
|
|
|
$(full_classes_combined_jar): PRIVATE_DONT_DELETE_JAR_META_INF := $(LOCAL_DONT_DELETE_JAR_META_INF)
|
|
|
|
$(full_classes_combined_jar): $(full_classes_compiled_jar) \
|
2017-09-20 23:56:48 +02:00
|
|
|
$(jar_manifest_file) \
|
2017-09-13 22:13:53 +02:00
|
|
|
$(full_static_java_libs) | $(MERGE_ZIPS)
|
2017-09-20 23:56:48 +02:00
|
|
|
$(if $(PRIVATE_JAR_MANIFEST), $(hide) sed -e "s/%BUILD_NUMBER%/$(BUILD_NUMBER_FROM_FILE)/" \
|
|
|
|
$(PRIVATE_JAR_MANIFEST) > $(dir $@)/manifest.mf)
|
|
|
|
$(MERGE_ZIPS) -j $(if $(PRIVATE_JAR_MANIFEST),-m $(dir $@)/manifest.mf) \
|
|
|
|
$(if $(PRIVATE_DONT_DELETE_JAR_META_INF),,-stripDir META-INF -zipToNotStrip $<) \
|
|
|
|
$@ $< $(call reverse-list,$(PRIVATE_STATIC_JAVA_LIBRARIES))
|
2017-09-13 22:13:53 +02:00
|
|
|
|
2017-05-23 01:21:49 +02:00
|
|
|
ifdef LOCAL_JAR_PROCESSOR
|
|
|
|
# LOCAL_JAR_PROCESSOR_ARGS must be evaluated here to set up the rule-local
|
|
|
|
# PRIVATE_JAR_PROCESSOR_ARGS variable, but $< and $@ are not available yet.
|
|
|
|
# Set ${in} and ${out} so they can be referenced by LOCAL_JAR_PROCESSOR_ARGS
|
|
|
|
# using deferred evaluation (LOCAL_JAR_PROCESSOR_ARGS = instead of :=).
|
2017-09-13 22:13:53 +02:00
|
|
|
in := $(full_classes_combined_jar)
|
2017-05-23 01:21:49 +02:00
|
|
|
out := $(full_classes_processed_jar).tmp
|
2017-07-14 04:25:47 +02:00
|
|
|
my_jar_processor := $(HOST_OUT_JAVA_LIBRARIES)/$(LOCAL_JAR_PROCESSOR).jar
|
|
|
|
|
2017-05-23 01:21:49 +02:00
|
|
|
$(full_classes_processed_jar): PRIVATE_JAR_PROCESSOR_ARGS := $(LOCAL_JAR_PROCESSOR_ARGS)
|
2017-07-14 04:25:47 +02:00
|
|
|
$(full_classes_processed_jar): PRIVATE_JAR_PROCESSOR := $(my_jar_processor)
|
2017-05-23 01:21:49 +02:00
|
|
|
$(full_classes_processed_jar): PRIVATE_TMP_OUT := $(out)
|
|
|
|
in :=
|
|
|
|
out :=
|
|
|
|
|
2017-09-13 22:13:53 +02:00
|
|
|
$(full_classes_processed_jar): $(full_classes_combined_jar) $(my_jar_processor)
|
2017-05-23 01:21:49 +02:00
|
|
|
@echo Processing $@ with $(PRIVATE_JAR_PROCESSOR)
|
|
|
|
$(hide) rm -f $@ $(PRIVATE_TMP_OUT)
|
2017-06-30 22:55:38 +02:00
|
|
|
$(hide) $(JAVA) -jar $(PRIVATE_JAR_PROCESSOR) $(PRIVATE_JAR_PROCESSOR_ARGS)
|
2017-05-23 01:21:49 +02:00
|
|
|
$(hide) mv $(PRIVATE_TMP_OUT) $@
|
|
|
|
|
2017-07-14 04:25:47 +02:00
|
|
|
my_jar_processor :=
|
2017-05-23 01:21:49 +02:00
|
|
|
else
|
2017-09-13 22:13:53 +02:00
|
|
|
full_classes_processed_jar := $(full_classes_combined_jar)
|
2017-05-23 01:21:49 +02:00
|
|
|
endif
|
|
|
|
|
2017-09-13 23:56:11 +02:00
|
|
|
# Run jarjar if necessary
|
|
|
|
ifneq ($(strip $(LOCAL_JARJAR_RULES)),)
|
|
|
|
$(full_classes_jarjar_jar): PRIVATE_JARJAR_RULES := $(LOCAL_JARJAR_RULES)
|
|
|
|
$(full_classes_jarjar_jar): $(full_classes_processed_jar) $(LOCAL_JARJAR_RULES) | $(JARJAR)
|
|
|
|
@echo JarJar: $@
|
|
|
|
$(hide) $(JAVA) -jar $(JARJAR) process $(PRIVATE_JARJAR_RULES) $< $@
|
|
|
|
else
|
|
|
|
full_classes_jarjar_jar := $(full_classes_processed_jar)
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(eval $(call copy-one-file,$(full_classes_jarjar_jar),$(full_classes_jar)))
|
|
|
|
|
2016-12-22 02:11:03 +01:00
|
|
|
my_desugaring :=
|
2017-03-21 18:17:04 +01:00
|
|
|
ifndef LOCAL_IS_STATIC_JAVA_LIBRARY
|
2016-12-22 02:11:03 +01:00
|
|
|
my_desugaring := true
|
|
|
|
$(full_classes_desugar_jar): PRIVATE_DX_FLAGS := $(LOCAL_DX_FLAGS)
|
2017-09-13 23:56:11 +02:00
|
|
|
$(full_classes_desugar_jar): $(full_classes_jar) $(full_java_header_libs) $(DESUGAR)
|
2016-12-22 02:11:03 +01:00
|
|
|
$(desugar-classes-jar)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef my_desugaring
|
2017-09-13 23:56:11 +02:00
|
|
|
full_classes_desugar_jar := $(full_classes_jar)
|
2016-12-22 02:11:03 +01:00
|
|
|
endif
|
|
|
|
|
2017-09-13 23:56:11 +02:00
|
|
|
LOCAL_FULL_CLASSES_PRE_JACOCO_JAR := $(full_classes_desugar_jar)
|
2016-12-21 23:29:13 +01:00
|
|
|
|
2017-04-12 01:36:46 +02:00
|
|
|
#######################################
|
|
|
|
include $(BUILD_SYSTEM)/jacoco.mk
|
|
|
|
#######################################
|
2016-12-21 23:29:13 +01:00
|
|
|
|
2017-04-12 01:36:46 +02:00
|
|
|
full_classes_pre_proguard_jar := $(LOCAL_FULL_CLASSES_JACOCO_JAR)
|
2010-02-01 18:51:23 +01:00
|
|
|
|
2017-04-06 00:30:42 +02:00
|
|
|
# Keep a copy of the jar just before proguard processing.
|
|
|
|
$(eval $(call copy-one-file,$(full_classes_pre_proguard_jar),$(intermediates.COMMON)/classes-pre-proguard.jar))
|
2015-11-09 08:47:42 +01:00
|
|
|
|
2017-03-29 21:17:36 +02:00
|
|
|
# Run proguard if necessary
|
2013-08-22 03:32:49 +02:00
|
|
|
ifdef LOCAL_PROGUARD_ENABLED
|
2014-09-10 02:08:46 +02:00
|
|
|
ifneq ($(filter-out full custom nosystem obfuscation optimization shrinktests,$(LOCAL_PROGUARD_ENABLED)),)
|
2013-08-22 03:32:49 +02:00
|
|
|
$(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
|
2015-05-05 04:21:48 +02:00
|
|
|
|
|
|
|
# Hack: see b/20667396
|
|
|
|
# When an app's LOCAL_SDK_VERSION is lower than the support library's LOCAL_SDK_VERSION,
|
|
|
|
# we artifically raises the "SDK version" "linked" by ProGuard, to
|
|
|
|
# - suppress ProGuard warnings of referencing symbols unknown to the lower SDK version.
|
|
|
|
# - prevent ProGuard stripping subclass in the support library that extends class added in the higher SDK version.
|
|
|
|
my_support_library_sdk_raise :=
|
|
|
|
ifneq (,$(filter android-support-%,$(LOCAL_STATIC_JAVA_LIBRARIES)))
|
|
|
|
ifdef LOCAL_SDK_VERSION
|
|
|
|
ifdef TARGET_BUILD_APPS
|
2015-11-06 16:20:51 +01:00
|
|
|
ifeq (,$(filter current system_current test_current, $(LOCAL_SDK_VERSION)))
|
2017-08-31 23:43:04 +02:00
|
|
|
my_support_library_sdk_raise := $(call java-lib-header-files, sdk_vcurrent)
|
2015-06-26 21:33:06 +02:00
|
|
|
endif
|
2015-05-05 04:21:48 +02:00
|
|
|
else
|
|
|
|
# For platform build, we can't just raise to the "current" SDK,
|
|
|
|
# that would break apps that use APIs removed from the current SDK.
|
2017-09-24 04:52:43 +02:00
|
|
|
my_support_library_sdk_raise := $(call java-lib-header-files,$(TARGET_DEFAULT_BOOTCLASSPATH_LIBRARIES) $(TARGET_DEFAULT_JAVA_LIBRARIES))
|
2015-05-05 04:21:48 +02:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2017-02-22 23:26:55 +01:00
|
|
|
legacy_proguard_flags := $(addprefix -libraryjars ,$(my_support_library_sdk_raise) \
|
2017-09-24 04:52:43 +02:00
|
|
|
$(filter-out $(my_support_library_sdk_raise), \
|
|
|
|
$(full_java_bootclasspath_libs) \
|
|
|
|
$(full_shared_java_header_libs)))
|
2017-08-31 23:43:04 +02:00
|
|
|
|
|
|
|
legacy_proguard_lib_deps := $(my_support_library_sdk_raise) \
|
|
|
|
$(filter-out $(my_support_library_sdk_raise),$(full_shared_java_header_libs))
|
2015-11-03 18:33:21 +01:00
|
|
|
|
|
|
|
legacy_proguard_flags += -printmapping $(proguard_dictionary)
|
|
|
|
|
|
|
|
common_proguard_flags := -forceprocessing
|
2013-08-22 03:32:49 +02:00
|
|
|
|
2016-04-07 11:56:42 +02:00
|
|
|
common_proguard_flag_files :=
|
2013-08-22 03:32:49 +02:00
|
|
|
ifeq ($(filter nosystem,$(LOCAL_PROGUARD_ENABLED)),)
|
2016-04-07 11:56:42 +02:00
|
|
|
common_proguard_flag_files += $(BUILD_SYSTEM)/proguard.flags
|
2012-08-28 01:01:38 +02:00
|
|
|
ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
|
2016-12-21 23:29:13 +01:00
|
|
|
common_proguard_flags += -include $(BUILD_SYSTEM)/proguard.emma.flags
|
2012-08-28 01:01:38 +02:00
|
|
|
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)),)
|
2016-04-07 11:56:42 +02:00
|
|
|
common_proguard_flag_files += $(BUILD_SYSTEM)/proguard_tests.flags
|
2014-09-10 02:08:46 +02:00
|
|
|
ifeq ($(filter shrinktests,$(LOCAL_PROGUARD_ENABLED)),)
|
2014-09-08 14:45:14 +02:00
|
|
|
common_proguard_flags += -dontshrink # don't shrink tests by default
|
2014-09-10 02:08:46 +02:00
|
|
|
endif # shrinktests
|
2010-02-01 18:51:23 +01:00
|
|
|
endif # test package
|
2016-04-07 11:56:42 +02:00
|
|
|
ifneq ($(common_proguard_flag_files),)
|
|
|
|
common_proguard_flags += $(addprefix -include , $(common_proguard_flag_files))
|
|
|
|
# This is included from $(BUILD_SYSTEM)/proguard.flags
|
|
|
|
common_proguard_flag_files += $(BUILD_SYSTEM)/proguard_basic_keeps.flags
|
|
|
|
endif
|
|
|
|
|
2013-08-22 03:32:49 +02:00
|
|
|
ifeq ($(filter obfuscation,$(LOCAL_PROGUARD_ENABLED)),)
|
|
|
|
# By default no obfuscation
|
2014-09-08 14:45:14 +02:00
|
|
|
common_proguard_flags += -dontobfuscate
|
2013-08-22 03:32:49 +02:00
|
|
|
endif # No obfuscation
|
|
|
|
ifeq ($(filter optimization,$(LOCAL_PROGUARD_ENABLED)),)
|
|
|
|
# By default no optimization
|
2014-09-08 14:45:14 +02:00
|
|
|
common_proguard_flags += -dontoptimize
|
2013-08-22 03:32:49 +02:00
|
|
|
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
|
2014-09-08 14:45:14 +02:00
|
|
|
legacy_proguard_flags += -libraryjars $(link_instr_classes_jar)
|
2017-08-31 23:43:04 +02:00
|
|
|
legacy_proguard_lib_deps += $(link_instr_classes_jar)
|
2013-08-22 03:32:49 +02:00
|
|
|
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.
|
2014-09-08 14:45:14 +02:00
|
|
|
legacy_proguard_flags := -injars $(link_instr_classes_jar) \
|
2013-08-22 03:32:49 +02:00
|
|
|
-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 \
|
2014-09-08 14:45:14 +02:00
|
|
|
$(legacy_proguard_flags)
|
2013-08-22 03:32:49 +02:00
|
|
|
|
|
|
|
# Sometimes (test + main app) uses different keep rules from the main app -
|
|
|
|
# apply the main app's dictionary anyway.
|
2014-09-08 14:45:14 +02:00
|
|
|
legacy_proguard_flags += -ignorewarnings
|
2013-08-22 03:32:49 +02:00
|
|
|
|
|
|
|
# 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))
|
2017-10-12 16:09:13 +02:00
|
|
|
ifeq ($(USE_R8),true)
|
|
|
|
proguard_flag_files += $(addprefix $(LOCAL_PATH)/, $(LOCAL_R8_FLAG_FILES))
|
|
|
|
endif # USE_R8
|
2010-09-29 23:50:41 +02:00
|
|
|
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
|
2017-02-21 14:11:13 +01:00
|
|
|
|
2017-09-27 23:28:41 +02:00
|
|
|
# If building against the current SDK version then filter out the junit,
|
|
|
|
# android.test and c.a.i.u.Predicate classes that are to be removed from
|
|
|
|
# the Android API as part of b/30188076 but which are still present in
|
|
|
|
# the Android API. This is to allow changes to be made to the build to
|
|
|
|
# statically include those classes into the application without
|
2017-02-21 14:11:13 +01:00
|
|
|
# simultaneously removing those classes from the API.
|
|
|
|
proguard_injar_filters :=
|
|
|
|
ifdef LOCAL_SDK_VERSION
|
|
|
|
ifeq (,$(filter-out current system_current test_current, $(LOCAL_SDK_VERSION)))
|
2017-06-15 09:42:23 +02:00
|
|
|
proguard_injar_filters := (!junit/framework/**,!junit/runner/**,!junit/textui/**,!android/test/**,!com/android/internal/util/*)
|
2017-02-21 14:11:13 +01:00
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2017-09-26 08:36:19 +02:00
|
|
|
ifneq ($(filter obfuscation,$(LOCAL_PROGUARD_ENABLED)),)
|
|
|
|
$(full_classes_proguard_jar): .KATI_IMPLICIT_OUTPUTS := $(proguard_dictionary)
|
|
|
|
endif
|
2017-10-12 16:09:13 +02:00
|
|
|
|
|
|
|
# If R8 is not enabled run Proguard.
|
|
|
|
ifneq ($(USE_R8),true)
|
|
|
|
# Changes to these dependencies need to be replicated below when using R8
|
|
|
|
# instead of Proguard + dx.
|
2017-02-21 14:11:13 +01:00
|
|
|
$(full_classes_proguard_jar): PRIVATE_PROGUARD_INJAR_FILTERS := $(proguard_injar_filters)
|
2014-02-07 16:18:59 +01:00
|
|
|
$(full_classes_proguard_jar): PRIVATE_EXTRA_INPUT_JAR := $(extra_input_jar)
|
2014-09-08 14:45:14 +02:00
|
|
|
$(full_classes_proguard_jar): PRIVATE_PROGUARD_FLAGS := $(legacy_proguard_flags) $(common_proguard_flags) $(LOCAL_PROGUARD_FLAGS)
|
2017-08-31 23:43:04 +02:00
|
|
|
$(full_classes_proguard_jar) : $(full_classes_pre_proguard_jar) $(extra_input_jar) $(my_support_library_sdk_raise) $(common_proguard_flag_files) $(proguard_flag_files) $(legacy_proguard_lib_deps) | $(PROGUARD)
|
2010-02-01 18:51:23 +01:00
|
|
|
$(call transform-jar-to-proguard)
|
2017-10-12 16:09:13 +02:00
|
|
|
else # !USE_R8
|
|
|
|
# Running R8 instead of Proguard, proguarded jar is actually the pre-Proguarded jar.
|
|
|
|
full_classes_proguard_jar := $(full_classes_pre_proguard_jar)
|
|
|
|
endif # !USE_R8
|
2010-02-01 18:51:23 +01:00
|
|
|
|
2013-08-22 03:32:49 +02:00
|
|
|
else # LOCAL_PROGUARD_ENABLED not defined
|
2017-04-06 00:30:42 +02:00
|
|
|
full_classes_proguard_jar := $(full_classes_pre_proguard_jar)
|
2013-08-22 03:32:49 +02:00
|
|
|
endif # LOCAL_PROGUARD_ENABLED defined
|
|
|
|
|
2017-04-06 18:56:19 +02:00
|
|
|
ifneq ($(LOCAL_IS_STATIC_JAVA_LIBRARY),true)
|
2016-12-21 23:29:13 +01:00
|
|
|
$(built_dex_intermediate): PRIVATE_DX_FLAGS := $(LOCAL_DX_FLAGS)
|
|
|
|
# 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
|
|
|
|
ifeq ($(LOCAL_EMMA_INSTRUMENT),true)
|
|
|
|
$(built_dex_intermediate): PRIVATE_DX_FLAGS += --no-locals
|
|
|
|
endif
|
2017-10-12 16:09:13 +02:00
|
|
|
|
|
|
|
my_r8 :=
|
|
|
|
ifdef LOCAL_PROGUARD_ENABLED
|
|
|
|
ifeq ($(USE_R8),true)
|
|
|
|
# These are the dependencies for the proguarded jar when running
|
|
|
|
# Proguard + dx. They are used for the generated dex when using R8, as
|
|
|
|
# R8 does Proguard + dx
|
|
|
|
my_r8 := true
|
|
|
|
$(built_dex_intermediate): PRIVATE_PROGUARD_INJAR_FILTERS := $(proguard_injar_filters)
|
|
|
|
$(built_dex_intermediate): PRIVATE_EXTRA_INPUT_JAR := $(extra_input_jar)
|
|
|
|
$(built_dex_intermediate): PRIVATE_PROGUARD_FLAGS := $(legacy_proguard_flags) $(common_proguard_flags) $(LOCAL_PROGUARD_FLAGS)
|
|
|
|
$(built_dex_intermediate) : $(full_classes_proguard_jar) $(extra_input_jar) $(my_support_library_sdk_raise) $(common_proguard_flag_files) $(proguard_flag_files) $(legacy_proguard_lib_deps) $(R8)
|
|
|
|
$(transform-jar-to-dex-r8)
|
|
|
|
endif # USE_R8
|
|
|
|
endif # LOCAL_PROGUARD_ENABLED
|
|
|
|
|
|
|
|
ifndef my_r8
|
2017-09-13 23:56:11 +02:00
|
|
|
$(built_dex_intermediate): $(full_classes_proguard_jar) $(DX)
|
2016-12-21 23:29:13 +01:00
|
|
|
$(transform-classes.jar-to-dex)
|
2017-10-12 16:09:13 +02:00
|
|
|
endif
|
2016-12-21 23:29:13 +01:00
|
|
|
|
2017-03-29 21:17:36 +02:00
|
|
|
$(built_dex): $(built_dex_intermediate)
|
2010-03-11 00:48:03 +01:00
|
|
|
@echo Copying: $@
|
2013-08-20 17:05:27 +02:00
|
|
|
$(hide) mkdir -p $(dir $@)
|
|
|
|
$(hide) rm -f $(dir $@)/classes*.dex
|
2017-03-29 21:17:36 +02:00
|
|
|
$(hide) cp -fp $(dir $<)/classes*.dex $(dir $@)
|
2009-03-04 04:28:42 +01:00
|
|
|
|
2017-04-28 00:05:44 +02:00
|
|
|
java-dex: $(built_dex)
|
|
|
|
|
2017-04-06 18:56:19 +02:00
|
|
|
endif # !LOCAL_IS_STATIC_JAVA_LIBRARY
|
|
|
|
|
2009-03-04 04:28:42 +01:00
|
|
|
findbugs_xml := $(intermediates.COMMON)/findbugs.xml
|
2015-10-21 19:30:51 +02:00
|
|
|
$(findbugs_xml): PRIVATE_AUXCLASSPATH := $(addprefix -auxclasspath ,$(strip \
|
|
|
|
$(call normalize-path-list,$(filter %.jar,$(full_java_libs)))))
|
|
|
|
$(findbugs_xml): PRIVATE_FINDBUGS_FLAGS := $(LOCAL_FINDBUGS_FLAGS)
|
2017-04-06 00:30:42 +02:00
|
|
|
$(findbugs_xml) : $(full_classes_pre_proguard_jar) $(filter %.xml, $(LOCAL_FINDBUGS_FLAGS))
|
2009-03-04 04:28:42 +01:00
|
|
|
@echo Findbugs: $@
|
|
|
|
$(hide) $(FINDBUGS) -textui -effort:min -xml:withMessages \
|
2015-10-21 19:30:51 +02:00
|
|
|
$(PRIVATE_AUXCLASSPATH) $(PRIVATE_FINDBUGS_FLAGS) \
|
2015-02-05 16:10:58 +01:00
|
|
|
$< \
|
2009-03-04 04:28:42 +01:00
|
|
|
> $@
|
|
|
|
|
|
|
|
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
|
2014-09-08 14:45:14 +02:00
|
|
|
|
2017-02-22 01:14:55 +01:00
|
|
|
ifneq (,$(filter-out current system_current test_current, $(LOCAL_SDK_VERSION)))
|
2017-09-29 01:17:36 +02:00
|
|
|
my_default_app_target_sdk := $(LOCAL_SDK_VERSION)
|
|
|
|
my_sdk_version := $(LOCAL_SDK_VERSION)
|
|
|
|
else
|
|
|
|
my_default_app_target_sdk := $(DEFAULT_APP_TARGET_SDK)
|
|
|
|
my_sdk_version := $(PLATFORM_SDK_VERSION)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef LOCAL_MIN_SDK_VERSION
|
|
|
|
my_min_sdk_version := $(LOCAL_MIN_SDK_VERSION)
|
2017-02-22 01:14:55 +01:00
|
|
|
else
|
2017-09-29 01:17:36 +02:00
|
|
|
my_min_sdk_version := $(call codename-or-sdk-to-sdk,$(my_default_app_target_sdk))
|
2017-02-22 01:14:55 +01:00
|
|
|
endif
|
|
|
|
|
2017-09-29 01:17:36 +02:00
|
|
|
$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_DEFAULT_APP_TARGET_SDK := $(my_default_app_target_sdk)
|
|
|
|
$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_SDK_VERSION := $(my_sdk_version)
|
|
|
|
$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_MIN_SDK_VERSION := $(my_min_sdk_version)
|