* Remove kernel includes * Fix warning/info/debug tags Change-Id: Ibdf18b15bdf025fbbab4b2c3ba2670b253f2edb7
15 lines
533 B
Makefile
15 lines
533 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libdisplaydebug
|
|
LOCAL_VENDOR_MODULE := true
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_SHARED_LIBRARIES := libdl
|
|
LOCAL_CFLAGS := -DLOG_TAG=\"SDM\" -Wall -std=c++11 -Werror -fno-operator-names
|
|
LOCAL_CLANG := true
|
|
LOCAL_SRC_FILES := debug_handler.cpp
|
|
LOCAL_COPY_HEADERS_TO := qcom/display
|
|
LOCAL_COPY_HEADERS := debug_handler.h
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|