1# Build libqemu tests, included from main Android.mk 2 3# The first test program is a simple TCP server that will send back 4# anything it receives from the client. 5# 6include $(CLEAR_VARS) 7LOCAL_MODULE := test-libqemu-1 8LOCAL_SRC_FILES := test_host_1.c 9LOCAL_MODULE_TAGS := tests 10include $(BUILD_HOST_EXECUTABLE) 11 12include $(CLEAR_VARS) 13LOCAL_MODULE := test-libqemu-2 14LOCAL_SRC_FILES := test_host_2.c 15LOCAL_MODULE_TAGS := tests 16include $(BUILD_HOST_EXECUTABLE) 17 18include $(CLEAR_VARS) 19LOCAL_MODULE := test-libqemu-1 20LOCAL_SRC_FILES := test_guest_1.c test_util.c 21LOCAL_MODULE_TAGS := tests 22LOCAL_STATIC_LIBRARIES := libcutils liblog 23include $(BUILD_EXECUTABLE) 24 25include $(CLEAR_VARS) 26LOCAL_MODULE := test-libqemu-2 27LOCAL_SRC_FILES := test_guest_2.c test_util.c 28LOCAL_MODULE_TAGS := tests 29LOCAL_STATIC_LIBRARIES := libcutils liblog 30include $(BUILD_EXECUTABLE) 31