Home | History | Annotate | Download | only in dspcrashd
      1 ifneq ($(BUILD_TINY_ANDROID),true)
      2 LOCAL_PATH:= $(call my-dir)
      3 
      4 include $(CLEAR_VARS)
      5 LOCAL_SRC_FILES:= dspcrashd.c
      6 LOCAL_MODULE:= dspcrashd
      7 
      8 LOCAL_SHARED_LIBRARIES := libc libcutils
      9 
     10 LOCAL_MODULE_TAGS := debug
     11 
     12 include $(BUILD_EXECUTABLE)
     13 endif
     14