blob: b2b2c609ffd990a0e68587da57e2464541630d0a [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 \
Yifan Hong6b920e42016-11-16 14:17:58 -080021 libhidlbase \
22 libhidltransport \
Andreas Huberdb49a412016-10-10 13:23:59 -070023 android.hardware.sensors@1.0 \
24
25include $(BUILD_EXECUTABLE)