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