From 16273aea6626f1ab5c3c8dc1a8f321461216641f Mon Sep 17 00:00:00 2001 From: Yifan Hong Date: Mon, 2 Dec 2019 17:58:50 -0800 Subject: [PATCH] health 1.0 does not use HAL_STATIC_LIBS BOARD_HAL_STATIC_LIBRARIES is deprecated / obsolete. No devices in our internal tree uses it. Devices that uses it should build their own HALs and link to the correct libhealthd.(board) in that vendor-specific module. Test: pass Bug: 127677771 Change-Id: I289d020960331e2dc2225ccbd378a73ccc51a056 --- health/1.0/default/Android.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/health/1.0/default/Android.mk b/health/1.0/default/Android.mk index bbf37af3b3..05987f39bf 100644 --- a/health/1.0/default/Android.mk +++ b/health/1.0/default/Android.mk @@ -19,7 +19,7 @@ LOCAL_SHARED_LIBRARIES := \ LOCAL_STATIC_LIBRARIES := android.hardware.health@1.0-convert -LOCAL_HAL_STATIC_LIBRARIES := libhealthd +LOCAL_STATIC_LIBRARIES += libhealthd.default include $(BUILD_SHARED_LIBRARY)