host_native_test.mk revision 4c681745e622cc2887c114d963b62869a9ef93af
1################################################
2## A thin wrapper around BUILD_HOST_EXECUTABLE
3## Common flags for host native tests are added.
4################################################
5
6LOCAL_CFLAGS += -DGTEST_OS_LINUX -DGTEST_HAS_STD_STRING -O0 -g
7LOCAL_C_INCLUDES +=  \
8                    bionic/libstdc++/include \
9                    external/gtest/include \
10                    external/astl/include
11LOCAL_STATIC_LIBRARIES += libgtest_host libgtest_main_host libastl_host
12LOCAL_SHARED_LIBRARIES +=
13
14include $(BUILD_HOST_EXECUTABLE)
15