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