Home | History | Annotate | Download | only in tests
      1 # Build the unit tests for audio_utils
      2 
      3 LOCAL_PATH:= $(call my-dir)
      4 include $(CLEAR_VARS)
      5 
      6 LOCAL_SHARED_LIBRARIES := \
      7 	liblog \
      8 	libcutils \
      9 	libstlport \
     10 	libaudioutils
     11 
     12 LOCAL_STATIC_LIBRARIES := \
     13 	libgtest \
     14 	libgtest_main
     15 
     16 LOCAL_C_INCLUDES := \
     17 	bionic \
     18 	bionic/libstdc++/include \
     19 	external/gtest/include \
     20 	external/stlport/stlport \
     21 	$(call include-path-for, audio-utils)
     22 
     23 LOCAL_SRC_FILES := \
     24 	primitives_tests.cpp
     25 
     26 LOCAL_MODULE := primitives_tests
     27 LOCAL_MODULE_TAGS := tests
     28 
     29 include $(BUILD_EXECUTABLE)
     30