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