forked from openkylin/platform_build
35 lines
1.1 KiB
Makefile
35 lines
1.1 KiB
Makefile
#######################################################
|
|
## Shared definitions for all target test compilations.
|
|
#######################################################
|
|
|
|
ifeq ($(LOCAL_GTEST),true)
|
|
LOCAL_CFLAGS += -DGTEST_OS_LINUX_ANDROID -DGTEST_HAS_STD_STRING
|
|
|
|
ifndef LOCAL_SDK_VERSION
|
|
LOCAL_STATIC_LIBRARIES += libgtest_main libgtest
|
|
else
|
|
# TODO(danalbert): Remove the suffix from the module since we only need the
|
|
# one variant now.
|
|
my_ndk_gtest_suffix := _c++
|
|
LOCAL_STATIC_LIBRARIES += \
|
|
libgtest_main_ndk$(my_ndk_gtest_suffix) \
|
|
libgtest_ndk$(my_ndk_gtest_suffix)
|
|
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
|
|
|
|
ifndef LOCAL_MODULE_RELATIVE_PATH
|
|
LOCAL_MODULE_RELATIVE_PATH := $(LOCAL_MODULE)
|
|
endif
|