Dileep Marchya | 46115bc | 2018-03-09 16:40:35 +0530 | [diff] [blame^] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | include $(CLEAR_VARS) |
| 3 | |
| 4 | LOCAL_MODULE := libdisplaydebug |
| 5 | LOCAL_VENDOR_MODULE := true |
| 6 | LOCAL_MODULE_TAGS := optional |
| 7 | LOCAL_C_INCLUDES := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr/include |
| 8 | LOCAL_SHARED_LIBRARIES := libdl |
| 9 | LOCAL_CFLAGS := -DLOG_TAG=\"SDM\" -Wall -std=c++11 -Werror -fno-operator-names |
| 10 | LOCAL_CLANG := true |
| 11 | LOCAL_ADDITIONAL_DEPENDENCIES := $(TARGET_OUT_INTERMEDIATES)/KERNEL_OBJ/usr |
| 12 | LOCAL_SRC_FILES := debug_handler.cpp |
| 13 | LOCAL_COPY_HEADERS_TO := qcom/display |
| 14 | LOCAL_COPY_HEADERS := debug_handler.h |
| 15 | |
| 16 | include $(BUILD_SHARED_LIBRARY) |