Files
android_vendor_qcom_opensou…/libdebug/Android.mk
Naseer Ahmed 0efa976f97 display: libdisplaydebug fixes
* Remove kernel includes
* Fix warning/info/debug tags

Change-Id: Ibdf18b15bdf025fbbab4b2c3ba2670b253f2edb7
2018-04-15 20:29:57 -07:00

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)