mirror of
https://github.com/Evolution-X-Devices/device_google_wahoo
synced 2026-02-01 15:09:54 +00:00
This reverts commit c043816b3c.
The reason of the revert is to check for the application start time
regression that may have been caused by the CL
Bug: 38317397
Test: None
Change-Id: I7edaf75eeebcecb848b38a9b7eff2bdb1f233cdb
Signed-off-by: Ahmed ElArabawy <arabawy@google.com>
27 lines
751 B
Makefile
27 lines
751 B
Makefile
LOCAL_PATH := $(call my-dir)
|
|
|
|
ifeq ($(call is-vendor-board-platform,QCOM),true)
|
|
|
|
# HAL module implemenation stored in
|
|
# hw/<POWERS_HARDWARE_MODULE_ID>.<ro.hardware>.so
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE_RELATIVE_PATH := hw
|
|
LOCAL_SHARED_LIBRARIES := liblog libcutils libdl libxml2
|
|
LOCAL_SRC_FILES := power.c metadata-parser.c utils.c list.c hint-data.c powerhintparser.c
|
|
LOCAL_C_INCLUDES := external/libxml2/include \
|
|
external/icu/icu4c/source/common
|
|
|
|
ifeq ($(call is-board-platform-in-list,msm8998), true)
|
|
LOCAL_SRC_FILES += power-8998.c
|
|
endif
|
|
|
|
# Enable interaction boost all the time
|
|
LOCAL_CFLAGS += -DINTERACTION_BOOST
|
|
|
|
LOCAL_MODULE := power.$(TARGET_DEVICE)
|
|
LOCAL_MODULE_TAGS := optional
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
|
|
endif
|