Steven Moreland | 08484f8 | 2016-10-14 12:27:48 -0700 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE := android.hardware.example.extension.light@2.0-service |
| 5 | LOCAL_INIT_RC := android.hardware.example.extension.light@2.0-service.rc |
| 6 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 7 | LOCAL_SRC_FILES := \ |
| 8 | Light.cpp \ |
| 9 | |
| 10 | LOCAL_SHARED_LIBRARIES := \ |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 11 | libhidlbase \ |
| 12 | libhidltransport \ |
Steven Moreland | 08484f8 | 2016-10-14 12:27:48 -0700 | [diff] [blame] | 13 | libhwbinder \ |
| 14 | libutils \ |
| 15 | android.hardware.light@2.0 \ |
| 16 | android.hardware.example.extension.light@2.0 \ |
| 17 | |
| 18 | include $(BUILD_SHARED_LIBRARY) |