am d65104ca: healthd: switch to HAL static libraries

* commit 'd65104ca31766922537c79ec2d7647584723407c':
  healthd: switch to HAL static libraries
This commit is contained in:
Todd Poynor 2013-08-13 16:21:47 -07:00 committed by Android Git Automerger
commit a52ea1c48e
1 changed files with 7 additions and 6 deletions

View File

@ -3,6 +3,12 @@
ifneq ($(BUILD_TINY_ANDROID),true)
LOCAL_PATH := $(call my-dir)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := healthd_board_default.cpp
LOCAL_MODULE := libhealthd.default
include $(BUILD_STATIC_LIBRARY)
include $(CLEAR_VARS)
LOCAL_SRC_FILES := \
@ -17,12 +23,7 @@ LOCAL_MODULE_PATH := $(TARGET_ROOT_OUT_SBIN)
LOCAL_UNSTRIPPED_PATH := $(TARGET_ROOT_OUT_SBIN_UNSTRIPPED)
LOCAL_STATIC_LIBRARIES := libbatteryservice libbinder libz libutils libstdc++ libcutils liblog libm libc
ifdef BOARD_LIB_HEALTHD
LOCAL_STATIC_LIBRARIES += $(BOARD_LIB_HEALTHD)
else
LOCAL_SRC_FILES += healthd_board_default.cpp
endif
LOCAL_HAL_STATIC_LIBRARIES := libhealthd
include $(BUILD_EXECUTABLE)