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 |
Steven Moreland | a0da1a1 | 2017-02-13 09:59:06 -0800 | [diff] [blame] | 6 | LOCAL_PROPRIETARY_MODULE := true |
Steven Moreland | 08484f8 | 2016-10-14 12:27:48 -0700 | [diff] [blame] | 7 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 8 | LOCAL_SRC_FILES := \ |
| 9 | Light.cpp \ |
| 10 | |
| 11 | LOCAL_SHARED_LIBRARIES := \ |
Yifan Hong | 6b920e4 | 2016-11-16 14:17:58 -0800 | [diff] [blame] | 12 | libhidlbase \ |
| 13 | libhidltransport \ |
Steven Moreland | 08484f8 | 2016-10-14 12:27:48 -0700 | [diff] [blame] | 14 | libhwbinder \ |
| 15 | libutils \ |
| 16 | android.hardware.light@2.0 \ |
| 17 | android.hardware.example.extension.light@2.0 \ |
| 18 | |
| 19 | include $(BUILD_SHARED_LIBRARY) |