summaryrefslogtreecommitdiffstats
path: root/Android.mk
diff options
context:
space:
mode:
authorKeith Mok <kmok@cyngn.com>2015-11-13 09:46:14 -0800
committerMichael Bestas <mkbestas@lineageos.org>2019-10-23 01:12:56 +0300
commite9c7fcc763ff005ed91de23a05db7c87cc836b58 (patch)
treec1beeaf5eba1b1515fd3800ba2a3ed0091c68a59 /Android.mk
parente0a09037f41da6fa2da8dbbbf03117765b4ae714 (diff)
downloadvendor_qcom_opensource_power-e9c7fcc763ff005ed91de23a05db7c87cc836b58.tar.gz
vendor_qcom_opensource_power-e9c7fcc763ff005ed91de23a05db7c87cc836b58.tar.bz2
vendor_qcom_opensource_power-e9c7fcc763ff005ed91de23a05db7c87cc836b58.zip
power: Refactor TARGET_TAP_TO_WAKE_NODE
Add TARGET_POWER_SET_FEATURE_LIB, since other devices are not simply writing a 0/1 to a device node. TARGET_TAP_TO_WAKE_NODE is still valid and both TARGET_TAP_TO_WAKE_NODE and TARGET_POWER_SET_FEATURE_LIB are allowed to coexist. (Currently set_feature only has double tap to wake, but it may be extended in future) Change-Id: I5c6204fd38a6fbe48e8aac49843bfa047c4b6436
Diffstat (limited to 'Android.mk')
-rw-r--r--Android.mk4
1 files changed, 4 insertions, 0 deletions
diff --git a/Android.mk b/Android.mk
index a633927..9d00f89 100644
--- a/Android.mk
+++ b/Android.mk
@@ -72,6 +72,10 @@ ifeq ($(call is-board-platform-in-list,msmnile), true)
LOCAL_SRC_FILES += power-msmnile.c
endif
+ifneq ($(TARGET_POWER_SET_FEATURE_LIB),)
+ LOCAL_STATIC_LIBRARIES += $(TARGET_POWER_SET_FEATURE_LIB)
+endif
+
ifneq ($(TARGET_TAP_TO_WAKE_NODE),)
LOCAL_CFLAGS += -DTAP_TO_WAKE_NODE=\"$(TARGET_TAP_TO_WAKE_NODE)\"
endif