blob: 225e6ebd15d34b20e69bc0efb9d3570a5f0be297 [file] [log] [blame]
# First include the GoogleTest library module definitions.
include $(LOCAL_PATH)/distrib/googletest/Android.mk
EMULATOR_UNITTESTS_SOURCES := \
android/utils/bufprint_unittest.cpp \
android/utils/eintr_wrapper_unittest.cpp \
android/utils/win32_cmdline_quote_unittest.cpp \
$(call start-emulator-program, emulator_unittests)
LOCAL_C_INCLUDES += $(EMULATOR_GTEST_INCLUDES)
LOCAL_LDLIBS += $(EMULATOR_GTEST_LDLIBS)
LOCAL_SRC_FILES := $(EMULATOR_UNITTESTS_SOURCES)
LOCAL_CFLAGS += -O0
LOCAL_STATIC_LIBRARIES += emulator-common emulator-libgtest
$(call end-emulator-program)
ifneq ($(filter linux darwin,$(HOST_OS)),)
$(call start-emulator-program, emulator64_unittests)
LOCAL_C_INCLUDES += $(EMULATOR_GTEST_INCLUDES)
LOCAL_LDLIBS += $(EMULATOR_GTEST_LDLIBS)
LOCAL_SRC_FILES := $(EMULATOR_UNITTESTS_SOURCES)
LOCAL_CFLAGS += -O0 -m64
LOCAL_LDLIBS += -m64
LOCAL_STATIC_LIBRARIES += emulator64-common emulator64-libgtest
$(call end-emulator-program)
endif