Steven Moreland | ee4f923 | 2017-05-02 13:57:15 -0700 | [diff] [blame] | 1 | LOCAL_PATH:=$(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE := android.hardware.automotive.evs@1.0-service |
| 5 | LOCAL_INIT_RC := android.hardware.automotive.evs@1.0-service.rc |
| 6 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 7 | LOCAL_VENDOR_MODULE := true |
| 8 | |
| 9 | LOCAL_SRC_FILES := \ |
| 10 | service.cpp \ |
| 11 | EvsCamera.cpp \ |
| 12 | EvsEnumerator.cpp \ |
| 13 | EvsDisplay.cpp \ |
| 14 | |
| 15 | LOCAL_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 | |
| 27 | LOCAL_CFLAGS := -O0 -g |
| 28 | |
| 29 | include $(BUILD_EXECUTABLE) |