Steven Moreland | 21a1c58 | 2017-02-15 10:54:01 -0800 | [diff] [blame^] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE := android.hardware.tests.extension.light@2.0-service |
| 5 | LOCAL_INIT_RC := android.hardware.tests.extension.light@2.0-service.rc |
| 6 | LOCAL_PROPRIETARY_MODULE := true |
| 7 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 8 | LOCAL_SRC_FILES := \ |
| 9 | Light.cpp \ |
| 10 | service.cpp |
| 11 | |
| 12 | LOCAL_SHARED_LIBRARIES := \ |
| 13 | libhidlbase \ |
| 14 | libhidltransport \ |
| 15 | libhwbinder \ |
| 16 | libutils \ |
| 17 | android.hardware.light@2.0 \ |
| 18 | android.hardware.tests.extension.light@2.0 \ |
| 19 | |
| 20 | include $(BUILD_EXECUTABLE) |