Merge "Add support for multiple flavors of the NDK gtest."
This commit is contained in:
commit
cdc8f21180
1 changed files with 13 additions and 2 deletions
|
@ -7,7 +7,18 @@ LOCAL_CFLAGS += -DGTEST_OS_LINUX_ANDROID -DGTEST_HAS_STD_STRING
|
|||
ifndef LOCAL_SDK_VERSION
|
||||
LOCAL_STATIC_LIBRARIES += libgtest_main libgtest
|
||||
else
|
||||
LOCAL_STATIC_LIBRARIES += libgtest_main_ndk libgtest_ndk
|
||||
ifneq (,$(filter c++_%,$(LOCAL_NDK_STL_VARIANT)))
|
||||
my_ndk_gtest_suffix := _libcxx
|
||||
else ifneq ($(filter stlport_,$(LOCAL_NDK_STL_VARIANT)),)
|
||||
my_ndk_gtest_suffix :=
|
||||
else ifneq ($(filter gnustl_,$(LOCAL_NDK_STL_VARIANT)),)
|
||||
my_ndk_gtest_suffix := _gnustl
|
||||
else # system STL, use stlport
|
||||
my_ndk_gtest_suffix :=
|
||||
endif
|
||||
LOCAL_STATIC_LIBRARIES += \
|
||||
libgtest_main_ndk$(my_ndk_gtest_suffix) \
|
||||
libgtest_ndk$(my_ndk_gtest_suffix)
|
||||
endif
|
||||
|
||||
ifdef LOCAL_MODULE_PATH
|
||||
|
|
Loading…
Reference in a new issue