1. Add a client for qservice in hwc and enable dynamic logging. 2. Remove common makefile and merge it to respective modules makefiles. Change-Id: I582873c296d21ecd037225ac0be8177e52cc8cda
14 lines
546 B
Makefile
14 lines
546 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := libsdeutils
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_C_INCLUDES := hardware/qcom/display/displayengine/include/
|
|
LOCAL_CFLAGS := -Wno-missing-field-initializers -Wno-unused-parameter \
|
|
-Wconversion -Wall -Werror \
|
|
-DLOG_TAG=\"SDE\"
|
|
LOCAL_SHARED_LIBRARIES := libcutils
|
|
LOCAL_SRC_FILES := debug_android.cpp
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|