2014-02-06 23:45:37 +01:00
|
|
|
#
|
|
|
|
# Copyright (C) 2008 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
|
|
|
|
|
|
|
###########################################################
|
|
|
|
## Standard rules for building an application package.
|
|
|
|
##
|
|
|
|
## Additional inputs from base_rules.make:
|
|
|
|
## LOCAL_PACKAGE_NAME: The name of the package; the directory
|
|
|
|
## will be called this.
|
|
|
|
##
|
|
|
|
## MODULE, MODULE_PATH, and MODULE_SUFFIX will
|
|
|
|
## be set for you.
|
|
|
|
###########################################################
|
|
|
|
|
|
|
|
# If this makefile is being read from within an inheritance,
|
|
|
|
# use the new values.
|
|
|
|
skip_definition:=
|
|
|
|
ifdef LOCAL_PACKAGE_OVERRIDES
|
|
|
|
package_overridden := $(call set-inherited-package-variables)
|
|
|
|
ifeq ($(strip $(package_overridden)),)
|
|
|
|
skip_definition := true
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef skip_definition
|
|
|
|
|
|
|
|
LOCAL_PACKAGE_NAME := $(strip $(LOCAL_PACKAGE_NAME))
|
|
|
|
ifeq ($(LOCAL_PACKAGE_NAME),)
|
|
|
|
$(error $(LOCAL_PATH): Package modules must define LOCAL_PACKAGE_NAME)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq ($(strip $(LOCAL_MODULE_SUFFIX)),)
|
|
|
|
$(error $(LOCAL_PATH): Package modules may not define LOCAL_MODULE_SUFFIX)
|
|
|
|
endif
|
|
|
|
LOCAL_MODULE_SUFFIX := $(COMMON_ANDROID_PACKAGE_SUFFIX)
|
|
|
|
|
|
|
|
ifneq ($(strip $(LOCAL_MODULE)),)
|
|
|
|
$(error $(LOCAL_PATH): Package modules may not define LOCAL_MODULE)
|
|
|
|
endif
|
|
|
|
LOCAL_MODULE := $(LOCAL_PACKAGE_NAME)
|
|
|
|
|
|
|
|
ifneq ($(strip $(LOCAL_MODULE_CLASS)),)
|
|
|
|
$(error $(LOCAL_PATH): Package modules may not set LOCAL_MODULE_CLASS)
|
|
|
|
endif
|
|
|
|
LOCAL_MODULE_CLASS := APPS
|
|
|
|
|
2015-12-04 22:59:18 +01:00
|
|
|
intermediates := $(call local-intermediates-dir)
|
|
|
|
intermediates.COMMON := $(call local-intermediates-dir,COMMON)
|
|
|
|
|
2015-02-05 16:10:58 +01:00
|
|
|
#################################
|
|
|
|
include $(BUILD_SYSTEM)/configure_local_jack.mk
|
|
|
|
#################################
|
2015-01-09 10:36:40 +01:00
|
|
|
|
2014-02-06 23:45:37 +01:00
|
|
|
# Package LOCAL_MODULE_TAGS default to optional
|
|
|
|
LOCAL_MODULE_TAGS := $(strip $(LOCAL_MODULE_TAGS))
|
|
|
|
ifeq ($(LOCAL_MODULE_TAGS),)
|
|
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(filter tests, $(LOCAL_MODULE_TAGS)),)
|
|
|
|
# Force localization check if it's not tagged as tests.
|
|
|
|
LOCAL_AAPT_FLAGS := $(LOCAL_AAPT_FLAGS) -z
|
|
|
|
endif
|
|
|
|
|
2014-07-29 19:34:30 +02:00
|
|
|
need_compile_asset :=
|
2014-02-06 23:45:37 +01:00
|
|
|
ifeq (,$(LOCAL_ASSET_DIR))
|
|
|
|
LOCAL_ASSET_DIR := $(LOCAL_PATH)/assets
|
2014-07-29 19:34:30 +02:00
|
|
|
else
|
|
|
|
need_compile_asset := true
|
2014-02-06 23:45:37 +01:00
|
|
|
endif
|
|
|
|
|
2014-06-25 22:23:58 +02:00
|
|
|
# LOCAL_RESOURCE_DIR may point to resource generated during the build
|
|
|
|
need_compile_res :=
|
2014-02-06 23:45:37 +01:00
|
|
|
ifeq (,$(LOCAL_RESOURCE_DIR))
|
|
|
|
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res
|
2014-06-25 22:23:58 +02:00
|
|
|
else
|
|
|
|
need_compile_res := true
|
2017-05-03 08:55:44 +02:00
|
|
|
LOCAL_RESOURCE_DIR := $(foreach d,$(LOCAL_RESOURCE_DIR),$(call clean-path,$(d)))
|
2014-02-06 23:45:37 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
package_resource_overlays := $(strip \
|
|
|
|
$(wildcard $(foreach dir, $(PRODUCT_PACKAGE_OVERLAYS), \
|
|
|
|
$(addprefix $(dir)/, $(LOCAL_RESOURCE_DIR)))) \
|
|
|
|
$(wildcard $(foreach dir, $(DEVICE_PACKAGE_OVERLAYS), \
|
|
|
|
$(addprefix $(dir)/, $(LOCAL_RESOURCE_DIR)))))
|
|
|
|
|
2017-02-01 16:44:58 +01:00
|
|
|
enforce_rro_enabled :=
|
2017-03-30 04:25:02 +02:00
|
|
|
ifneq ($(PRODUCT_ENFORCE_RRO_TARGETS),)
|
|
|
|
ifneq ($(package_resource_overlays),)
|
|
|
|
ifeq ($(PRODUCT_ENFORCE_RRO_TARGETS),*)
|
|
|
|
enforce_rro_enabled := true
|
|
|
|
else ifneq (,$(filter $(LOCAL_PACKAGE_NAME), $(PRODUCT_ENFORCE_RRO_TARGETS)))
|
2017-02-01 16:44:58 +01:00
|
|
|
enforce_rro_enabled := true
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef enforce_rro_enabled
|
|
|
|
ifeq (,$(LOCAL_MODULE_PATH))
|
|
|
|
ifeq (true,$(LOCAL_PROPRIETARY_MODULE))
|
|
|
|
enforce_rro_enabled :=
|
|
|
|
else ifeq (true,$(LOCAL_OEM_MODULE))
|
|
|
|
enforce_rro_enabled :=
|
|
|
|
else ifeq (true,$(LOCAL_ODM_MODULE))
|
|
|
|
enforce_rro_enabled :=
|
|
|
|
endif
|
|
|
|
else ifeq ($(filter $(TARGET_OUT)/%,$(LOCAL_MODULE_PATH)),)
|
|
|
|
enforce_rro_enabled :=
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef enforce_rro_enabled
|
2014-02-06 23:45:37 +01:00
|
|
|
LOCAL_RESOURCE_DIR := $(package_resource_overlays) $(LOCAL_RESOURCE_DIR)
|
2017-02-01 16:44:58 +01:00
|
|
|
endif
|
2014-02-06 23:45:37 +01:00
|
|
|
|
2014-02-12 22:06:30 +01:00
|
|
|
all_assets := $(strip \
|
|
|
|
$(foreach dir, $(LOCAL_ASSET_DIR), \
|
|
|
|
$(addprefix $(dir)/, \
|
|
|
|
$(patsubst assets/%,%, \
|
|
|
|
$(call find-subdir-assets, $(dir)) \
|
|
|
|
) \
|
|
|
|
) \
|
|
|
|
))
|
2014-02-06 23:45:37 +01:00
|
|
|
|
2014-07-29 19:34:30 +02:00
|
|
|
ifneq ($(all_assets),)
|
|
|
|
need_compile_asset := true
|
|
|
|
endif
|
|
|
|
|
2016-02-26 20:13:43 +01:00
|
|
|
my_res_package :=
|
2016-02-24 23:11:55 +01:00
|
|
|
ifdef LOCAL_USE_AAPT2
|
2015-12-04 22:59:18 +01:00
|
|
|
# In aapt2 the last takes precedence.
|
|
|
|
my_resource_dirs := $(call reverse-list,$(LOCAL_RESOURCE_DIR))
|
2016-02-26 20:13:43 +01:00
|
|
|
my_res_dir :=
|
|
|
|
my_overlay_res_dirs :=
|
|
|
|
|
|
|
|
ifneq ($(LOCAL_STATIC_ANDROID_LIBRARIES),)
|
|
|
|
# If we are using static android libraries, every source file becomes an overlay.
|
|
|
|
# This is to emulate old AAPT behavior which simulated library support.
|
|
|
|
my_res_dir :=
|
|
|
|
my_overlay_res_dirs := $(my_resource_dirs)
|
|
|
|
else
|
|
|
|
# Without static libraries, the first directory is our directory, which can then be
|
|
|
|
# overlaid by the rest. (First directory in my_resource_dirs is last directory in
|
|
|
|
# $(LOCAL_RESOURCE_DIR) due to it being reversed.
|
|
|
|
my_res_dir := $(firstword $(my_resource_dirs))
|
|
|
|
my_overlay_res_dirs := $(wordlist 2,999,$(my_resource_dirs))
|
|
|
|
endif
|
|
|
|
|
2015-12-04 22:59:18 +01:00
|
|
|
my_overlay_resources := $(strip \
|
2016-02-26 20:13:43 +01:00
|
|
|
$(foreach d,$(my_overlay_res_dirs),\
|
2015-12-04 22:59:18 +01:00
|
|
|
$(addprefix $(d)/, \
|
|
|
|
$(call find-subdir-assets,$(d)))))
|
|
|
|
|
2016-11-29 20:12:56 +01:00
|
|
|
my_res_resources := $(if $(my_res_dir),$(strip \
|
2015-12-04 22:59:18 +01:00
|
|
|
$(addprefix $(my_res_dir)/, \
|
2016-11-29 20:12:56 +01:00
|
|
|
$(call find-subdir-assets,$(my_res_dir)))))
|
2015-12-04 22:59:18 +01:00
|
|
|
|
|
|
|
all_resources := $(strip $(my_res_resources) $(my_overlay_resources))
|
|
|
|
|
|
|
|
# The linked resource package.
|
|
|
|
my_res_package := $(intermediates)/package-res.apk
|
|
|
|
LOCAL_INTERMEDIATE_TARGETS += $(my_res_package)
|
|
|
|
|
2016-03-01 21:06:47 +01:00
|
|
|
# Always run aapt2, because we need to at least compile the AndroidManifest.xml.
|
2015-12-04 22:59:18 +01:00
|
|
|
need_compile_res := true
|
|
|
|
|
2016-02-24 23:11:55 +01:00
|
|
|
else # LOCAL_USE_AAPT2
|
2014-02-06 23:45:37 +01:00
|
|
|
all_resources := $(strip \
|
|
|
|
$(foreach dir, $(LOCAL_RESOURCE_DIR), \
|
|
|
|
$(addprefix $(dir)/, \
|
|
|
|
$(patsubst res/%,%, \
|
|
|
|
$(call find-subdir-assets,$(dir)) \
|
|
|
|
) \
|
|
|
|
) \
|
|
|
|
))
|
|
|
|
|
2016-08-12 21:57:17 +02:00
|
|
|
ifdef LOCAL_PACKAGE_SPLITS
|
|
|
|
LOCAL_AAPT_FLAGS += $(addprefix --split ,$(LOCAL_PACKAGE_SPLITS))
|
|
|
|
endif
|
|
|
|
|
2016-02-24 23:11:55 +01:00
|
|
|
endif # LOCAL_USE_AAPT2
|
2015-12-04 22:59:18 +01:00
|
|
|
|
2014-06-25 22:23:58 +02:00
|
|
|
ifneq ($(all_resources),)
|
|
|
|
need_compile_res := true
|
|
|
|
endif
|
|
|
|
|
2014-02-06 23:45:37 +01:00
|
|
|
all_res_assets := $(strip $(all_assets) $(all_resources))
|
|
|
|
|
|
|
|
# If no assets or resources were found, clear the directory variables so
|
|
|
|
# we don't try to build them.
|
2014-07-29 19:34:30 +02:00
|
|
|
ifneq (true,$(need_compile_asset))
|
2014-02-06 23:45:37 +01:00
|
|
|
LOCAL_ASSET_DIR:=
|
|
|
|
endif
|
2014-06-25 22:23:58 +02:00
|
|
|
ifneq (true,$(need_compile_res))
|
2014-02-06 23:45:37 +01:00
|
|
|
LOCAL_RESOURCE_DIR:=
|
|
|
|
R_file_stamp :=
|
|
|
|
else
|
|
|
|
# Make sure that R_file_stamp inherits the proper PRIVATE vars.
|
|
|
|
# If R.stamp moves, be sure to update the framework makefile,
|
|
|
|
# which has intimate knowledge of its location.
|
2014-12-18 23:53:52 +01:00
|
|
|
R_file_stamp := $(intermediates.COMMON)/src/R.stamp
|
2014-02-06 23:45:37 +01:00
|
|
|
LOCAL_INTERMEDIATE_TARGETS += $(R_file_stamp)
|
|
|
|
endif
|
|
|
|
|
|
|
|
LOCAL_BUILT_MODULE_STEM := package.apk
|
2014-07-18 06:24:42 +02:00
|
|
|
LOCAL_INSTALLED_MODULE_STEM := $(LOCAL_MODULE).apk
|
2014-02-06 23:45:37 +01:00
|
|
|
|
|
|
|
LOCAL_PROGUARD_ENABLED:=$(strip $(LOCAL_PROGUARD_ENABLED))
|
|
|
|
ifndef LOCAL_PROGUARD_ENABLED
|
|
|
|
ifneq ($(DISABLE_PROGUARD),true)
|
|
|
|
LOCAL_PROGUARD_ENABLED :=full
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
ifeq ($(LOCAL_PROGUARD_ENABLED),disabled)
|
|
|
|
# the package explicitly request to disable proguard.
|
|
|
|
LOCAL_PROGUARD_ENABLED :=
|
|
|
|
endif
|
|
|
|
proguard_options_file :=
|
|
|
|
ifneq ($(LOCAL_PROGUARD_ENABLED),custom)
|
2014-06-25 22:23:58 +02:00
|
|
|
ifeq ($(need_compile_res),true)
|
2014-12-18 23:53:52 +01:00
|
|
|
proguard_options_file := $(intermediates.COMMON)/proguard_options
|
2014-06-25 22:23:58 +02:00
|
|
|
endif # need_compile_res
|
2014-02-06 23:45:37 +01:00
|
|
|
endif # !custom
|
|
|
|
LOCAL_PROGUARD_FLAGS := $(addprefix -include ,$(proguard_options_file)) $(LOCAL_PROGUARD_FLAGS)
|
|
|
|
|
2016-12-21 23:29:13 +01:00
|
|
|
ifdef LOCAL_JACK_ENABLED
|
2014-09-08 14:45:14 +02:00
|
|
|
ifndef LOCAL_JACK_PROGUARD_FLAGS
|
|
|
|
LOCAL_JACK_PROGUARD_FLAGS := $(LOCAL_PROGUARD_FLAGS)
|
|
|
|
endif
|
|
|
|
LOCAL_JACK_PROGUARD_FLAGS := $(addprefix -include ,$(proguard_options_file)) $(LOCAL_JACK_PROGUARD_FLAGS)
|
2016-12-21 23:29:13 +01:00
|
|
|
endif # LOCAL_JACK_ENABLED
|
2014-09-08 14:45:14 +02:00
|
|
|
|
2014-02-06 23:45:37 +01:00
|
|
|
ifeq (true,$(EMMA_INSTRUMENT))
|
|
|
|
ifndef LOCAL_EMMA_INSTRUMENT
|
|
|
|
# No emma for test apks.
|
2015-11-06 20:22:28 +01:00
|
|
|
ifeq (,$(LOCAL_INSTRUMENTATION_FOR))
|
2014-02-06 23:45:37 +01:00
|
|
|
LOCAL_EMMA_INSTRUMENT := true
|
|
|
|
endif # No test apk
|
|
|
|
endif # LOCAL_EMMA_INSTRUMENT is not set
|
|
|
|
else
|
|
|
|
LOCAL_EMMA_INSTRUMENT := false
|
|
|
|
endif # EMMA_INSTRUMENT is true
|
|
|
|
|
|
|
|
ifeq (true,$(LOCAL_EMMA_INSTRUMENT))
|
|
|
|
ifeq (true,$(EMMA_INSTRUMENT_STATIC))
|
2016-12-21 23:29:13 +01:00
|
|
|
ifdef LOCAL_JACK_ENABLED
|
2015-11-19 17:53:00 +01:00
|
|
|
# Jack supports coverage with Jacoco
|
2016-12-21 23:29:13 +01:00
|
|
|
ifneq ($(LOCAL_SRC_FILES)$(LOCAL_STATIC_JAVA_LIBRARIES)$(LOCAL_SOURCE_FILES_ALL_GENERATED),)
|
|
|
|
# Only add jacocoagent if the package contains some java code
|
2015-11-19 17:53:00 +01:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += jacocoagent
|
2016-12-21 23:29:13 +01:00
|
|
|
endif # Contains java code
|
|
|
|
else
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += emma
|
|
|
|
endif # LOCAL_JACK_ENABLED
|
|
|
|
else
|
2014-02-06 23:45:37 +01:00
|
|
|
ifdef LOCAL_SDK_VERSION
|
|
|
|
ifdef TARGET_BUILD_APPS
|
2016-03-31 16:48:26 +02:00
|
|
|
# In unbundled build, merge the coverage library into the apk.
|
2016-12-21 23:29:13 +01:00
|
|
|
ifdef LOCAL_JACK_ENABLED
|
2015-11-19 17:53:00 +01:00
|
|
|
# Jack supports coverage with Jacoco
|
2016-12-21 23:29:13 +01:00
|
|
|
ifneq ($(LOCAL_SRC_FILES)$(LOCAL_STATIC_JAVA_LIBRARIES)$(LOCAL_SOURCE_FILES_ALL_GENERATED),)
|
|
|
|
# Only add jacocoagent if the package contains some java code
|
2015-11-19 17:53:00 +01:00
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += jacocoagent
|
2016-03-31 16:48:26 +02:00
|
|
|
# Exclude jacoco classes from proguard
|
|
|
|
LOCAL_PROGUARD_FLAGS += -include $(BUILD_SYSTEM)/proguard.jacoco.flags
|
|
|
|
LOCAL_JACK_PROGUARD_FLAGS += -include $(BUILD_SYSTEM)/proguard.jacoco.flags
|
2016-12-21 23:29:13 +01:00
|
|
|
endif # Contains java code
|
|
|
|
else # ! LOCAL_JACK_ENABLED
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += emma
|
|
|
|
endif # ! LOCAL_JACK_ENABLED
|
|
|
|
else # ! TARGET_BUILD_APPS
|
|
|
|
ifdef LOCAL_JACK_ENABLED
|
2016-03-31 16:48:26 +02:00
|
|
|
# If build against the SDK in full build, core.jar is not used
|
|
|
|
# so coverage classes are not present.
|
|
|
|
# Jack needs jacoco on the classpath but we do not want it to be in
|
|
|
|
# the final apk. While it is a static library, we add it to the
|
|
|
|
# LOCAL_JAVA_LIBRARIES which are only present on the classpath.
|
|
|
|
# Note: we have nothing to do for proguard since jacoco will be
|
|
|
|
# on the classpath only, thus not modified during the compilation.
|
|
|
|
LOCAL_JAVA_LIBRARIES += jacocoagent
|
2016-12-21 23:29:13 +01:00
|
|
|
else # ! LOCAL_JACK_ENABLED
|
|
|
|
# If build against the SDK in full build, core.jar is not used,
|
|
|
|
# we have to use prebiult emma.jar to make Proguard happy;
|
|
|
|
# Otherwise emma classes are included in core.jar.
|
|
|
|
LOCAL_PROGUARD_FLAGS += -libraryjars $(EMMA_JAR)
|
|
|
|
endif # ! LOCAL_JACK_ENABLED
|
|
|
|
endif # ! TARGET_BUILD_APPS
|
2014-02-06 23:45:37 +01:00
|
|
|
endif # LOCAL_SDK_VERSION
|
2016-12-21 23:29:13 +01:00
|
|
|
endif # EMMA_INSTRUMENT_STATIC
|
2014-02-06 23:45:37 +01:00
|
|
|
endif # LOCAL_EMMA_INSTRUMENT
|
|
|
|
|
|
|
|
rs_compatibility_jni_libs :=
|
|
|
|
|
2015-04-19 18:55:39 +02:00
|
|
|
ifeq ($(LOCAL_DATA_BINDING),true)
|
|
|
|
data_binding_intermediates := $(intermediates.COMMON)/data-binding
|
|
|
|
|
|
|
|
LOCAL_JAVACFLAGS += -processorpath $(DATA_BINDING_COMPILER) -s $(data_binding_intermediates)/anno-src
|
|
|
|
LOCAL_JACK_FLAGS += --processorpath $(DATA_BINDING_COMPILER)
|
|
|
|
|
|
|
|
LOCAL_STATIC_JAVA_LIBRARIES += databinding-baselibrary
|
|
|
|
LOCAL_STATIC_JAVA_AAR_LIBRARIES += databinding-library databinding-adapters
|
|
|
|
|
|
|
|
data_binding_res_in := $(LOCAL_RESOURCE_DIR)
|
|
|
|
data_binding_res_out := $(data_binding_intermediates)/res
|
|
|
|
|
|
|
|
# Replace with the processed merged res dir.
|
|
|
|
LOCAL_RESOURCE_DIR := $(data_binding_res_out)
|
|
|
|
|
|
|
|
LOCAL_AAPT_FLAGS += --auto-add-overlay --extra-packages com.android.databinding.library
|
|
|
|
endif # LOCAL_DATA_BINDING
|
|
|
|
|
2014-10-29 23:48:32 +01:00
|
|
|
include $(BUILD_SYSTEM)/android_manifest.mk
|
|
|
|
|
2014-02-06 23:45:37 +01:00
|
|
|
#################################
|
|
|
|
include $(BUILD_SYSTEM)/java.mk
|
|
|
|
#################################
|
|
|
|
|
|
|
|
LOCAL_SDK_RES_VERSION:=$(strip $(LOCAL_SDK_RES_VERSION))
|
|
|
|
ifeq ($(LOCAL_SDK_RES_VERSION),)
|
|
|
|
LOCAL_SDK_RES_VERSION:=$(LOCAL_SDK_VERSION)
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(LOCAL_INTERMEDIATE_TARGETS): \
|
|
|
|
PRIVATE_ANDROID_MANIFEST := $(full_android_manifest)
|
|
|
|
|
2015-04-19 18:55:39 +02:00
|
|
|
ifeq ($(LOCAL_DATA_BINDING),true)
|
|
|
|
data_binding_stamp := $(data_binding_intermediates)/data-binding.stamp
|
|
|
|
$(data_binding_stamp): PRIVATE_INTERMEDIATES := $(data_binding_intermediates)
|
|
|
|
$(data_binding_stamp): PRIVATE_MANIFEST := $(full_android_manifest)
|
|
|
|
# Generate code into $(LOCAL_INTERMEDIATE_SOURCE_DIR) so that the generated .java files
|
|
|
|
# will be automatically picked up by function compile-java.
|
|
|
|
$(data_binding_stamp): PRIVATE_SRC_OUT := $(LOCAL_INTERMEDIATE_SOURCE_DIR)/data-binding
|
|
|
|
$(data_binding_stamp): PRIVATE_XML_OUT := $(data_binding_intermediates)/xml
|
|
|
|
$(data_binding_stamp): PRIVATE_RES_OUT := $(data_binding_res_out)
|
|
|
|
$(data_binding_stamp): PRIVATE_RES_IN := $(data_binding_res_in)
|
|
|
|
$(data_binding_stamp): PRIVATE_ANNO_SRC_DIR := $(data_binding_intermediates)/anno-src
|
|
|
|
|
|
|
|
$(data_binding_stamp) : $(all_res_assets) $(full_android_manifest) \
|
|
|
|
$(DATA_BINDING_COMPILER)
|
|
|
|
@echo "Data-binding process: $@"
|
|
|
|
@rm -rf $(PRIVATE_INTERMEDIATES) $(PRIVATE_SRC_OUT) && \
|
|
|
|
mkdir -p $(PRIVATE_INTERMEDIATES) $(PRIVATE_SRC_OUT) \
|
|
|
|
$(PRIVATE_XML_OUT) $(PRIVATE_RES_OUT) $(PRIVATE_ANNO_SRC_DIR)
|
|
|
|
$(hide) java -classpath $(DATA_BINDING_COMPILER) android.databinding.tool.MakeCopy \
|
|
|
|
$(PRIVATE_MANIFEST) $(PRIVATE_SRC_OUT) $(PRIVATE_XML_OUT) $(PRIVATE_RES_OUT) $(PRIVATE_RES_IN)
|
|
|
|
$(hide) touch $@
|
|
|
|
|
|
|
|
# Make sure the data-binding process happens before javac and generation of R.java.
|
|
|
|
$(R_file_stamp) $(full_classes_compiled_jar) : $(data_binding_stamp)
|
|
|
|
# The dependency path when jack is enabled
|
|
|
|
$(built_dex_intermediate) : $(data_binding_stamp)
|
|
|
|
endif # LOCAL_DATA_BINDING
|
|
|
|
|
2014-06-25 22:23:58 +02:00
|
|
|
ifeq ($(need_compile_res),true)
|
2016-08-12 21:57:17 +02:00
|
|
|
|
|
|
|
###############################
|
|
|
|
## APK splits
|
|
|
|
built_apk_splits :=
|
|
|
|
installed_apk_splits :=
|
|
|
|
my_apk_split_configs :=
|
|
|
|
|
|
|
|
ifdef LOCAL_PACKAGE_SPLITS
|
|
|
|
my_apk_split_configs := $(LOCAL_PACKAGE_SPLITS)
|
|
|
|
my_split_suffixes := $(subst $(comma),_,$(my_apk_split_configs))
|
|
|
|
built_apk_splits := $(foreach s,$(my_split_suffixes),$(built_module_path)/package_$(s).apk)
|
|
|
|
installed_apk_splits := $(foreach s,$(my_split_suffixes),$(my_module_path)/$(LOCAL_MODULE)_$(s).apk)
|
|
|
|
endif
|
|
|
|
|
2016-02-24 23:11:55 +01:00
|
|
|
ifdef LOCAL_USE_AAPT2
|
2015-12-04 22:59:18 +01:00
|
|
|
my_compiled_res_base_dir := $(intermediates)/flat-res
|
2017-04-27 01:15:42 +02:00
|
|
|
renderscript_target_api :=
|
|
|
|
ifneq (,$(LOCAL_RENDERSCRIPT_TARGET_API))
|
|
|
|
renderscript_target_api := $(LOCAL_RENDERSCRIPT_TARGET_API)
|
|
|
|
else
|
|
|
|
ifneq (,$(LOCAL_SDK_VERSION))
|
|
|
|
# Set target-api for LOCAL_SDK_VERSIONs other than current.
|
|
|
|
ifneq (,$(filter-out current system_current test_current, $(LOCAL_SDK_VERSION)))
|
|
|
|
renderscript_target_api := $(LOCAL_SDK_VERSION)
|
|
|
|
endif
|
|
|
|
endif # LOCAL_SDK_VERSION is set
|
|
|
|
endif # LOCAL_RENDERSCRIPT_TARGET_API is set
|
|
|
|
ifneq (,$(renderscript_target_api))
|
|
|
|
ifneq ($(call math_gt_or_eq,$(renderscript_target_api),21),true)
|
2016-02-24 23:11:55 +01:00
|
|
|
my_generated_res_dirs := $(rs_generated_res_dir)
|
|
|
|
my_generated_res_dirs_deps := $(RenderScript_file_stamp)
|
2017-04-27 01:15:42 +02:00
|
|
|
endif # renderscript_target_api < 21
|
|
|
|
endif # renderscript_target_api is set
|
2017-03-16 05:53:05 +01:00
|
|
|
my_asset_dirs := $(LOCAL_ASSET_DIR)
|
|
|
|
my_full_asset_paths := $(all_assets)
|
2016-02-26 20:13:43 +01:00
|
|
|
# Add AAPT2 link specific flags.
|
|
|
|
$(my_res_package): PRIVATE_AAPT_FLAGS := $(LOCAL_AAPT_FLAGS) --no-static-lib-packages
|
2015-12-04 22:59:18 +01:00
|
|
|
include $(BUILD_SYSTEM)/aapt2.mk
|
2016-02-24 23:11:55 +01:00
|
|
|
else # LOCAL_USE_AAPT2
|
2014-02-06 23:45:37 +01:00
|
|
|
|
|
|
|
# Since we don't know where the real R.java file is going to end up,
|
|
|
|
# we need to use another file to stand in its place. We'll just
|
|
|
|
# copy the generated file to src/R.stamp, which means it will
|
|
|
|
# have the same contents and timestamp as the actual file.
|
|
|
|
#
|
|
|
|
# At the same time, this will copy the R.java file to a central
|
|
|
|
# 'R' directory to make it easier to add the files to an IDE.
|
|
|
|
#
|
|
|
|
|
|
|
|
$(R_file_stamp): PRIVATE_RESOURCE_PUBLICS_OUTPUT := \
|
|
|
|
$(intermediates.COMMON)/public_resources.xml
|
|
|
|
$(R_file_stamp): PRIVATE_PROGUARD_OPTIONS_FILE := $(proguard_options_file)
|
|
|
|
$(R_file_stamp): $(all_res_assets) $(full_android_manifest) $(RenderScript_file_stamp) $(AAPT) | $(ACP)
|
|
|
|
@echo "target R.java/Manifest.java: $(PRIVATE_MODULE) ($@)"
|
2015-09-15 15:52:56 +02:00
|
|
|
@rm -rf $@ && mkdir -p $(dir $@)
|
2014-02-06 23:45:37 +01:00
|
|
|
$(create-resource-java-files)
|
2015-12-04 22:59:18 +01:00
|
|
|
$(call find-generated-R.java)
|
2014-02-06 23:45:37 +01:00
|
|
|
|
|
|
|
$(proguard_options_file): $(R_file_stamp)
|
|
|
|
|
2014-03-25 22:42:46 +01:00
|
|
|
resource_export_package :=
|
2014-02-06 23:45:37 +01:00
|
|
|
ifdef LOCAL_EXPORT_PACKAGE_RESOURCES
|
|
|
|
# Put this module's resources into a PRODUCT-agnositc package that
|
|
|
|
# other packages can use to build their own PRODUCT-agnostic R.java (etc.)
|
|
|
|
# files.
|
|
|
|
resource_export_package := $(intermediates.COMMON)/package-export.apk
|
|
|
|
$(R_file_stamp): $(resource_export_package)
|
|
|
|
|
|
|
|
# add-assets-to-package looks at PRODUCT_AAPT_CONFIG, but this target
|
|
|
|
# can't know anything about PRODUCT. Clear it out just for this target.
|
|
|
|
$(resource_export_package): PRIVATE_PRODUCT_AAPT_CONFIG :=
|
|
|
|
$(resource_export_package): PRIVATE_PRODUCT_AAPT_PREF_CONFIG :=
|
|
|
|
$(resource_export_package): $(all_res_assets) $(full_android_manifest) $(RenderScript_file_stamp) $(AAPT)
|
|
|
|
@echo "target Export Resources: $(PRIVATE_MODULE) ($@)"
|
|
|
|
$(create-empty-package)
|
|
|
|
$(add-assets-to-package)
|
|
|
|
endif
|
|
|
|
|
2016-02-24 23:11:55 +01:00
|
|
|
endif # LOCAL_USE_AAPT2
|
2015-12-04 22:59:18 +01:00
|
|
|
|
2014-02-06 23:45:37 +01:00
|
|
|
# Other modules should depend on the BUILT module if
|
|
|
|
# they want to use this module's R.java file.
|
2016-12-21 23:29:13 +01:00
|
|
|
$(LOCAL_BUILT_MODULE): $(R_file_stamp)
|
|
|
|
|
|
|
|
ifdef LOCAL_JACK_ENABLED
|
|
|
|
ifneq ($(built_dex_intermediate),)
|
|
|
|
$(built_dex_intermediate): $(R_file_stamp)
|
|
|
|
endif
|
|
|
|
ifneq ($(noshrob_classes_jack),)
|
|
|
|
$(noshrob_classes_jack): $(R_file_stamp)
|
|
|
|
endif
|
|
|
|
ifneq ($(full_classes_jack),)
|
|
|
|
$(full_classes_jack): $(R_file_stamp)
|
|
|
|
$(jack_check_timestamp): $(R_file_stamp)
|
|
|
|
endif
|
|
|
|
endif # LOCAL_JACK_ENABLED
|
|
|
|
|
|
|
|
ifneq ($(full_classes_jar),)
|
|
|
|
# If full_classes_jar is non-empty, we're building sources.
|
|
|
|
# If we're building sources, the initial javac step (which
|
|
|
|
# produces full_classes_compiled_jar) needs to ensure the
|
|
|
|
# R.java and Manifest.java files have been generated first.
|
|
|
|
$(full_classes_compiled_jar): $(R_file_stamp)
|
|
|
|
endif
|
2014-02-06 23:45:37 +01:00
|
|
|
|
2014-06-25 22:23:58 +02:00
|
|
|
endif # need_compile_res
|
2014-02-06 23:45:37 +01:00
|
|
|
|
|
|
|
ifeq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
|
|
|
|
# We need to explicitly clear this var so that we don't
|
|
|
|
# inherit the value from whomever caused us to be built.
|
|
|
|
$(LOCAL_INTERMEDIATE_TARGETS): PRIVATE_AAPT_INCLUDES :=
|
|
|
|
else
|
|
|
|
# Most packages should link against the resources defined by framework-res.
|
|
|
|
# Even if they don't have their own resources, they may use framework
|
|
|
|
# resources.
|
2015-11-06 16:20:51 +01:00
|
|
|
ifneq ($(filter-out current system_current test_current,$(LOCAL_SDK_RES_VERSION))$(if $(TARGET_BUILD_APPS),$(filter current system_current test_current,$(LOCAL_SDK_RES_VERSION))),)
|
2014-02-06 23:45:37 +01:00
|
|
|
# for released sdk versions, the platform resources were built into android.jar.
|
|
|
|
framework_res_package_export := \
|
|
|
|
$(HISTORICAL_SDK_VERSIONS_ROOT)/$(LOCAL_SDK_RES_VERSION)/android.jar
|
|
|
|
framework_res_package_export_deps := $(framework_res_package_export)
|
|
|
|
else # LOCAL_SDK_RES_VERSION
|
|
|
|
framework_res_package_export := \
|
|
|
|
$(call intermediates-dir-for,APPS,framework-res,,COMMON)/package-export.apk
|
|
|
|
# We can't depend directly on the export.apk file; it won't get its
|
|
|
|
# PRIVATE_ vars set up correctly if we do. Instead, depend on the
|
|
|
|
# corresponding R.stamp file, which lists the export.apk as a dependency.
|
|
|
|
framework_res_package_export_deps := \
|
|
|
|
$(dir $(framework_res_package_export))src/R.stamp
|
|
|
|
endif # LOCAL_SDK_RES_VERSION
|
2014-03-14 02:48:27 +01:00
|
|
|
all_library_res_package_exports := \
|
|
|
|
$(framework_res_package_export) \
|
2014-03-25 23:45:34 +01:00
|
|
|
$(foreach lib,$(LOCAL_RES_LIBRARIES),\
|
2014-03-14 02:48:27 +01:00
|
|
|
$(call intermediates-dir-for,APPS,$(lib),,COMMON)/package-export.apk)
|
|
|
|
|
|
|
|
all_library_res_package_export_deps := \
|
|
|
|
$(framework_res_package_export_deps) \
|
2014-03-25 23:45:34 +01:00
|
|
|
$(foreach lib,$(LOCAL_RES_LIBRARIES),\
|
2014-03-14 02:48:27 +01:00
|
|
|
$(call intermediates-dir-for,APPS,$(lib),,COMMON)/src/R.stamp)
|
2014-06-20 01:07:30 +02:00
|
|
|
$(resource_export_package) $(R_file_stamp) $(LOCAL_BUILT_MODULE): $(all_library_res_package_export_deps)
|
2014-02-06 23:45:37 +01:00
|
|
|
$(LOCAL_INTERMEDIATE_TARGETS): \
|
2014-03-14 02:48:27 +01:00
|
|
|
PRIVATE_AAPT_INCLUDES := $(all_library_res_package_exports)
|
2015-12-04 22:59:18 +01:00
|
|
|
|
2016-02-24 23:11:55 +01:00
|
|
|
ifdef LOCAL_USE_AAPT2
|
2015-12-04 22:59:18 +01:00
|
|
|
$(my_res_package) : $(all_library_res_package_export_deps)
|
|
|
|
endif
|
2014-02-06 23:45:37 +01:00
|
|
|
endif # LOCAL_NO_STANDARD_LIBRARIES
|
|
|
|
|
|
|
|
ifneq ($(full_classes_jar),)
|
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_DEX_FILE := $(built_dex)
|
2016-12-21 23:29:13 +01:00
|
|
|
# Use the jarjar processed arhive as the initial package file.
|
2017-03-29 21:58:15 +02:00
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_SOURCE_ARCHIVE := $(full_classes_pre_proguard_jar)
|
2014-02-06 23:45:37 +01:00
|
|
|
$(LOCAL_BUILT_MODULE): $(built_dex)
|
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
|
|
|
else
|
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_DEX_FILE :=
|
2016-12-21 23:29:13 +01:00
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_SOURCE_ARCHIVE :=
|
2014-02-06 23:45:37 +01:00
|
|
|
endif # full_classes_jar
|
|
|
|
|
2014-04-17 22:38:04 +02:00
|
|
|
include $(BUILD_SYSTEM)/install_jni_libs.mk
|
2014-02-06 23:45:37 +01:00
|
|
|
|
|
|
|
# Pick a key to sign the package with. If this package hasn't specified
|
|
|
|
# an explicit certificate, use the default.
|
|
|
|
# Secure release builds will have their packages signed after the fact,
|
|
|
|
# so it's ok for these private keys to be in the clear.
|
|
|
|
ifeq ($(LOCAL_CERTIFICATE),)
|
|
|
|
LOCAL_CERTIFICATE := $(DEFAULT_SYSTEM_DEV_CERTIFICATE)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(LOCAL_CERTIFICATE),EXTERNAL)
|
|
|
|
# The special value "EXTERNAL" means that we will sign it with the
|
|
|
|
# default devkey, apply predexopt, but then expect the final .apk
|
|
|
|
# (after dexopting) to be signed by an outside tool.
|
|
|
|
LOCAL_CERTIFICATE := $(DEFAULT_SYSTEM_DEV_CERTIFICATE)
|
|
|
|
PACKAGES.$(LOCAL_PACKAGE_NAME).EXTERNAL_KEY := 1
|
|
|
|
endif
|
|
|
|
|
|
|
|
# If this is not an absolute certificate, assign it to a generic one.
|
|
|
|
ifeq ($(dir $(strip $(LOCAL_CERTIFICATE))),./)
|
|
|
|
LOCAL_CERTIFICATE := $(dir $(DEFAULT_SYSTEM_DEV_CERTIFICATE))$(LOCAL_CERTIFICATE)
|
|
|
|
endif
|
|
|
|
private_key := $(LOCAL_CERTIFICATE).pk8
|
|
|
|
certificate := $(LOCAL_CERTIFICATE).x509.pem
|
2016-05-13 09:03:24 +02:00
|
|
|
additional_certificates := $(foreach c,$(LOCAL_ADDITIONAL_CERTIFICATES), $(c).x509.pem $(c).pk8)
|
2014-02-06 23:45:37 +01:00
|
|
|
|
|
|
|
$(LOCAL_BUILT_MODULE): $(private_key) $(certificate) $(SIGNAPK_JAR)
|
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_PRIVATE_KEY := $(private_key)
|
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_CERTIFICATE := $(certificate)
|
|
|
|
|
|
|
|
PACKAGES.$(LOCAL_PACKAGE_NAME).PRIVATE_KEY := $(private_key)
|
|
|
|
PACKAGES.$(LOCAL_PACKAGE_NAME).CERTIFICATE := $(certificate)
|
|
|
|
|
2016-05-13 09:03:24 +02:00
|
|
|
$(LOCAL_BUILT_MODULE): $(additional_certificates)
|
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_ADDITIONAL_CERTIFICATES := $(additional_certificates)
|
2014-02-06 23:45:37 +01:00
|
|
|
|
|
|
|
# Define the rule to build the actual package.
|
2014-06-25 05:01:52 +02:00
|
|
|
# PRIVATE_JNI_SHARED_LIBRARIES is a list of <abi>:<path_of_built_lib>.
|
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_JNI_SHARED_LIBRARIES := $(jni_shared_libraries_with_abis)
|
|
|
|
# PRIVATE_JNI_SHARED_LIBRARIES_ABI is a list of ABI names.
|
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_JNI_SHARED_LIBRARIES_ABI := $(jni_shared_libraries_abis)
|
2014-02-06 23:45:37 +01:00
|
|
|
ifneq ($(TARGET_BUILD_APPS),)
|
|
|
|
# Include all resources for unbundled apps.
|
|
|
|
LOCAL_AAPT_INCLUDE_ALL_RESOURCES := true
|
|
|
|
endif
|
|
|
|
ifeq ($(LOCAL_AAPT_INCLUDE_ALL_RESOURCES),true)
|
2016-02-26 20:13:43 +01:00
|
|
|
$(my_res_package) $(LOCAL_BUILT_MODULE): PRIVATE_PRODUCT_AAPT_CONFIG :=
|
|
|
|
$(my_res_package) $(LOCAL_BUILT_MODULE): PRIVATE_PRODUCT_AAPT_PREF_CONFIG :=
|
2014-02-06 23:45:37 +01:00
|
|
|
else
|
2016-02-26 20:13:43 +01:00
|
|
|
$(my_res_package) $(LOCAL_BUILT_MODULE): PRIVATE_PRODUCT_AAPT_CONFIG := $(PRODUCT_AAPT_CONFIG)
|
2014-07-30 22:40:14 +02:00
|
|
|
ifdef LOCAL_PACKAGE_SPLITS
|
2016-02-26 20:13:43 +01:00
|
|
|
$(my_res_package) $(LOCAL_BUILT_MODULE): PRIVATE_PRODUCT_AAPT_PREF_CONFIG :=
|
2014-07-30 22:40:14 +02:00
|
|
|
else
|
2016-02-26 20:13:43 +01:00
|
|
|
$(my_res_package) $(LOCAL_BUILT_MODULE): PRIVATE_PRODUCT_AAPT_PREF_CONFIG := $(PRODUCT_AAPT_PREF_CONFIG)
|
2014-02-06 23:45:37 +01:00
|
|
|
endif
|
2014-07-30 22:40:14 +02:00
|
|
|
endif
|
2016-12-21 23:29:13 +01:00
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_DONT_DELETE_JAR_DIRS := $(LOCAL_DONT_DELETE_JAR_DIRS)
|
2015-12-04 22:59:18 +01:00
|
|
|
$(LOCAL_BUILT_MODULE) : $(jni_shared_libraries)
|
2016-02-24 23:11:55 +01:00
|
|
|
ifdef LOCAL_USE_AAPT2
|
2015-12-04 22:59:18 +01:00
|
|
|
$(LOCAL_BUILT_MODULE): PRIVATE_RES_PACKAGE := $(my_res_package)
|
|
|
|
$(LOCAL_BUILT_MODULE) : $(my_res_package) $(AAPT2) | $(ACP)
|
|
|
|
else
|
|
|
|
$(LOCAL_BUILT_MODULE) : $(all_res_assets) $(full_android_manifest) $(AAPT)
|
|
|
|
endif
|
2014-02-06 23:45:37 +01:00
|
|
|
@echo "target Package: $(PRIVATE_MODULE) ($@)"
|
2016-02-24 23:11:55 +01:00
|
|
|
ifdef LOCAL_USE_AAPT2
|
2015-12-04 22:59:18 +01:00
|
|
|
$(call copy-file-to-new-target)
|
2016-03-31 19:10:42 +02:00
|
|
|
else # ! LOCAL_USE_AAPT2
|
2016-12-21 23:29:13 +01:00
|
|
|
ifdef LOCAL_JACK_ENABLED
|
2014-02-06 23:45:37 +01:00
|
|
|
$(create-empty-package)
|
2016-12-21 23:29:13 +01:00
|
|
|
else
|
|
|
|
$(if $(PRIVATE_SOURCE_ARCHIVE),\
|
|
|
|
$(call initialize-package-file,$(PRIVATE_SOURCE_ARCHIVE),$@),\
|
|
|
|
$(create-empty-package))
|
|
|
|
endif
|
2014-02-06 23:45:37 +01:00
|
|
|
$(add-assets-to-package)
|
2016-02-24 23:11:55 +01:00
|
|
|
endif # LOCAL_USE_AAPT2
|
2014-02-06 23:45:37 +01:00
|
|
|
ifneq ($(jni_shared_libraries),)
|
|
|
|
$(add-jni-shared-libs-to-package)
|
|
|
|
endif
|
2015-03-27 19:07:17 +01:00
|
|
|
ifeq ($(full_classes_jar),)
|
|
|
|
# We don't build jar, need to add the Java resources here.
|
|
|
|
$(if $(PRIVATE_EXTRA_JAR_ARGS),$(call add-java-resources-to,$@))
|
2016-03-11 19:32:01 +01:00
|
|
|
else # full_classes_jar
|
2014-02-06 23:45:37 +01:00
|
|
|
$(add-dex-to-package)
|
2016-03-11 19:32:01 +01:00
|
|
|
endif # full_classes_jar
|
2016-12-21 23:29:13 +01:00
|
|
|
ifdef LOCAL_JACK_ENABLED
|
2014-09-08 14:45:14 +02:00
|
|
|
$(add-carried-jack-resources)
|
2016-12-21 23:29:13 +01:00
|
|
|
endif
|
2014-02-06 23:45:37 +01:00
|
|
|
ifdef LOCAL_DEX_PREOPT
|
2016-03-11 19:32:01 +01:00
|
|
|
ifneq ($(BUILD_PLATFORM_ZIP),)
|
|
|
|
@# Keep a copy of apk with classes.dex unstripped
|
|
|
|
$(hide) cp -f $@ $(dir $@)package.dex.apk
|
|
|
|
endif # BUILD_PLATFORM_ZIP
|
2014-02-06 23:45:37 +01:00
|
|
|
ifneq (nostripping,$(LOCAL_DEX_PREOPT))
|
|
|
|
$(call dexpreopt-remove-classes.dex,$@)
|
|
|
|
endif
|
|
|
|
endif
|
2015-04-15 21:09:32 +02:00
|
|
|
$(sign-package)
|
2014-02-06 23:45:37 +01:00
|
|
|
|
2014-12-02 02:46:56 +01:00
|
|
|
###############################
|
|
|
|
## Build dpi-specific apks, if it's apps_only build.
|
|
|
|
ifdef TARGET_BUILD_APPS
|
|
|
|
ifdef LOCAL_DPI_VARIANTS
|
|
|
|
$(foreach d, $(LOCAL_DPI_VARIANTS), \
|
|
|
|
$(eval my_dpi := $(d)) \
|
|
|
|
$(eval include $(BUILD_SYSTEM)/dpi_specific_apk.mk))
|
|
|
|
endif
|
|
|
|
endif
|
|
|
|
|
2014-05-22 01:13:33 +02:00
|
|
|
###############################
|
|
|
|
## Rule to build the odex file
|
|
|
|
ifdef LOCAL_DEX_PREOPT
|
|
|
|
$(built_odex): PRIVATE_DEX_FILE := $(built_dex)
|
2014-09-13 20:26:39 +02:00
|
|
|
# Use pattern rule - we may have multiple built odex files.
|
|
|
|
$(built_odex) : $(dir $(LOCAL_BUILT_MODULE))% : $(built_dex)
|
2014-05-28 22:34:59 +02:00
|
|
|
$(hide) mkdir -p $(dir $@) && rm -f $@
|
2014-05-22 01:13:33 +02:00
|
|
|
$(add-dex-to-package)
|
|
|
|
$(hide) mv $@ $@.input
|
|
|
|
$(call dexpreopt-one-file,$@.input,$@)
|
|
|
|
$(hide) rm $@.input
|
|
|
|
endif
|
|
|
|
|
2014-07-23 00:42:11 +02:00
|
|
|
###############################
|
|
|
|
## APK splits
|
|
|
|
ifdef LOCAL_PACKAGE_SPLITS
|
2014-07-23 19:27:57 +02:00
|
|
|
# The splits should have been built in the same command building the base apk.
|
2015-12-04 19:07:41 +01:00
|
|
|
# This rule just runs signing.
|
2014-07-23 19:27:57 +02:00
|
|
|
# Note that we explicily check the existence of the split apk and remove the
|
|
|
|
# built base apk if the split apk isn't there.
|
|
|
|
# That way the build system will rerun the aapt after the user changes the splitting parameters.
|
2014-07-23 00:42:11 +02:00
|
|
|
$(built_apk_splits): PRIVATE_PRIVATE_KEY := $(private_key)
|
|
|
|
$(built_apk_splits): PRIVATE_CERTIFICATE := $(certificate)
|
2014-07-23 19:27:57 +02:00
|
|
|
$(built_apk_splits) : $(built_module_path)/%.apk : $(LOCAL_BUILT_MODULE)
|
|
|
|
$(hide) if [ ! -f $@ ]; then \
|
|
|
|
echo 'No $@ generated, check your apk splitting parameters.' 1>&2; \
|
|
|
|
rm $<; exit 1; \
|
|
|
|
fi
|
|
|
|
$(sign-package)
|
2014-07-23 00:42:11 +02:00
|
|
|
|
|
|
|
# Rules to install the splits
|
2016-03-01 02:52:39 +01:00
|
|
|
$(installed_apk_splits) : $(my_module_path)/$(LOCAL_MODULE)_%.apk : $(built_module_path)/package_%.apk
|
2014-07-23 19:27:57 +02:00
|
|
|
@echo "Install: $@"
|
|
|
|
$(copy-file-to-new-target)
|
2014-07-23 00:42:11 +02:00
|
|
|
|
|
|
|
# Register the additional built and installed files.
|
|
|
|
ALL_MODULES.$(my_register_name).INSTALLED += $(installed_apk_splits)
|
|
|
|
ALL_MODULES.$(my_register_name).BUILT_INSTALLED += \
|
2014-10-01 21:01:04 +02:00
|
|
|
$(foreach s,$(my_split_suffixes),$(built_module_path)/package_$(s).apk:$(my_module_path)/$(LOCAL_MODULE)_$(s).apk)
|
2014-07-23 00:42:11 +02:00
|
|
|
|
|
|
|
# Make sure to install the splits when you run "make <module_name>".
|
2016-09-21 01:01:28 +02:00
|
|
|
$(my_all_targets): $(installed_apk_splits)
|
2015-06-03 21:43:50 +02:00
|
|
|
|
|
|
|
ifdef LOCAL_COMPATIBILITY_SUITE
|
|
|
|
|
2017-02-17 03:04:10 +01:00
|
|
|
$(foreach suite, $(LOCAL_COMPATIBILITY_SUITE), \
|
|
|
|
$(eval my_compat_dist_$(suite) := $(foreach dir, $(call compatibility_suite_dirs,$(suite)), \
|
|
|
|
$(foreach s,$(my_split_suffixes),\
|
|
|
|
$(built_module_path)/package_$(s).apk:$(dir)/$(LOCAL_MODULE)_$(s).apk))))
|
|
|
|
|
|
|
|
$(call create-suite-dependencies)
|
2015-06-03 21:43:50 +02:00
|
|
|
|
|
|
|
endif # LOCAL_COMPATIBILITY_SUITE
|
2014-07-23 00:42:11 +02:00
|
|
|
endif # LOCAL_PACKAGE_SPLITS
|
|
|
|
|
2014-02-06 23:45:37 +01:00
|
|
|
# Save information about this package
|
|
|
|
PACKAGES.$(LOCAL_PACKAGE_NAME).OVERRIDES := $(strip $(LOCAL_OVERRIDES_PACKAGES))
|
|
|
|
PACKAGES.$(LOCAL_PACKAGE_NAME).RESOURCE_FILES := $(all_resources)
|
|
|
|
|
|
|
|
PACKAGES := $(PACKAGES) $(LOCAL_PACKAGE_NAME)
|
|
|
|
|
|
|
|
endif # skip_definition
|
|
|
|
|
|
|
|
# Reset internal variables.
|
|
|
|
all_res_assets :=
|
2017-02-01 16:44:58 +01:00
|
|
|
|
|
|
|
ifdef enforce_rro_enabled
|
|
|
|
ifdef LOCAL_EXPORT_PACKAGE_RESOURCES
|
|
|
|
enforce_rro_use_res_lib := true
|
|
|
|
else
|
|
|
|
enforce_rro_use_res_lib := false
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef LOCAL_MANIFEST_PACKAGE_NAME
|
|
|
|
enforce_rro_is_manifest_package_name := true
|
|
|
|
enforce_rro_manifest_package_info := $(LOCAL_MANIFEST_PACKAGE_NAME)
|
|
|
|
else
|
|
|
|
enforce_rro_is_manifest_package_name := false
|
|
|
|
enforce_rro_manifest_package_info := $(full_android_manifest)
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(call append_enforce_rro_sources, \
|
|
|
|
$(my_register_name), \
|
|
|
|
$(enforce_rro_is_manifest_package_name), \
|
|
|
|
$(enforce_rro_manifest_package_info), \
|
|
|
|
$(enforce_rro_use_res_lib), \
|
|
|
|
$(package_resource_overlays) \
|
|
|
|
)
|
2017-03-30 04:25:02 +02:00
|
|
|
endif # enforce_rro_enabled
|