blob: cc36b7f5c9b64754294c80e6a2f191cde1e051bc [file] [log] [blame]
Ashutosh Joshi1bec86a2016-11-15 13:48:58 -08001LOCAL_PATH:= $(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE_RELATIVE_PATH := hw
Steven Morelanda0da1a12017-02-13 09:59:06 -08005LOCAL_PROPRIETARY_MODULE := true
Ashutosh Joshi1bec86a2016-11-15 13:48:58 -08006LOCAL_MODULE := android.hardware.contexthub@1.0-service
7LOCAL_INIT_RC := android.hardware.contexthub@1.0-service.rc
8LOCAL_SRC_FILES := \
9 service.cpp \
10
11LOCAL_SHARED_LIBRARIES := \
12 libbase \
13 libcutils \
14 libdl \
15 libhardware \
16 libhardware_legacy \
17 libhidlbase \
18 libhidltransport \
19 libhwbinder \
20 liblog \
21 libutils \
22 android.hardware.contexthub@1.0 \
23
24include $(BUILD_EXECUTABLE)