power: Build the power module for QCOM targets

Allow the power module (power.qcom.so) to be built
for Qualcomm targets.

Change-Id: I7b671225a54e1a67bffdd2e71f9380a3d4db91e1
This commit is contained in:
Anurag Singh 2012-12-11 12:09:28 -08:00
parent f1c7899a7c
commit 317051e7be
1 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
LOCAL_PATH := $(call my-dir)
ifneq ($(call is-android-codename,JELLY_BEAN),true)
ifeq ($(call is-vendor-board-platform,QCOM),true)
# HAL module implemenation stored in
# hw/<POWERS_HARDWARE_MODULE_ID>.<ro.hardware>.so
@ -12,4 +12,5 @@ LOCAL_SRC_FILES := power.c metadata-parser.c utils.c list.c hint-data.c
LOCAL_MODULE := power.qcom
LOCAL_MODULE_TAGS := optional
include $(BUILD_SHARED_LIBRARY)
endif