ifndef KATI
$(warning Calling make directly is no longer supported.)
$(warning Either use 'envsetup.sh; m' or 'build/soong/soong_ui.bash --make-mode')
$(error done) endif
$(info [1/1] initializing Make module parser ...)
# Absolute path of the present working direcotry. # This overrides the shell variable $PWD, which does not necessarily points to # the top of the source tree, for example when "make -C" is used in m/mm/mmm.
PWD := $(shell pwd)
# This is the default target. It must be the first declared target.
.PHONY: droid
DEFAULT_GOAL := droid
$(DEFAULT_GOAL): droid_targets
.PHONY: droid_targets
droid_targets:
# Set up various standard variables based on configuration # and host information. include build/make/core/config.mk
include $(SOONG_OUT_DIR)/make_vars-$(TARGET_PRODUCT)$(COVERAGE_SUFFIX).mk
YACC :=$= $(BISON) -d
include $(BUILD_SYSTEM)/clang/config.mk
# Write the build number to a file so it can be read back in # without changing the command line every time. Avoids rebuilds # when using ninja.
BUILD_NUMBER_FILE := $(SOONG_OUT_DIR)/build_number.txt
$(KATI_obsolete_var BUILD_NUMBER,See https://android.googlesource.com/platform/build/+/master/Changes.md#BUILD_NUMBER)
BUILD_HOSTNAME_FILE := $(SOONG_OUT_DIR)/build_hostname.txt
$(KATI_obsolete_var BUILD_HOSTNAME,Use BUILD_HOSTNAME_FROM_FILE instead)
$(KATI_obsolete_var FILE_NAME_TAG,https://android.googlesource.com/platform/build/+/master/Changes.md#FILE_NAME_TAG)
DATE_FROM_FILE := date -d @$(BUILD_DATETIME_FROM_FILE)
.KATI_READONLY := DATE_FROM_FILE
# Make an empty directory, which can be used to make empty jars
EMPTY_DIRECTORY := $(OUT_DIR)/empty
$(shell mkdir -p $(EMPTY_DIRECTORY) && rm -rf $(EMPTY_DIRECTORY)/*)
# Clean rules
.PHONY: clean-dex-files clean-dex-files:
$(hide) find $(OUT_DIR) -name "*.dex" | xargs rm -f
$(hide) for i in `find $(OUT_DIR) -name "*.jar" -o -name "*.apk"` ; do ((unzip -l $$i 2> /dev/null | \
grep -q "\.dex$$" && rm -f $$i) || continue ) ; done
@echo"All dex files and archives containing dex files have been removed."
# These are the modifier targets that don't do anything themselves, but # change the behavior of the build. # (must be defined before including definitions.make)
INTERNAL_MODIFIER_TARGETS := all
# EMMA_INSTRUMENT_STATIC merges the static jacoco library to each # jacoco-enabled module. ifeq (true,$(EMMA_INSTRUMENT_STATIC))
EMMA_INSTRUMENT := true endif
ifdef TARGET_ARCH_SUITE # TODO(b/175577370): Enable this error. # $(error TARGET_ARCH_SUITE is not supported in kati/make builds) endif
$(KATI_obsolete_var ADDITIONAL_BUILD_PROPERTIES, Please use ADDITIONAL_SYSTEM_PROPERTIES)
# Bring in standard build system definitions. include $(BUILD_SYSTEM)/definitions.mk
ifneq ($(filter user userdebug eng,$(MAKECMDGOALS)),)
$(info ***************************************************************)
$(info ***************************************************************)
$(info Do not pass '$(filter user userdebug eng,$(MAKECMDGOALS))' on \
the make command line.)
$(info Set TARGET_BUILD_VARIANT in buildspec.mk, or use lunch or)
$(info choosecombo.)
$(info ***************************************************************)
$(info ***************************************************************)
$(error stopping) endif
# These are the valid values of TARGET_BUILD_VARIANT.
INTERNAL_VALID_VARIANTS := user userdebug eng ifneq ($(filter-out $(INTERNAL_VALID_VARIANTS),$(TARGET_BUILD_VARIANT)),)
$(info ***************************************************************)
$(info ***************************************************************)
$(info Invalid variant: $(TARGET_BUILD_VARIANT))
$(info Valid values are: $(INTERNAL_VALID_VARIANTS))
$(info ***************************************************************)
$(info ***************************************************************)
$(error stopping) endif
# ----------------------------------------------------------------- # PDK builds are no longer supported, this is always platform
TARGET_BUILD_JAVA_SUPPORT_LEVEL :=$= platform
$(KATI_obsolete_var PRODUCT_FULL_TREBLE,\
Code should be written to work regardless of a device being Treble) # ----------------------------------------------------------------- ### ### In this section we set up the things that are different ### between the build variants ###
ifeq ($(TARGET_BUILD_VARIANT),userdebug) # Pick up some extra useful tools
tags_to_install := debug endif
ifeq ($(TARGET_BUILD_VARIANT),eng)
tags_to_install := debug eng endif
## asan ##
# Install some additional tools on ASAN builds IFF we are also installing debug tools ifneq ($(filter address,$(SANITIZE_TARGET)),) ifneq (,$(filter debug,$(tags_to_install)))
tags_to_install += asan endif endif
# Detect if we want to build a repository for the SDK
sdk_repo_goal := $(strip $(filter sdk_repo,$(MAKECMDGOALS)))
MAKECMDGOALS := $(strip $(filter-out sdk_repo,$(MAKECMDGOALS)))
ifneq ($(words $(sort $(filter-out $(INTERNAL_MODIFIER_TARGETS) checkbuild emulator_tests,$(MAKECMDGOALS)))),1)
$(error The 'sdk' target may not be specified with any other targets) endif
# TODO: this should be eng I think. Since the sdk is built from the eng # variant.
tags_to_install := debug eng else# !sdk endif
BUILD_WITHOUT_PV := true
# ------------------------------------------------------------ # Define a function that, given a list of module tags, returns # non-empty if that module should be installed in /system.
# For most goals, anything not tagged with the "tests" tag should # be installed in /system. define should-install-to-system
$(if $(filter tests,$(1)),,true) endef
ifdef is_sdk_build # For the sdk goal, anything with the "samples" tag should be # installed in /data even if that module also has "eng"/"debug"/"user". define should-install-to-system
$(if $(filter samples tests,$(1)),,true) endef endif
# If they only used the modifier goals (all, etc), we'll actually # build the default target. ifeq ($(filter-out $(INTERNAL_MODIFIER_TARGETS),$(MAKECMDGOALS)),)
.PHONY: $(INTERNAL_MODIFIER_TARGETS)
$(INTERNAL_MODIFIER_TARGETS): $(DEFAULT_GOAL) endif
# # Typical build; include any Android.mk files we can find. #
include $(BUILD_SYSTEM)/art_config.mk
# Bring in dex_preopt.mk # This creates some modules so it needs to be included after # should-install-to-system is defined (in order for base_rules.mk to function # properly), but before readonly-final-product-vars is called. include $(BUILD_SYSTEM)/dex_preopt.mk
# Strip and readonly a few more variables so they won't be modified.
$(readonly-final-product-vars)
# Color-coded warnings including current module info # $(1): message to print define pretty-warning
$(shell $(callecho-warning,$(LOCAL_MODULE_MAKEFILE),$(LOCAL_MODULE): $(1))) endef
# Color-coded errors including current module info # $(1): message to print define pretty-error
$(shell $(callecho-error,$(LOCAL_MODULE_MAKEFILE),$(LOCAL_MODULE): $(1)))
$(error done) endef
include_makefiles_inc := .
FULL_BUILD :=
ifneq ($(dont_bother),true)
FULL_BUILD := true # # Include all of the makefiles in the system #
include_makefiles_total := $(words int $(subdir_makefiles))
$(foreach mk,$(subdir_makefiles),$(info [$(call inc_and_print,include_makefiles_inc)/$(include_makefiles_total)] including $(mk) ...)$(evalinclude $(mk)))
# Unfortunately build/tasks is included at a wrong time and the order is important (b/417070498)
-include device/generic/goldfish/build/tasks.workaround/emu_img_zip.mk
# Include art.mk here because build/core/tasks/art-host-tests.mk need it.
-include art/art.mk
# Build bootloader.img/radio.img, and unpack the partitions.
-include vendor/google_devices/$(TARGET_SOC)/prebuilts/misc_bins/update_bootloader_radio_image.mk
-include $(UPDATE_BOOTLOADER_RADIO_IMAGE_MAKEFILE)
# For an unbundled image, we can skip blueprint_tools because unbundled image # aims to remove a large number framework projects from the manifest, the # sources or dependencies for these tools may be missing from the tree. ifeq (,$(TARGET_BUILD_UNBUNDLED_IMAGE))
droid_targets : blueprint_tools
checkbuild: blueprint_tests endif
# Create necessary directories and symlinks in the root filesystem include system/core/rootdir/create_root_structure.mk
endif# dont_bother
ifndef include_makefiles_total
include_makefiles_total := $(words init post finish) endif
$(info [$(include_makefiles_total)/$(include_makefiles_total)] finishing Make module rules ...)
# ------------------------------------------------------------------- # All module makefiles have been included at this point. # -------------------------------------------------------------------
# ------------------------------------------------------------------- # Use basic warning/error messages now that LOCAL_MODULE_MAKEFILE # and LOCAL_MODULE aren't useful anymore. # ------------------------------------------------------------------- define pretty-warning
$(warning $(1)) endef
define pretty-error
$(error $(1)) endef
# ------------------------------------------------------------------- # Enforce to generate all RRO packages for modules having resource # overlays. # ------------------------------------------------------------------- ifneq ($(PRODUCT_ENFORCE_RRO_TARGETS),)
$(call generate_all_enforce_rro_packages) endif
# ------------------------------------------------------------------- # Sort ALL_MODULES to remove duplicate entries. # -------------------------------------------------------------------
ALL_MODULES := $(sort $(ALL_MODULES)) # Cannot set to readonly because Makefile extends ALL_MODULES # .KATI_READONLY := ALL_MODULES
# ------------------------------------------------------------------- # Fix up CUSTOM_MODULES to refer to installed files rather than # just bare module names. Leave unknown modules alone in case # they're actually full paths to a particular file.
known_custom_modules := $(filter $(ALL_MODULES),$(CUSTOM_MODULES))
unknown_custom_modules := $(filter-out $(ALL_MODULES),$(CUSTOM_MODULES))
CUSTOM_MODULES := \
$(call module-installed-files,$(known_custom_modules)) \
$(unknown_custom_modules)
# ------------------------------------------------------------------- # Define dependencies for modules that require other modules. # This can only happen now, after we've read in all module makefiles. # # TODO: deal with the fact that a bare module name isn't # unambiguous enough. Maybe declare short targets like # APPS:Quake or HOST:SHARED_LIBRARIES:libutils. # BUG: the system image won't know to depend on modules that are # brought in as requirements of other modules. # # Resolve the required module name to 32-bit or 64-bit variant.
# Get a list of corresponding module names for the second arch, if they exist. # $(1): TARGET, HOST or HOST_CROSS # $(2): A list of module names define get-modules-for-2nd-arch
$(strip \
$(foreach m,$(2), \
$(if $(filter true,$(ALL_MODULES.$(m)$($(1)_2ND_ARCH_MODULE_SUFFIX).FOR_2ND_ARCH)), \
$(m)$($(1)_2ND_ARCH_MODULE_SUFFIX) \
) \
) \
) endef
# Resolves module bitness for PRODUCT_PACKAGES and PRODUCT_HOST_PACKAGES. # The returned list of module names can be used to access # ALL_MODULES.<module>.<*> variables. # Name resolution for PRODUCT_PACKAGES / PRODUCT_HOST_PACKAGES: # foo:32 resolves to foo_32; # foo:64 resolves to foo; # foo resolves to both foo and foo_32 (if foo_32 is defined). # # Name resolution for HOST_CROSS modules: # foo:32 resolves to foo; # foo:64 resolves to foo_64; # foo resolves to both foo and foo_64 (if foo_64 is defined). # # $(1): TARGET, HOST or HOST_CROSS # $(2): A list of simple module names with :32 and :64 suffix define resolve-bitness-for-modules
$(strip \
$(eval modules_32 := $(patsubst %:32,%,$(filter %:32,$(2)))) \
$(eval modules_64 := $(patsubst %:64,%,$(filter %:64,$(2)))) \
$(eval modules_both := $(filter-out %:32 %:64,$(2))) \
$(eval### if 2ND_HOST_CROSS_IS_64_BIT, then primary/secondary are reversed for HOST_CROSS modules) \
$(if $(filter HOST_CROSS_true,$(1)_$(2ND_HOST_CROSS_IS_64_BIT)), \
$(eval modules_1st_arch := $(modules_32)) \
$(eval modules_2nd_arch := $(modules_64)), \
$(eval modules_1st_arch := $(modules_64)) \
$(eval modules_2nd_arch := $(modules_32))) \
$(eval### Note for 32-bit product, 32 and 64 will be added as their original module names.) \
$(eval modules := $(modules_1st_arch)) \
$(if $($(1)_2ND_ARCH), \
$(eval modules += $(call get-modules-for-2nd-arch,$(1),$(modules_2nd_arch))), \
$(eval modules += $(modules_2nd_arch))) \
$(eval### For the rest we add both) \
$(eval modules += $(modules_both)) \
$(if $($(1)_2ND_ARCH), \
$(eval modules += $(call get-modules-for-2nd-arch,$(1),$(modules_both)))) \
$(modules) \
) endef
# Resolve the required module names to 32-bit or 64-bit variant for: # ALL_MODULES.<*>.REQUIRED_FROM_TARGET # ALL_MODULES.<*>.REQUIRED_FROM_HOST # ALL_MODULES.<*>.REQUIRED_FROM_HOST_CROSS # # If a module is for cross host OS, the required modules are also for that OS. # Required modules explicitly suffixed with :32 or :64 resolve to that bitness. # Otherwise if the requiring module is native and the required module is shared # library or native test, then the required module resolves to the same bitness. # Otherwise the required module resolves to both variants, if they exist. # $(1): TARGET, HOST or HOST_CROSS define select-bitness-of-required-modules
$(foreach m,$(ALL_MODULES), \
$(eval r := $(ALL_MODULES.$(m).REQUIRED_FROM_$(1))) \
$(if $(r), \
$(if $(filter HOST_CROSS,$(1)), \
$(if $(ALL_MODULES.$(m).FOR_HOST_CROSS),,$(error Only expected REQUIRED_FROM_HOST_CROSS on FOR_HOST_CROSS modules - $(m))) \
$(eval r := $(addprefix host_cross_,$(r)))) \
$(eval module_is_native := \
$(filter EXECUTABLES SHARED_LIBRARIES NATIVE_TESTS,$(ALL_MODULES.$(m).CLASS))) \
$(eval r_r := \
$(foreach r_i,$(r), \
$(if $(filter %:32 %:64,$(r_i)), \
$(eval r_m := $(call resolve-bitness-for-modules,$(1),$(r_i))), \
$(eval r_m := \
$(eval r_i_2nd := $(call get-modules-for-2nd-arch,$(1),$(r_i))) \
$(eval required_is_shared_library_or_native_test := \
$(filter SHARED_LIBRARIES NATIVE_TESTS, \
$(ALL_MODULES.$(r_i).CLASS) $(ALL_MODULES.$(r_i_2nd).CLASS))) \
$(if $(and $(module_is_native),$(required_is_shared_library_or_native_test)), \
$(if $(ALL_MODULES.$(m).FOR_2ND_ARCH),$(r_i_2nd),$(r_i)), \
$(r_i) $(r_i_2nd)))) \
$(eval r_m := $(foreach r_j,$(r_m),$(if $(ALL_MODULES.$(r_j).PATH),$(r_j)))) \
$(if $(r_m),,$(eval _nonexistent_required += $(1)$(comma)$(m)$(comma)$(1)$(comma)$(r_i))) \
$(r_m))) \
$(eval ALL_MODULES.$(m).REQUIRED_FROM_$(1) := $(sort $(r_r))) \
) \
) endef
# Resolve the required module names to 32-bit or 64-bit variant for: # ALL_MODULES.<*>.TARGET_REQUIRED_FROM_HOST # ALL_MODULES.<*>.HOST_REQUIRED_FROM_TARGET # # This is like select-bitness-of-required-modules, but it doesn't have # complicated logic for various module types. # Calls resolve-bitness-for-modules to resolve module names. # $(1): TARGET or HOST # $(2): HOST or TARGET define select-bitness-of-target-host-required-modules
$(foreach m,$(ALL_MODULES), \
$(eval r := $(ALL_MODULES.$(m).$(1)_REQUIRED_FROM_$(2))) \
$(if $(r), \
$(eval r_r := \
$(foreach r_i,$(r), \
$(eval r_m := $(call resolve-bitness-for-modules,$(1),$(r_i))) \
$(eval r_m := $(foreach r_j,$(r_m),$(if $(ALL_MODULES.$(r_j).PATH),$(r_j)))) \
$(if $(r_m),,$(eval _nonexistent_required += $(2)$(comma)$(m)$(comma)$(1)$(comma)$(r_i))) \
$(r_m))) \
$(eval ALL_MODULES.$(m).$(1)_REQUIRED_FROM_$(2) := $(sort $(r_r))) \
) \
) endef
# Some executables are skipped in ASAN SANITIZE_TARGET build, thus breaking their dependencies. ifneq (,$(filter address,$(SANITIZE_TARGET)))
check_missing_required_modules := endif# SANITIZE_TARGET has ASAN
# HOST OS darwin build is broken, disable this check for darwin for now. # TODO(b/162102724): Remove this when darwin host has no broken dependency. ifneq (,$(filter $(HOST_OS),darwin))
check_missing_required_modules := endif# HOST_OS == darwin
ifeq (true,$(check_missing_required_modules)) ifneq (,$(_nonexistent_required))
$(warning Missing required dependencies:)
$(foreach r_i,$(_nonexistent_required), \
$(eval r := $(subst $(comma),$(space),$(r_i))) \
$(info $(word 1,$(r)) module $(word 2,$(r)) requires non-existent $(word 3,$(r)) module: $(word 4,$(r))) \
)
$(warning Set BUILD_BROKEN_MISSING_REQUIRED_MODULES := true to bypass this check if this is intentional) ifneq (,$(PRODUCT_SOURCE_ROOT_DIRS))
$(warning PRODUCT_SOURCE_ROOT_DIRS is non-empty. Some necessary modules may have been skipped by Soong) endif
$(error Build failed) endif# _nonexistent_required != empty endif# check_missing_required_modules == true
define add-required-deps
$(1): | $(2) endef
# Use a normal dependency instead of an order-only dependency when installing # host dynamic binaries so that the timestamp of the final binary always # changes, even if the toc optimization has skipped relinking the binary # and its dependant shared libraries. define add-required-host-so-deps
$(1): $(2) endef
$(info [$(include_makefiles_total)/$(include_makefiles_total)] finishing Make module rules: Adding module dependencies)
# Sets up dependencies such that whenever a host module is installed, # any other host modules listed in $(ALL_MODULES.$(m).REQUIRED_FROM_HOST) will also be installed define add-all-host-to-host-required-modules-deps
$(foreach m,$(ALL_MODULES), \
$(eval r := $(ALL_MODULES.$(m).REQUIRED_FROM_HOST)) \
$(if $(r), \
$(eval r := $(call module-installed-files,$(r))) \
$(eval h_m := $(filter $(HOST_OUT)/%, $(ALL_MODULES.$(m).INSTALLED))) \
$(eval h_r := $(filter $(HOST_OUT)/%, $(r))) \
$(eval h_r := $(filter-out $(h_m), $(h_r))) \
$(if $(h_m), $(eval $(call add-required-deps, $(h_m),$(h_r)))) \
) \
) endef
$(call add-all-host-to-host-required-modules-deps)
# Sets up dependencies such that whenever a host cross module is installed, # any other host cross modules listed in $(ALL_MODULES.$(m).REQUIRED_FROM_HOST_CROSS) will also be installed define add-all-host-cross-to-host-cross-required-modules-deps
$(foreach m,$(ALL_MODULES), \
$(eval r := $(ALL_MODULES.$(m).REQUIRED_FROM_HOST_CROSS)) \
$(if $(r), \
$(eval r := $(call module-installed-files,$(r))) \
$(eval hc_m := $(filter $(HOST_CROSS_OUT)/%, $(ALL_MODULES.$(m).INSTALLED))) \
$(eval hc_r := $(filter $(HOST_CROSS_OUT)/%, $(r))) \
$(eval hc_r := $(filter-out $(hc_m), $(hc_r))) \
$(if $(hc_m), $(eval $(call add-required-deps, $(hc_m),$(hc_r)))) \
) \
) endef
$(call add-all-host-cross-to-host-cross-required-modules-deps)
# Sets up dependencies such that whenever a target module is installed, # any other target modules listed in $(ALL_MODULES.$(m).REQUIRED_FROM_TARGET) will also be installed # This doesn't apply to ORDERONLY_INSTALLED items. define add-all-target-to-target-required-modules-deps
$(foreach m,$(ALL_MODULES), \
$(eval r := $(ALL_MODULES.$(m).REQUIRED_FROM_TARGET)) \
$(if $(r), \
$(eval r := $(call module-installed-files,$(r))) \
$(eval t_m := $(filter $(TARGET_OUT_ROOT)/%, $(ALL_MODULES.$(m).INSTALLED))) \
$(eval t_m := $(filter-out $(ALL_MODULES.$(m).ORDERONLY_INSTALLED), $(ALL_MODULES.$(m).INSTALLED))) \
$(eval t_r := $(filter $(TARGET_OUT_ROOT)/%, $(r))) \
$(eval t_r := $(filter-out $(t_m), $(t_r))) \
$(if $(t_m), $(eval $(call add-required-deps, $(t_m),$(t_r)))) \
) \
) endef
$(call add-all-target-to-target-required-modules-deps)
# Sets up dependencies such that whenever a host module is installed, # any target modules listed in $(ALL_MODULES.$(m).TARGET_REQUIRED_FROM_HOST) will also be installed define add-all-host-to-target-required-modules-deps
$(foreach m,$(ALL_MODULES), \
$(eval req_mods := $(ALL_MODULES.$(m).TARGET_REQUIRED_FROM_HOST))\
$(if $(req_mods), \
$(eval req_files := )\
$(foreach req_mod,$(req_mods), \
$(eval req_file := $(filter $(TARGET_OUT_ROOT)/%, $(call module-installed-files,$(req_mod)))) \
$(if $(filter true,$(ALLOW_MISSING_DEPENDENCIES)), \
, \
$(if $(strip $(req_file)), \
, \
$(error $(m).LOCAL_TARGET_REQUIRED_MODULES : illegal value $(req_mod) : not a device module. If you want to specify host modules to be required to be installed along with your host module, add those module names to LOCAL_REQUIRED_MODULES instead) \
) \
) \
$(eval req_files := $(req_files)$(space)$(req_file))\
)\
$(eval req_files := $(strip $(req_files)))\
$(eval mod_files := $(filter $(HOST_OUT)/%, $(call module-installed-files,$(m)))) \
$(if $(mod_files),\
$(eval $(call add-required-deps, $(mod_files),$(req_files))) \
)\
)\
) endef
$(call add-all-host-to-target-required-modules-deps)
# Sets up dependencies such that whenever a target module is installed, # any host modules listed in $(ALL_MODULES.$(m).HOST_REQUIRED_FROM_TARGET) will also be installed define add-all-target-to-host-required-modules-deps
$(foreach m,$(ALL_MODULES), \
$(eval req_mods := $(ALL_MODULES.$(m).HOST_REQUIRED_FROM_TARGET))\
$(if $(req_mods), \
$(eval req_files := )\
$(foreach req_mod,$(req_mods), \
$(eval req_file := $(filter $(HOST_OUT)/%, $(call module-installed-files,$(req_mod)))) \
$(if $(filter true,$(ALLOW_MISSING_DEPENDENCIES)), \
, \
$(if $(strip $(req_file)), \
, \
$(error $(m).LOCAL_HOST_REQUIRED_MODULES : illegal value $(req_mod) : not a host module. Ifyou want to specify target modules to be required to be installed along with your target module, add those module names to LOCAL_REQUIRED_MODULES instead) \
) \
) \
$(eval req_files := $(req_files)$(space)$(req_file))\
)\
$(eval req_files := $(strip $(req_files)))\
$(eval mod_files := $(filter $(TARGET_OUT_ROOT)/%, $(call module-installed-files,$(m))))\
$(if $(mod_files),\
$(eval $(call add-required-deps, $(mod_files),$(req_files))) \
)\
)\
) endef
$(call add-all-target-to-host-required-modules-deps)
t_m :=
h_m :=
hc_m :=
t_r :=
h_r :=
hc_r :=
# Establish the dependencies on the shared libraries. # It also adds the shared library module names to ALL_MODULES.$(m).REQUIRED_FROM_(TARGET|HOST|HOST_CROSS), # so they can be expanded to product_MODULES later. # $(1): TARGET_ or HOST_ or HOST_CROSS_. # $(2): non-empty for 2nd arch. # $(3): non-empty for host cross compile. define resolve-shared-libs-depes
$(foreach m,$($(if $(2),$($(1)2ND_ARCH_VAR_PREFIX))$(1)DEPENDENCIES_ON_SHARED_LIBRARIES),\
$(eval p := $(subst :,$(space),$(m)))\
$(eval mod := $(firstword $(p)))\
$(eval deps := $(subst $(comma),$(space),$(lastword $(p))))\
$(eval root := $(1)OUT$(if $(call streq,$(1),TARGET_),_ROOT))\
$(if $(2),$(eval deps := $(addsuffix $($(1)2ND_ARCH_MODULE_SUFFIX),$(deps))))\
$(if $(3),$(eval deps := $(addprefix host_cross_,$(deps))))\
$(eval r := $(filter $($(root))/%,$(call module-installed-files,\
$(deps))))\
$(if $(filter $(1),HOST_),\
$(eval ALL_MODULES.$(mod).HOST_SHARED_LIBRARY_FILES := $$(ALL_MODULES.$(mod).HOST_SHARED_LIBRARY_FILES) $(word 2,$(p)) $(r))\
$(eval ALL_MODULES.$(mod).HOST_SHARED_LIBRARIES := $$(ALL_MODULES.$(mod).HOST_SHARED_LIBRARIES) $(deps))\
$(eval $(call add-required-host-so-deps,$(word 2,$(p)),$(r))),\
$(eval $(call add-required-deps,$(word 2,$(p)),$(r))))\
$(eval ALL_MODULES.$(mod).REQUIRED_FROM_$(patsubst %_,%,$(1)) += $(deps))) endef
$(call resolve-shared-libs-depes,TARGET_)
ifdef TARGET_2ND_ARCH
$(call resolve-shared-libs-depes,TARGET_,true) endif
$(call resolve-shared-libs-depes,HOST_)
ifdef HOST_2ND_ARCH
$(call resolve-shared-libs-depes,HOST_,true) endif # Update host side shared library dependencies for tests in suite device-tests and general-tests. # This should be called after calling resolve-shared-libs-depes for HOST_2ND_ARCH.
$(call update-host-shared-libs-deps-for-suites)
ifdef HOST_CROSS_OS
$(call resolve-shared-libs-depes,HOST_CROSS_,,true)
ifdef HOST_CROSS_2ND_ARCH
$(call resolve-shared-libs-depes,HOST_CROSS_,true,true) endif endif
# Pass the shared libraries dependencies to prebuilt ELF file check. define add-elf-file-check-shared-lib
$(1): PRIVATE_SHARED_LIBRARY_FILES += $(2)
$(1): $(2) endef
m :=
r :=
p :=
stamp :=
deps :=
add-required-deps :=
################################################################################ # Link type checking # # ALL_LINK_TYPES contains a list of all link type prefixes (generally one per # module, but APKs can "link" to both java and native code). The link type # prefix consists of all the information needed by intermediates-dir-for: # # LINK_TYPE:TARGET:_:2ND:STATIC_LIBRARIES:libfoo # # 1: LINK_TYPE literal # 2: prefix # - TARGET # - HOST # - HOST_CROSS # 3: Whether to use the common intermediates directory or not # - _ # - COMMON # 4: Whether it's the second arch or not # - _ # - 2ND_ # 5: Module Class # - STATIC_LIBRARIES # - SHARED_LIBRARIES # - ... # 6: Module Name # # Then fields under that are separated by a period and the field name: # - TYPE: the link types for this module # - MAKEFILE: Where this module was defined # - BUILT: The built module location # - DEPS: the link type prefixes for the module's dependencies # - ALLOWED: the link types to allow in this module's dependencies # - WARN: the link types to warn about in this module's dependencies # # All of the dependency link types not listed in ALLOWED or WARN will become # errors. ################################################################################
# $(1): the prefix of the module doing the linking # $(2): the prefix of the linked module define link-type-warning
$(shell $(callecho-warning,$($(1).MAKEFILE),"$(call link-type-name,$(1)) ($($(1).TYPE)) should not link against $(call link-type-name,$(2)) ($(3))")) endef
# $(1): the prefix of the module doing the linking # $(2): the prefix of the linked module define link-type-error
$(shell $(callecho-error,$($(1).MAKEFILE),"$(call link-type-name,$(1)) ($($(1).TYPE)) can not link against $(call link-type-name,$(2)) ($(3))"))\
$(eval link_type_error := true) endef
link-type-missing := ifneq ($(ALLOW_MISSING_DEPENDENCIES),true) # Print an error message if the linked-to module is missing # $(1): the prefix of the module doing the linking # $(2): the prefix of the missing module define link-type-missing
$(shell $(callecho-error,$($(1).MAKEFILE),"$(call link-type-name-variant,$(1)) missing $(call link-type-name-variant,$(2))"))\
$(eval available_variants := $(filter %:$(call link-type-name,$(2)),$(ALL_LINK_TYPES)))\
$(if $(available_variants),\
$(info Available variants:)\
$(foreach v,$(available_variants),$(info $(space)$(space)$(call link-type-name-variant,$(v)))))\
$(info You can set ALLOW_MISSING_DEPENDENCIES=true in your environment if this is intentional, but that may defer real problems until later in the build.)\
$(eval link_type_error := true) endef else define link-type-missing
$(eval $$(1).MISSING := true) endef endif
# Verify that $(1) can link against $(2) # Both $(1) and $(2) are the link type prefix defined above define verify-link-type
$(foreach t,$($(2).TYPE),\
$(if $(filter-out $($(1).ALLOWED),$(t)),\
$(if $(filter $(t),$($(1).WARN)),\
$(call link-type-warning,$(1),$(2),$(t)),\
$(call link-type-error,$(1),$(2),$(t))))) endef
# Converts the recursive variables to simple variables so that we don't have to # evaluate them for every .o rule
$(foreachexport,$(EXPORTS_LIST),$(eval EXPORTS.$$(export) := $$(strip $$(EXPORTS.$$(export)))))
$(foreachexport,$(EXPORTS_LIST),$(eval EXPORT_DEPS.$$(export) := $$(sort $$(EXPORT_DEPS.$$(export)))))
# ------------------------------------------------------------------- # Figure out our module sets. # # Of the modules defined by the component makefiles, # determine what we actually want to build.
# Expand a list of modules to the modules that they override (if any) # $(1): The list of modules. define module-overrides
$(foreach m,$(1),\
$(eval _mo_overrides := $(PACKAGES.$(m).OVERRIDES) $(EXECUTABLES.$(m).OVERRIDES) $(SHARED_LIBRARIES.$(m).OVERRIDES) $(ETC.$(m).OVERRIDES))\
$(if $(filter $(m),$(_mo_overrides)),\
$(error Module $(m) cannot override itself),\
$(_mo_overrides))) endef
########################################################### ## Expand a module name list with REQUIRED modules ########################################################### # $(1): The variable name that holds the initial module name list. # the variable will be modified to hold the expanded results. # $(2): The initial module name list. # $(3): The list of overridden modules. # Returns empty string (maybe with some whitespaces). define expand-required-modules
$(eval _erm_req := $(foreach m,$(2),$(ALL_MODULES.$(m).REQUIRED_FROM_TARGET))) \
$(eval _erm_new_modules := $(sort $(filter-out $($(1)),$(_erm_req)))) \
$(eval _erm_new_overrides := $(call module-overrides,$(_erm_new_modules))) \
$(eval _erm_all_overrides := $(3) $(_erm_new_overrides)) \
$(eval _erm_new_modules := $(filter-out $(_erm_all_overrides), $(_erm_new_modules))) \
$(eval $(1) := $(filter-out $(_erm_new_overrides),$($(1)))) \
$(eval $(1) += $(_erm_new_modules)) \
$(if $(_erm_new_modules),\
$(call expand-required-modules,$(1),$(_erm_new_modules),$(_erm_all_overrides))) endef
# Same as expand-required-modules above, but does not handle module overrides, as # we don't intend to support them on the host. # $(1): The variable name that holds the initial module name list. # the variable will be modified to hold the expanded results. # $(2): The initial module name list. # $(3): HOST or HOST_CROSS depending on whether we're expanding host or host cross modules # Returns empty string (maybe with some whitespaces). define expand-required-host-modules
$(eval _erm_req := $(foreach m,$(2),$(ALL_MODULES.$(m).REQUIRED_FROM_$(3)))) \
$(eval _erm_new_modules := $(sort $(filter-out $($(1)),$(_erm_req)))) \
$(eval $(1) += $(_erm_new_modules)) \
$(if $(_erm_new_modules),\
$(call expand-required-host-modules,$(1),$(_erm_new_modules),$(3))) endef
# Transforms paths relative to PRODUCT_OUT to absolute paths. # $(1): list of relative paths # $(2): optional suffix to append to paths define resolve-product-relative-paths
$(subst $(_vendor_path_placeholder),$(TARGET_COPY_OUT_VENDOR),\
$(subst $(_product_path_placeholder),$(TARGET_COPY_OUT_PRODUCT),\
$(subst $(_system_ext_path_placeholder),$(TARGET_COPY_OUT_SYSTEM_EXT),\
$(subst $(_odm_path_placeholder),$(TARGET_COPY_OUT_ODM),\
$(subst $(_vendor_dlkm_path_placeholder),$(TARGET_COPY_OUT_VENDOR_DLKM),\
$(subst $(_odm_dlkm_path_placeholder),$(TARGET_COPY_OUT_ODM_DLKM),\
$(subst $(_system_dlkm_path_placeholder),$(TARGET_COPY_OUT_SYSTEM_DLKM),\
$(foreach p,$(1),$(call append-path,$(PRODUCT_OUT),$(p)$(2)))))))))) endef
# Returns modules included automatically as a result of certain BoardConfig # variables being set. define auto-included-modules
$(foreach vndk_ver,$(PRODUCT_EXTRA_VNDK_VERSIONS),com.android.vndk.v$(vndk_ver)) \
llndk.libraries.txt \
$(if $(DEVICE_MANIFEST_FILE),vendor_manifest.xml) \
$(if $(DEVICE_MANIFEST_SKUS),$(foreach sku, $(DEVICE_MANIFEST_SKUS),vendor_manifest_$(sku).xml)) \
$(if $(ODM_MANIFEST_FILES),odm_manifest.xml) \
$(if $(ODM_MANIFEST_SKUS),$(foreach sku, $(ODM_MANIFEST_SKUS),odm_manifest_$(sku).xml)) \
endef
# Lists the modules particular product installs. # The base list of modules to build for this product is specified # by the appropriate product definition file, which was included # by product_config.mk. # Name resolution for PRODUCT_PACKAGES: # foo:32 resolves to foo_32; # foo:64 resolves to foo; # foo resolves to both foo and foo_32 (if foo_32 is defined). # # Name resolution for LOCAL_REQUIRED_MODULES: # See the select-bitness-of-required-modules definition. # $(1): product makefile define product-installed-modules
$(eval _pif_modules := \
$(call get-product-var,$(1),PRODUCT_PACKAGES) \
$(if $(filter eng,$(tags_to_install)),$(call get-product-var,$(1),PRODUCT_PACKAGES_ENG)) \
$(if $(filter debug,$(tags_to_install)),$(call get-product-var,$(1),PRODUCT_PACKAGES_DEBUG)) \
$(if $(filter tests,$(tags_to_install)),$(call get-product-var,$(1),PRODUCT_PACKAGES_TESTS)) \
$(if $(filter asan,$(tags_to_install)),$(call get-product-var,$(1),PRODUCT_PACKAGES_DEBUG_ASAN)) \
$(if $(filter java_coverage,$(tags_to_install)),$(call get-product-var,$(1),PRODUCT_PACKAGES_DEBUG_JAVA_COVERAGE)) \
$(if $(filter arm64,$(TARGET_ARCH) $(TARGET_2ND_ARCH)),$(call get-product-var,$(1),PRODUCT_PACKAGES_ARM64)) \
$(if $(PRODUCT_SHIPPING_API_LEVEL), \
$(if $(call math_gt_or_eq,29,$(PRODUCT_SHIPPING_API_LEVEL)),$(call get-product-var,$(1),PRODUCT_PACKAGES_SHIPPING_API_LEVEL_29)) \
$(if $(call math_gt_or_eq,33,$(PRODUCT_SHIPPING_API_LEVEL)),$(call get-product-var,$(1),PRODUCT_PACKAGES_SHIPPING_API_LEVEL_33)) \
$(if $(call math_gt_or_eq,34,$(PRODUCT_SHIPPING_API_LEVEL)),$(call get-product-var,$(1),PRODUCT_PACKAGES_SHIPPING_API_LEVEL_34)) \
) \
$(call auto-included-modules) \
) \
$(eval### Filter out the overridden packages and executables before doing expansion) \
$(eval _pif_overrides := $(call module-overrides,$(_pif_modules))) \
$(eval _pif_modules := $(filter-out $(_pif_overrides), $(_pif_modules))) \
$(eval### Resolve the :32 :64 module name) \
$(eval _pif_modules := $(sort $(call resolve-bitness-for-modules,TARGET,$(_pif_modules)))) \
$(call expand-required-modules,_pif_modules,$(_pif_modules),$(_pif_overrides)) \
$(_pif_modules) endef
# Lists most of the files a particular product installs. # It gives all the installed files for all modules returned by product-installed-modules, # and also includes PRODUCT_COPY_FILES. define product-installed-files
$(filter-out $(HOST_OUT_ROOT)/%,$(call module-installed-files, $(call product-installed-modules,$(1)))) \
$(call resolve-product-relative-paths,\
$(foreach cf,$(call get-product-var,$(1),PRODUCT_COPY_FILES),$(call word-colon,2,$(cf)))) endef
# Similar to product-installed-files above, but handles PRODUCT_HOST_PACKAGES instead # This does support the :32 / :64 syntax, but does not support module overrides. define host-installed-files
$(eval _hif_modules := $(call get-product-var,$(1),PRODUCT_HOST_PACKAGES)) \
$(eval### Split host vs host cross modules) \
$(eval _hcif_modules := $(filter host_cross_%,$(_hif_modules))) \
$(eval _hif_modules := $(filter-out host_cross_%,$(_hif_modules))) \
$(eval### Resolve the :32 :64 module name) \
$(eval _hif_modules := $(sort $(call resolve-bitness-for-modules,HOST,$(_hif_modules)))) \
$(eval _hcif_modules := $(sort $(call resolve-bitness-for-modules,HOST_CROSS,$(_hcif_modules)))) \
$(call expand-required-host-modules,_hif_modules,$(_hif_modules),HOST) \
$(call expand-required-host-modules,_hcif_modules,$(_hcif_modules),HOST_CROSS) \
$(filter $(HOST_OUT)/%,$(call module-installed-files, $(_hif_modules))) \
$(filter $(HOST_CROSS_OUT)/%,$(call module-installed-files, $(_hcif_modules))) endef
# Fails the build if the given list is non-empty, and prints it entries (stripping PRODUCT_OUT). # $(1): list of files to print # $(2): heading to print on failure define maybe-print-list-and-error
$(if $(strip $(1)), \
$(warning $(2)) \
$(info Offending entries:) \
$(foreach e,$(sort $(1)),$(info $(patsubst $(PRODUCT_OUT)/%,%,$(e)))) \
$(error Build failed) \
) endef
ifeq ($(HOST_OS),darwin) # Target builds are not supported on Mac
product_target_FILES :=
product_host_FILES := $(call host-installed-files,$(INTERNAL_PRODUCT)) else ifdef FULL_BUILD ifneq (true,$(ALLOW_MISSING_DEPENDENCIES)) # Check to ensure that all modules in PRODUCT_PACKAGES exist (opt in per product) ifeq (true,$(PRODUCT_ENFORCE_PACKAGES_EXIST))
_allow_list := $(PRODUCT_ENFORCE_PACKAGES_EXIST_ALLOW_LIST)
_modules := $(PRODUCT_PACKAGES) # Strip :32 and :64 suffixes
_modules := $(patsubst %:32,%,$(_modules))
_modules := $(patsubst %:64,%,$(_modules)) # Quickly check all modules in PRODUCT_PACKAGES exist. We check for the # existence if either <module> or the <module>_32 variant.
_nonexistent_modules := $(foreach m,$(_modules), \
$(if $(or $(ALL_MODULES.$(m).PATH),$(call get-modules-for-2nd-arch,TARGET,$(m))),,$(m)))
$(call maybe-print-list-and-error,$(filter-out $(_allow_list),$(_nonexistent_modules)),\
$(INTERNAL_PRODUCT) includes non-existent modules in PRODUCT_PACKAGES) endif
# Check to ensure that all modules in PRODUCT_HOST_PACKAGES exist # # Many host modules are Linux-only, so skip this check on Mac. If we ever have Mac-only modules, # maybe it would make sense to have PRODUCT_HOST_PACKAGES_LINUX/_DARWIN? ifneq ($(HOST_OS),darwin)
_modules := $(PRODUCT_HOST_PACKAGES) # Strip :32 and :64 suffixes
_modules := $(patsubst %:32,%,$(_modules))
_modules := $(patsubst %:64,%,$(_modules))
_nonexistent_modules := $(foreach m,$(_modules),\
$(if $(ALL_MODULES.$(m).REQUIRED_FROM_HOST)$(filter $(HOST_OUT_ROOT)/%,$(ALL_MODULES.$(m).INSTALLED)),,$(m)))
$(call maybe-print-list-and-error,$(_nonexistent_modules),\
$(INTERNAL_PRODUCT) includes non-existent modules in PRODUCT_HOST_PACKAGES) endif endif
# Modules may produce only host installed files in unbundled builds. ifeq (,$(TARGET_BUILD_UNBUNDLED))
_modules := $(call resolve-bitness-for-modules,TARGET, \
$(PRODUCT_PACKAGES) \
$(PRODUCT_PACKAGES_DEBUG) \
$(PRODUCT_PACKAGES_DEBUG_ASAN) \
$(PRODUCT_PACKAGES_ENG) \
$(PRODUCT_PACKAGES_TESTS))
_host_modules := $(foreach m,$(_modules), \
$(if $(ALL_MODULES.$(m).INSTALLED),\
$(if $(filter-out $(HOST_OUT_ROOT)/%,$(ALL_MODULES.$(m).INSTALLED)),,\
$(m)))) ifeq ($(TARGET_ARCH),riscv64) # HACK: riscv64 can't build the device version of bcc and ld.mc due to a # dependency on an old version of LLVM, but they are listed in # base_system.mk which can't add them conditionally based on the target # architecture.
_host_modules := $(filter-out bcc ld.mc,$(_host_modules)) endif
$(call maybe-print-list-and-error,$(sort $(_host_modules)),\
Host modules should be in PRODUCT_HOST_PACKAGES$(comma) not PRODUCT_PACKAGES) endif
product_host_FILES := $(call host-installed-files,$(INTERNAL_PRODUCT))
product_target_FILES := $(call product-installed-files, $(INTERNAL_PRODUCT)) # WARNING: The product_MODULES variable is depended on by external files. # It contains the list of register names that will be installed on the device
product_MODULES := $(_pif_modules)
# Verify the artifact path requirements made by included products.
is_asan := $(if $(filter address,$(SANITIZE_TARGET)),true) ifeq (,$(or $(is_asan),$(DISABLE_ARTIFACT_PATH_REQUIREMENTS))) include $(BUILD_SYSTEM)/artifact_path_requirements.mk endif else # We're not doing a full build, and are probably only including # a subset of the module makefiles. Don't try to build any modules # requested by the product, because we probably won't have rules # to build them.
product_target_FILES :=
product_host_FILES := endif
# TODO: Remove the 3 places in the tree that use ALL_DEFAULT_INSTALLED_MODULES # and get rid of it from this list.
modules_to_install := $(sort \
$(ALL_DEFAULT_INSTALLED_MODULES) \
$(product_target_FILES) \
$(product_host_FILES) \
$(CUSTOM_MODULES) \
)
# Deduplicate compatibility suite dist files across modules and packages before # copying them to their requested locations. Assign the eval result to an unused # var to prevent Make from trying to make a sense of it.
_unused := $(callcopy-many-files, $(sort $(ALL_COMPATIBILITY_DIST_FILES)))
ifdef is_sdk_build # Ensure every module listed in PRODUCT_PACKAGES* gets something installed # TODO: Should we do this for all builds and not just the sdk?
dangling_modules :=
$(foreach m, $(PRODUCT_PACKAGES), \
$(if $(strip $(ALL_MODULES.$(m).INSTALLED) $(ALL_MODULES.$(m)$(TARGET_2ND_ARCH_MODULE_SUFFIX).INSTALLED)),,\
$(eval dangling_modules += $(m)))) ifneq ($(dangling_modules),)
$(warning: Modules '$(dangling_modules)' in PRODUCT_PACKAGES have nothing to install!) endif
$(foreach m, $(PRODUCT_PACKAGES_DEBUG), \
$(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
$(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_DEBUG has nothing to install!)))
$(foreach m, $(PRODUCT_PACKAGES_ENG), \
$(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
$(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_ENG has nothing to install!)))
$(foreach m, $(PRODUCT_PACKAGES_TESTS), \
$(if $(strip $(ALL_MODULES.$(m).INSTALLED)),,\
$(warning $(ALL_MODULES.$(m).MAKEFILE): Module '$(m)' in PRODUCT_PACKAGES_TESTS has nothing to install!))) endif
ifneq ($(TARGET_BUILD_APPS),) # If this build is just for apps, only build apps and not the full system by default. ifneq ($(filter all,$(TARGET_BUILD_APPS)),) # The magic goal "all" used to build all apps in the source tree. This was deprecated # so that we can know all TARGET_BUILD_APPS apps are built with soong for soong-only builds.
$(error TARGET_BUILD_APPS=all is deprecated) else
unbundled_build_modules := $(sort $(TARGET_BUILD_APPS)) endif endif
# build/make/core/Makefile contains extra stuff that we don't want to pollute this # top-level makefile with. It expects that ALL_DEFAULT_INSTALLED_MODULES # contains everything that's built during the current make, but it also further # extends ALL_DEFAULT_INSTALLED_MODULES.
ALL_DEFAULT_INSTALLED_MODULES := $(modules_to_install) ifeq ($(HOST_OS),linux) include $(BUILD_SYSTEM)/Makefile endif
modules_to_install := $(sort $(ALL_DEFAULT_INSTALLED_MODULES))
ALL_DEFAULT_INSTALLED_MODULES :=
$(info [$(include_makefiles_total)/$(include_makefiles_total)] finishing Make packaging rules: Adding phony targets)
ifdef FULL_BUILD # # Used by the cleanup logic in soong_ui to remove files that should no longer # be installed. #
# Include all tests, so that we remove them from the test suites / testcase # folders when they are removed.
test_files := $(foreach ts,$(ALL_COMPATIBILITY_SUITES),$(COMPATIBILITY.$(ts).FILES))
# Some notice deps refer to module names without prefix or arch suffix where # only the variants with them get built. # fix-notice-deps replaces those unadorned module names with every built variant.
$(call fix-notice-deps)
# These are additional goals that we build, in order to make sure that there # is as little code as possible in the tree that doesn't build.
modules_to_check := $(foreach m,$(ALL_MODULES),$(ALL_MODULES.$(m).CHECKED))
# If you would like to build all goals, and not skip any intermediate # steps, you can pass the "all" modifier goal on the commandline. ifneq ($(filter all,$(MAKECMDGOALS)),)
modules_to_check += $(foreach m,$(ALL_MODULES),$(ALL_MODULES.$(m).BUILT)) endif
# Build docs as part of checkbuild to catch more breakages.
modules_to_check += $(ALL_DOCS)
# ------------------------------------------------------------------- # This is used to to get the ordering right, you can also use these, # but they're considered undocumented, so don't complain if their # behavior changes. # An internal target that depends on all copied headers # (see copy_headers.make). Other targets that need the # headers to be copied first can depend on this target.
.PHONY: all_copied_headers
all_copied_headers: ;
$(ALL_C_CPP_ETC_OBJECTS): | all_copied_headers
# All the droid stuff, in directories
.PHONY: files
files: $(modules_to_install) \
$(INSTALLED_ANDROID_INFO_TXT_TARGET)
# The droidcore target depends on the droidcore-unbundled subset and any other # targets for a non-unbundled (full source) full system build.
.PHONY: droidcore
droidcore: droidcore-unbundled
# dist_files only for putting your library into the dist directory with a full build.
.PHONY: dist_files
.PHONY: apps_only ifeq ($(HOST_OS),darwin) # Mac only supports building host modules
droid_targets: $(filter $(HOST_OUT_ROOT)/%,$(modules_to_install)) dist_files
elseifneq ($(TARGET_BUILD_APPS),) # If this build is just for apps, only build apps and not the full system by default. # The majority of this block has been converted to soong's unbundled_builder module.
$(eval $(call text-notice-rule,$(target_notice_file_txt),"Apps","Notices for files for apps:",$(unbundled_build_modules),$(PRODUCT_OUT)/ $(HOST_OUT)/))
# Truth table for entering this block of code: # TARGET_BUILD_UNBUNDLED | TARGET_BUILD_UNBUNDLED_IMAGE | Action # -----------------------|------------------------------|------------------------- # not set | not set | droidcore path # not set | true | invalid # true | not set | skip # true | true | droidcore-unbundled path
# We dist the following targets only for droidcore full build. These items # can include java-related targets that would cause building framework java # sources in a droidcore full build.
# We dist the following targets for droidcore-unbundled (and droidcore since # droidcore depends on droidcore-unbundled). The droidcore-unbundled target # is a subset of droidcore. It can be used used for an unbundled build to # avoid disting targets that would cause building framework java sources, # which we want to avoid in an unbundled build.
# Put a copy of the radio/bootloader files in the dist dir.
$(foreach f,$(INSTALLED_RADIOIMAGE_TARGET), \
$(call dist-for-goals, droidcore-unbundled, $(f)))
# For full system build (whether unbundled or not), we configure # droid_targets to depend on droidcore-unbundled, which will set up the full # system dependencies and also dist the subset of targets that correspond to # an unbundled build (exclude building some framework sources).
droid_targets: droidcore-unbundled
ifeq (,$(TARGET_BUILD_UNBUNDLED_IMAGE))
# If we're building a full system (including the framework sources excluded # by droidcore-unbundled), we configure droid_targets also to depend on # droidcore, which includes all dist for droidcore, and will build the # necessary framework sources.
.PHONY: tidy_only
tidy_only:
@echo Successfully make tidy_only.
ndk: $(SOONG_OUT_DIR)/ndk.timestamp
.PHONY: ndk
$(info [$(include_makefiles_total)/$(include_makefiles_total)] finishing Make packaging rules: Checking licensing and SBOM)
# Create a license metadata rule per module. Could happen in base_rules.mk or # notice_files.mk; except, it has to happen after fix-notice-deps to avoid # missing dependency errors.
$(call build-license-metadata)
# Generate SBOM in SPDX format
product_copy_files_without_owner := $(foreach pcf,$(PRODUCT_COPY_FILES),$(call word-colon,1,$(pcf)):$(call word-colon,2,$(pcf))) ifeq ($(TARGET_BUILD_APPS),)
dest_files_without_source := $(sort $(foreach pcf,$(product_copy_files_without_owner),$(if $(wildcard $(call word-colon,1,$(pcf))),,$(call word-colon,2,$(pcf)))))
dest_files_without_source := $(addprefix $(PRODUCT_OUT)/,$(dest_files_without_source))
filter_out_files := \
$(PRODUCT_OUT)/apex/% \
$(PRODUCT_OUT)/fake_packages/% \
$(PRODUCT_OUT)/testcases/% \
$(dest_files_without_source) \
$(PRODUCT_OUT)/required_images # Check if each partition image is built, if not filter out all its installed files # Also check if a partition uses prebuilt image file, save the info if prebuilt image is used.
PREBUILT_PARTITION_COPY_FILES := # product.img
ifndef BUILDING_PRODUCT_IMAGE
filter_out_files += $(PRODUCT_OUT)/product/%
ifdef BOARD_PREBUILT_PRODUCTIMAGE
PREBUILT_PARTITION_COPY_FILES += $(BOARD_PREBUILT_PRODUCTIMAGE):$(INSTALLED_PRODUCTIMAGE_TARGET) endif endif
# Create metadata for compliance support in Soong
.PHONY: make-compliance-metadata make-compliance-metadata: \
$(SOONG_OUT_DIR)/compliance-metadata/$(TARGET_PRODUCT)/make_metadata.csv \
$(SOONG_OUT_DIR)/compliance-metadata/$(TARGET_PRODUCT)/make_modules.csv
# Precompute these as an optimization to not do $(findstring). # Normally we would unset these to save memory, but we're almost at the end of the make # run, so don't bother.
$(foreach f,$(INSTALLED_PRODUCT_SYSTEM_OTHER_AVBKEY_TARGET),\
$(eval _is_product_system_other_avbkey.$(f):=Y) \
)
$(foreach f,$(event_log_tags_file),\
$(eval _is_event_log_tags_file.$(f):=Y) \
)
$(foreach f,$(INSTALLED_SYSTEM_OTHER_ODEX_MARKER),\
$(eval _is_system_other_odex_marker.$(f):=Y) \
)
$(foreach f,$(ALL_KERNEL_MODULES_BLOCKLIST),\
$(eval _is_kernel_modules_blocklist.$(f):=Y) \
)
$(foreach f,$(ALL_FSVERITY_BUILD_MANIFEST_APK),\
$(eval _is_fsverity_build_manifest_apk.$(f):=Y) \
)
$(foreach f,$(SYSTEM_LINKER_CONFIG),\
$(eval _is_linker_config.$(f):=Y) \
)
$(foreach f,$(vendor_linker_config_file),\
$(eval _is_linker_config.$(f):=Y) \
)
$(foreach f,$(product_linker_config_file),\
$(eval _is_linker_config.$(f):=Y) \
)
$(foreach f,$(PARTITION_COMPAT_SYMLINKS),\
$(eval _is_partition_compat_symlink.$(f):=Y) \
)
$(foreach f,$(ALL_FLAGS_FILES),\
$(eval _is_flags_file.$(f):=Y) \
)
$(foreach f,$(ALL_ROOTDIR_SYMLINKS),\
$(eval _is_rootdir_symlink.$(f):=Y) \
)
$(foreach m,$(ALL_NON_MODULES),$(eval _is_non_module.$(m):=Y))
# Write it to file
_make_metadata_json := \
$(shell mkdir -p $(dir $(_MAKE_METADATA_JSON))) \
$(file >$(_MAKE_METADATA_JSON),$(_json_contents))
# Merge and update soong_api.zip IN-PLACE
_make_metadata_soong_integration := \
$(shell \ if [ ! -f "$(_SOONG_API_ZIP)" ]; then \ echo"[SNAPI] ERROR: Soong API Zip not found at $(_SOONG_API_ZIP)"; \
exit 1; \ fi; \
\ if [ ! -f "$(_MAKE_METADATA_JSON)" ]; then \ echo"[SNAPI] ERROR: Make metadata JSON not found at $(_MAKE_METADATA_JSON)"; \
exit 1; \ fi; \
\
zip -qj "$(_SOONG_API_ZIP)""$(_MAKE_METADATA_JSON)" \
)
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.