Sandeep Patil | c7a5ff7 | 2016-11-08 16:35:04 -0800 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE := android.hardware.health@1.0-impl |
Steven Moreland | a0da1a1 | 2017-02-13 09:59:06 -0800 | [diff] [blame] | 5 | LOCAL_PROPRIETARY_MODULE := true |
Sandeep Patil | c7a5ff7 | 2016-11-08 16:35:04 -0800 | [diff] [blame] | 6 | LOCAL_MODULE_RELATIVE_PATH := hw |
Steven Moreland | c1cad35 | 2017-07-10 16:06:46 -0700 | [diff] [blame] | 7 | LOCAL_C_INCLUDES := system/core/base/include |
Sandeep Patil | c7a5ff7 | 2016-11-08 16:35:04 -0800 | [diff] [blame] | 8 | LOCAL_SRC_FILES := \ |
| 9 | Health.cpp \ |
| 10 | |
Steven Moreland | c1cad35 | 2017-07-10 16:06:46 -0700 | [diff] [blame] | 11 | LOCAL_HEADER_LIBRARIES := libhealthd_headers |
| 12 | |
Sandeep Patil | c7a5ff7 | 2016-11-08 16:35:04 -0800 | [diff] [blame] | 13 | LOCAL_SHARED_LIBRARIES := \ |
| 14 | libcutils \ |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 15 | libhidlbase \ |
| 16 | libhidltransport \ |
Sandeep Patil | c7a5ff7 | 2016-11-08 16:35:04 -0800 | [diff] [blame] | 17 | liblog \ |
| 18 | libutils \ |
| 19 | android.hardware.health@1.0 \ |
| 20 | |
| 21 | LOCAL_STATIC_LIBRARIES := android.hardware.health@1.0-convert |
| 22 | |
| 23 | LOCAL_HAL_STATIC_LIBRARIES := libhealthd |
| 24 | |
| 25 | include $(BUILD_SHARED_LIBRARY) |
| 26 | |
| 27 | include $(CLEAR_VARS) |
Steven Moreland | a0da1a1 | 2017-02-13 09:59:06 -0800 | [diff] [blame] | 28 | LOCAL_PROPRIETARY_MODULE := true |
Sandeep Patil | 3e1d94c | 2016-11-10 09:22:27 -0800 | [diff] [blame] | 29 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 30 | LOCAL_MODULE := android.hardware.health@1.0-service |
| 31 | LOCAL_INIT_RC := android.hardware.health@1.0-service.rc |
| 32 | LOCAL_SRC_FILES := \ |
| 33 | HealthService.cpp \ |
| 34 | |
| 35 | LOCAL_SHARED_LIBRARIES := \ |
| 36 | liblog \ |
| 37 | libcutils \ |
| 38 | libdl \ |
| 39 | libbase \ |
| 40 | libutils \ |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 41 | libhidlbase \ |
| 42 | libhidltransport \ |
Sandeep Patil | 3e1d94c | 2016-11-10 09:22:27 -0800 | [diff] [blame] | 43 | android.hardware.health@1.0 \ |
| 44 | |
| 45 | include $(BUILD_EXECUTABLE) |
| 46 | |
Sandeep Patil | c7a5ff7 | 2016-11-08 16:35:04 -0800 | [diff] [blame] | 47 | include $(call first-makefiles-under,$(LOCAL_PATH)) |