93766b28ce
Previously, code defaulted to using libstdc++ (which was GNU libstdc++ on the host, or Bionic's "libstdc++" on the target). Now we default to libc++. The exception for this is when using mingw, because we cannot build libc++ for mingw. Change-Id: I68726fa26cdcb6263f17c838d3e859debd57fae1
43 lines
1.3 KiB
Makefile
43 lines
1.3 KiB
Makefile
#######################################################
|
|
## Shared definitions for all target test compilations.
|
|
#######################################################
|
|
|
|
LOCAL_CFLAGS += -DGTEST_OS_LINUX_ANDROID -DGTEST_HAS_STD_STRING
|
|
|
|
LOCAL_C_INCLUDES += external/gtest/include
|
|
|
|
my_test_libcxx := true
|
|
ifdef LOCAL_SDK_VERSION
|
|
my_test_libcxx := false
|
|
endif
|
|
ifneq ($(filter $(strip $(LOCAL_CXX_STL)),stlport stlport_static),)
|
|
my_test_libcxx := false
|
|
endif
|
|
|
|
ifeq ($(my_test_libcxx),true)
|
|
LOCAL_STATIC_LIBRARIES += libgtest_libc++ libgtest_main_libc++
|
|
else
|
|
LOCAL_STATIC_LIBRARIES += libgtest libgtest_main
|
|
|
|
ifndef LOCAL_SDK_VERSION
|
|
LOCAL_C_INCLUDES += bionic \
|
|
bionic/libstdc++/include \
|
|
external/stlport/stlport
|
|
LOCAL_SHARED_LIBRARIES += libstlport libstdc++
|
|
endif
|
|
endif
|
|
|
|
ifdef LOCAL_MODULE_PATH
|
|
$(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH when building test $(LOCAL_MODULE))
|
|
endif
|
|
|
|
ifdef LOCAL_MODULE_PATH_32
|
|
$(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH_32 when building test $(LOCAL_MODULE))
|
|
endif
|
|
|
|
ifdef LOCAL_MODULE_PATH_64
|
|
$(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH_64 when building test $(LOCAL_MODULE))
|
|
endif
|
|
|
|
LOCAL_MODULE_PATH_64 := $(TARGET_OUT_DATA_NATIVE_TESTS)/$(LOCAL_MODULE)
|
|
LOCAL_MODULE_PATH_32 := $($(TARGET_2ND_ARCH_VAR_PREFIX)TARGET_OUT_DATA_NATIVE_TESTS)/$(LOCAL_MODULE)
|