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