Android.mk revision ea33cb9d89788e3f325cb58699c65c002d79fe5a
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    libutils \
8    libOpenSLES \
9
10LOCAL_C_INCLUDES := $(call include-path-for, wilhelm)
11LOCAL_SRC_FILES := mimeUri_test.cpp
12LOCAL_MODULE := libopenslestests
13LOCAL_MODULE_TAGS := tests
14include $(BUILD_NATIVE_TEST)
15
16# Build the manual test programs.
17include $(call all-makefiles-under,$(LOCAL_PATH))
18