You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
1005 B
46 lines
1005 B
LOCAL_PATH := $(call my-dir) |
|
|
|
include $(CLEAR_VARS) |
|
LOCAL_MODULE := android.hardware.tv.input@1.0-impl |
|
LOCAL_PROPRIETARY_MODULE := true |
|
LOCAL_MODULE_RELATIVE_PATH := hw |
|
LOCAL_SRC_FILES := \ |
|
TvInput.cpp \ |
|
|
|
LOCAL_SHARED_LIBRARIES := \ |
|
libbase \ |
|
liblog \ |
|
libhardware \ |
|
libhidlbase \ |
|
libhidltransport \ |
|
libutils \ |
|
android.hardware.audio.common@2.0 \ |
|
android.hardware.tv.input@1.0 \ |
|
|
|
include $(BUILD_SHARED_LIBRARY) |
|
|
|
include $(CLEAR_VARS) |
|
LOCAL_MODULE_RELATIVE_PATH := hw |
|
LOCAL_PROPRIETARY_MODULE := true |
|
LOCAL_MODULE := android.hardware.tv.input@1.0-service |
|
LOCAL_INIT_RC := android.hardware.tv.input@1.0-service.rc |
|
LOCAL_SRC_FILES := \ |
|
service.cpp \ |
|
|
|
LOCAL_SHARED_LIBRARIES := \ |
|
liblog \ |
|
libcutils \ |
|
libdl \ |
|
libbase \ |
|
libutils \ |
|
libhardware_legacy \ |
|
libhardware \ |
|
|
|
LOCAL_SHARED_LIBRARIES += \ |
|
libhidlbase \ |
|
libhidltransport \ |
|
android.hardware.audio.common@2.0 \ |
|
android.hardware.tv.input@1.0 \ |
|
|
|
include $(BUILD_EXECUTABLE) |
|
|
|
|