The AIDL client is updated to use version 3. Change-Id: I6b7e559809629cf59e1359787d5e99fb151ef960
114 lines
3.1 KiB
Makefile
114 lines
3.1 KiB
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
|
|
# KEYSTONE(I1132378f14428bf511f3cea4f419e90a6e89f823,b/181709127)
|
|
LOCAL_SHARED_LIBRARIES := liblog libcutils libdl libxml2 libbase libutils libbinder_ndk
|
|
|
|
ifeq ($(call math_gt_or_eq, 33, $(PLATFORM_SDK_VERSION)), true)
|
|
LOCAL_SHARED_LIBRARIES += android.hardware.power-V3-ndk
|
|
else
|
|
LOCAL_SHARED_LIBRARIES += android.hardware.power-V1-ndk_platform
|
|
endif
|
|
|
|
LOCAL_HEADER_LIBRARIES += libutils_headers
|
|
LOCAL_HEADER_LIBRARIES += libhardware_headers
|
|
LOCAL_SRC_FILES := power-common.c metadata-parser.c utils.c list.c hint-data.c powerhintparser.c Power.cpp main.cpp
|
|
LOCAL_C_INCLUDES := external/libxml2/include \
|
|
external/icu/icu4c/source/common
|
|
|
|
# Include target-specific files.
|
|
ifeq ($(call is-board-platform-in-list, msm8974), true)
|
|
LOCAL_SRC_FILES += power-8974.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list, msm8226), true)
|
|
LOCAL_SRC_FILES += power-8226.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list, msm8610), true)
|
|
LOCAL_SRC_FILES += power-8610.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list, apq8084), true)
|
|
LOCAL_SRC_FILES += power-8084.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list, msm8994), true)
|
|
LOCAL_SRC_FILES += power-8994.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list, msm8996), true)
|
|
LOCAL_SRC_FILES += power-8996.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list,msm8937), true)
|
|
LOCAL_SRC_FILES += power-8952.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list,msm8952), true)
|
|
LOCAL_SRC_FILES += power-8952.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list,msm8953), true)
|
|
LOCAL_SRC_FILES += power-8953.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list,msm8998 apq8098_latv), true)
|
|
LOCAL_SRC_FILES += power-8998.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list,sdm660), true)
|
|
LOCAL_SRC_FILES += power-660.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list,sdm845), true)
|
|
LOCAL_SRC_FILES += power-845.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list,sdm710), true)
|
|
LOCAL_SRC_FILES += power-710.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list,qcs605), true)
|
|
LOCAL_SRC_FILES += power-710.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list,trinket), true)
|
|
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_SRC_FILES += power-6125.c
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list,msmnile), true)
|
|
LOCAL_SRC_FILES += power-msmnile.c
|
|
endif
|
|
|
|
ifeq ($(TARGET_USES_INTERACTION_BOOST),true)
|
|
LOCAL_CFLAGS += -DINTERACTION_BOOST
|
|
endif
|
|
|
|
ifeq ($(call is-board-platform-in-list,trinket), true)
|
|
LOCAL_MODULE := power.qcom
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_CFLAGS += -Wno-unused-parameter -Wno-unused-variable
|
|
LOCAL_VENDOR_MODULE := true
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
else
|
|
LOCAL_MODULE := android.hardware.power-service
|
|
LOCAL_INIT_RC := android.hardware.power-service.rc
|
|
LOCAL_MODULE_TAGS := optional
|
|
LOCAL_CFLAGS += -Wno-unused-parameter -Wno-unused-variable
|
|
LOCAL_VENDOR_MODULE := true
|
|
LOCAL_VINTF_FRAGMENTS := power.xml
|
|
include $(BUILD_EXECUTABLE)
|
|
endif
|
|
|
|
|
|
endif
|