Change-Id: I545902b29f4828c127bc32def6e30b67ce4a3aa7 Signed-off-by: SamarV-121 <samarvispute121@gmail.com>
32 lines
734 B
Makefile
32 lines
734 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
ifneq ($(TARGET_TAP_TO_WAKE_NODE),)
|
|
LOCAL_CFLAGS += -DTAP_TO_WAKE_NODE=\"$(TARGET_TAP_TO_WAKE_NODE)\"
|
|
endif
|
|
|
|
LOCAL_MODULE := power.qcom
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_MODULE_TAGS := optional
|
|
|
|
LOCAL_SRC_FILES := \
|
|
hint-data.c \
|
|
list.c \
|
|
metadata-parser.c \
|
|
power-710.c \
|
|
power.c \
|
|
powerhintparser.c \
|
|
utils.c
|
|
|
|
LOCAL_C_INCLUDES := external/libxml2/include \
|
|
external/icu/icu4c/source/common
|
|
|
|
LOCAL_SHARED_LIBRARIES := liblog libcutils libdl libxml2
|
|
|
|
LOCAL_HEADER_LIBRARIES := generated_kernel_headers
|
|
|
|
LOCAL_CFLAGS += -Werror -Wall -Wno-unused-parameter
|
|
LOCAL_CFLAGS += -DINTERACTION_BOOST
|
|
|
|
include $(BUILD_SHARED_LIBRARY)
|