Home | History | Annotate | Download | only in ANRdaemon
      1 ifneq (,$(filter userdebug eng,$(TARGET_BUILD_VARIANT)))
      2 
      3 LOCAL_PATH:= $(call my-dir)
      4 
      5 include $(CLEAR_VARS)
      6 LOCAL_SRC_FILES := ANRdaemon.cpp
      7 LOCAL_C_INCLUDES += external/zlib
      8 LOCAL_MODULE := anrd
      9 LOCAL_MODULE_PATH := $(TARGET_OUT_OPTIONAL_EXECUTABLES)
     10 LOCAL_MODULE_TAGS := debug
     11 LOCAL_SHARED_LIBRARIES := \
     12     liblog \
     13     libbinder \
     14     libcutils \
     15     libutils \
     16     libz
     17 include $(BUILD_EXECUTABLE)
     18 
     19 endif
     20