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