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 # 6 include $(CLEAR_VARS) 7 LOCAL_MODULE := test-libqemu-1 8 LOCAL_SRC_FILES := test_host_1.c 9 LOCAL_MODULE_TAGS := tests 10 include $(BUILD_HOST_EXECUTABLE) 11 12 include $(CLEAR_VARS) 13 LOCAL_MODULE := test-libqemu-2 14 LOCAL_SRC_FILES := test_host_2.c 15 LOCAL_MODULE_TAGS := tests 16 include $(BUILD_HOST_EXECUTABLE) 17 18 include $(CLEAR_VARS) 19 LOCAL_MODULE := test-libqemu-1 20 LOCAL_SRC_FILES := test_guest_1.c test_util.c 21 LOCAL_MODULE_TAGS := tests 22 LOCAL_STATIC_LIBRARIES := libcutils liblog 23 include $(BUILD_EXECUTABLE) 24 25 include $(CLEAR_VARS) 26 LOCAL_MODULE := test-libqemu-2 27 LOCAL_SRC_FILES := test_guest_2.c test_util.c 28 LOCAL_MODULE_TAGS := tests 29 LOCAL_STATIC_LIBRARIES := libcutils liblog 30 include $(BUILD_EXECUTABLE) 31