blob: 28abe6c41d2cb415d08115b0a816f4bdc739138b [file] [log] [blame]
Steven Morelandee4f9232017-05-02 13:57:15 -07001LOCAL_PATH:=$(call my-dir)
2
3include $(CLEAR_VARS)
4LOCAL_MODULE := android.hardware.automotive.evs@1.0-service
5LOCAL_INIT_RC := android.hardware.automotive.evs@1.0-service.rc
6LOCAL_MODULE_RELATIVE_PATH := hw
7LOCAL_VENDOR_MODULE := true
8
9LOCAL_SRC_FILES := \
10 service.cpp \
11 EvsCamera.cpp \
12 EvsEnumerator.cpp \
13 EvsDisplay.cpp \
14
15LOCAL_SHARED_LIBRARIES := \
16 android.hardware.automotive.evs@1.0 \
17 libui \
18 libbase \
19 libbinder \
20 libcutils \
21 libhardware \
22 libhidlbase \
23 libhidltransport \
24 liblog \
25 libutils \
26
Chih-Hung Hsiehd8d5f632017-11-20 14:11:21 -080027LOCAL_CFLAGS := -O0 -g -Wall -Werror
Steven Morelandee4f9232017-05-02 13:57:15 -070028
29include $(BUILD_EXECUTABLE)