1684b32620
Creates a build_system_stats.txt build artifact that contains statistics on how many BUILD_* modules are defined in a build. Also writes out information about the Soong module types sent from the Soong build. Change-Id: Iaf0c7062f542dc6942b5349854f3d49267cac4a5
57 lines
1.5 KiB
Makefile
57 lines
1.5 KiB
Makefile
$(call record-module-type,SHARED_LIBRARY)
|
|
my_prefix := TARGET_
|
|
include $(BUILD_SYSTEM)/multilib.mk
|
|
|
|
ifndef my_module_multilib
|
|
# libraries default to building for both architecturess
|
|
my_module_multilib := both
|
|
endif
|
|
|
|
ifeq ($(my_module_multilib),both)
|
|
ifneq ($(LOCAL_MODULE_PATH),)
|
|
ifneq ($(TARGET_2ND_ARCH),)
|
|
$(error $(LOCAL_MODULE): LOCAL_MODULE_PATH for shared libraries is unsupported in multiarch builds, use LOCAL_MODULE_RELATIVE_PATH instead)
|
|
endif
|
|
endif
|
|
|
|
ifneq ($(LOCAL_UNSTRIPPED_PATH),)
|
|
ifneq ($(TARGET_2ND_ARCH),)
|
|
$(error $(LOCAL_MODULE): LOCAL_UNSTRIPPED_PATH for shared libraries is unsupported in multiarch builds)
|
|
endif
|
|
endif
|
|
endif # my_module_multilib == both
|
|
|
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX :=
|
|
include $(BUILD_SYSTEM)/module_arch_supported.mk
|
|
|
|
ifeq ($(my_module_arch_supported),true)
|
|
include $(BUILD_SYSTEM)/shared_library_internal.mk
|
|
endif
|
|
|
|
ifdef TARGET_2ND_ARCH
|
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX := $(TARGET_2ND_ARCH_VAR_PREFIX)
|
|
include $(BUILD_SYSTEM)/module_arch_supported.mk
|
|
|
|
ifeq ($(my_module_arch_supported),true)
|
|
# Build for TARGET_2ND_ARCH
|
|
OVERRIDE_BUILT_MODULE_PATH :=
|
|
LOCAL_BUILT_MODULE :=
|
|
LOCAL_INSTALLED_MODULE :=
|
|
LOCAL_INTERMEDIATE_TARGETS :=
|
|
|
|
include $(BUILD_SYSTEM)/shared_library_internal.mk
|
|
|
|
endif
|
|
|
|
LOCAL_2ND_ARCH_VAR_PREFIX :=
|
|
|
|
endif # TARGET_2ND_ARCH
|
|
|
|
my_module_arch_supported :=
|
|
|
|
###########################################################
|
|
## Copy headers to the install tree
|
|
###########################################################
|
|
include $(BUILD_COPY_HEADERS)
|