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
23 lines
583 B
Makefile
23 lines
583 B
Makefile
###########################################
|
|
## A thin wrapper around BUILD_EXECUTABLE
|
|
## Common flags for native tests are added.
|
|
###########################################
|
|
$(call record-module-type,NATIVE_TEST)
|
|
|
|
ifdef LOCAL_MODULE_CLASS
|
|
ifneq ($(LOCAL_MODULE_CLASS),NATIVE_TESTS)
|
|
$(error $(LOCAL_PATH): LOCAL_MODULE_CLASS must be NATIVE_TESTS with BUILD_HOST_NATIVE_TEST)
|
|
endif
|
|
endif
|
|
|
|
LOCAL_MODULE_CLASS := NATIVE_TESTS
|
|
|
|
include $(BUILD_SYSTEM)/target_test_internal.mk
|
|
|
|
ifndef LOCAL_MULTILIB
|
|
ifndef LOCAL_32_BIT_ONLY
|
|
LOCAL_MULTILIB := both
|
|
endif
|
|
endif
|
|
|
|
include $(BUILD_EXECUTABLE)
|