1# Build the unit tests. 2LOCAL_PATH:= $(call my-dir) 3 4include $(CLEAR_VARS) 5LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk 6LOCAL_SHARED_LIBRARIES := \ 7 libOpenSLES \ 8 9LOCAL_SRC_FILES := mimeUri_test.cpp 10LOCAL_MODULE := libopenslestests 11LOCAL_MODULE_TAGS := tests 12LOCAL_CFLAGS := -Werror -Wall 13include $(BUILD_NATIVE_TEST) 14 15# Build the manual test programs. 16include $(call all-makefiles-under,$(LOCAL_PATH)) 17