1LOCAL_PATH := $(call my-dir) 2 3include $(CLEAR_VARS) 4LOCAL_MODULE := android.hardware.health@1.0-impl 5LOCAL_PROPRIETARY_MODULE := true 6LOCAL_MODULE_RELATIVE_PATH := hw 7LOCAL_C_INCLUDES := system/core/base/include 8LOCAL_SRC_FILES := \ 9 Health.cpp \ 10 11LOCAL_HEADER_LIBRARIES := libhealthd_headers 12 13LOCAL_SHARED_LIBRARIES := \ 14 libcutils \ 15 libhidlbase \ 16 libhidltransport \ 17 liblog \ 18 libutils \ 19 android.hardware.health@1.0 \ 20 21LOCAL_STATIC_LIBRARIES := android.hardware.health@1.0-convert 22 23LOCAL_HAL_STATIC_LIBRARIES := libhealthd 24 25include $(BUILD_SHARED_LIBRARY) 26 27include $(CLEAR_VARS) 28LOCAL_PROPRIETARY_MODULE := true 29LOCAL_MODULE_RELATIVE_PATH := hw 30LOCAL_MODULE := android.hardware.health@1.0-service 31LOCAL_INIT_RC := android.hardware.health@1.0-service.rc 32LOCAL_SRC_FILES := \ 33 HealthService.cpp \ 34 35LOCAL_SHARED_LIBRARIES := \ 36 liblog \ 37 libcutils \ 38 libdl \ 39 libbase \ 40 libutils \ 41 libhidlbase \ 42 libhidltransport \ 43 android.hardware.health@1.0 \ 44 45include $(BUILD_EXECUTABLE) 46 47include $(call first-makefiles-under,$(LOCAL_PATH)) 48