blob: 4f418cbb90c35dc18926c705a0e0d0eb7770e74c [file] [log] [blame]
Andreas Huberdb49a412016-10-10 13:23:59 -07001LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE_RELATIVE_PATH := hw
5LOCAL_MODULE := android.hardware.sensors@1.0-service
6LOCAL_INIT_RC := android.hardware.sensors@1.0-service.rc
7LOCAL_SRC_FILES := \
8 service.cpp \
9
10LOCAL_SHARED_LIBRARIES := \
11 liblog \
12 libcutils \
13 libdl \
14 libbase \
15 libutils \
16 libhardware_legacy \
17 libhardware \
18
19LOCAL_SHARED_LIBRARIES += \
20 libhwbinder \
21 libhidl \
22 android.hardware.sensors@1.0 \
23
24include $(BUILD_EXECUTABLE)