blob: 2c650ad68ecc292cbdc278b050f8d911a2b608b8 [file] [log] [blame]
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_MODULE := unconditional
LOCAL_SRC_FILES := unconditional.cpp
LOCAL_STATIC_LIBRARIES := googletest_main
LOCAL_CFLAGS := -D__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__
LOCAL_LDLIBS := -landroid
include $(BUILD_EXECUTABLE)
include $(CLEAR_VARS)
LOCAL_MODULE := builtin_available
LOCAL_SRC_FILES := builtin_available.cpp
LOCAL_STATIC_LIBRARIES := googletest_main
LOCAL_CFLAGS := -D__ANDROID_UNAVAILABLE_SYMBOLS_ARE_WEAK__
LOCAL_LDLIBS := -landroid
include $(BUILD_EXECUTABLE)
$(call import-module,third_party/googletest)