diff options
Diffstat (limited to 'healthd/Android.mk')
-rw-r--r-- | healthd/Android.mk | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/healthd/Android.mk b/healthd/Android.mk new file mode 100644 index 0000000..473d375 --- /dev/null +++ b/healthd/Android.mk @@ -0,0 +1,30 @@ +# Copyright 2013 The Android Open Source Project + +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 := \ + healthd.cpp \ + BatteryMonitor.cpp \ + BatteryPropertiesRegistrar.cpp + +LOCAL_MODULE := healthd +LOCAL_MODULE_TAGS := optional +LOCAL_FORCE_STATIC_EXECUTABLE := true +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 +LOCAL_HAL_STATIC_LIBRARIES := libhealthd + +include $(BUILD_EXECUTABLE) + +endif |