summaryrefslogtreecommitdiffstats
path: root/libdebug/Android.mk
blob: e975a22ad0104b3d4f46fb9fe3ebca001e4456d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)