Dongwon Kang | 7408849 | 2016-10-13 16:17:01 -0700 | [diff] [blame] | 1 | LOCAL_PATH := $(call my-dir) |
| 2 | |
| 3 | include $(CLEAR_VARS) |
| 4 | LOCAL_MODULE := android.hardware.tv.input@1.0-impl |
| 5 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 6 | LOCAL_SRC_FILES := \ |
| 7 | TvInput.cpp \ |
| 8 | |
| 9 | LOCAL_SHARED_LIBRARIES := \ |
| 10 | libbase \ |
| 11 | liblog \ |
| 12 | libhardware \ |
| 13 | libhidl \ |
| 14 | libhwbinder \ |
| 15 | libutils \ |
| 16 | android.hardware.audio.common@2.0 \ |
| 17 | android.hardware.tv.input@1.0 \ |
| 18 | |
| 19 | include $(BUILD_SHARED_LIBRARY) |
| 20 | |
| 21 | include $(CLEAR_VARS) |
| 22 | LOCAL_MODULE_RELATIVE_PATH := hw |
| 23 | LOCAL_MODULE := android.hardware.tv.input@1.0-service |
| 24 | LOCAL_INIT_RC := android.hardware.tv.input@1.0-service.rc |
| 25 | LOCAL_SRC_FILES := \ |
| 26 | service.cpp \ |
| 27 | |
| 28 | LOCAL_SHARED_LIBRARIES := \ |
| 29 | liblog \ |
| 30 | libcutils \ |
| 31 | libdl \ |
| 32 | libbase \ |
| 33 | libutils \ |
| 34 | libhardware_legacy \ |
| 35 | libhardware \ |
| 36 | |
| 37 | LOCAL_SHARED_LIBRARIES += \ |
| 38 | libhwbinder \ |
| 39 | libhidl \ |
| 40 | android.hardware.audio.common@2.0 \ |
| 41 | android.hardware.tv.input@1.0 \ |
| 42 | |
| 43 | include $(BUILD_EXECUTABLE) |
| 44 | |