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.
55 lines
1.1 KiB
55 lines
1.1 KiB
4 months ago
|
//#################### compile tvclient #####################
|
||
|
cc_library_shared {
|
||
|
name:"libimtvclient",
|
||
|
|
||
|
shared_libs:[
|
||
|
"libimtvsupport",
|
||
|
"libutils",
|
||
|
"libcutils",
|
||
|
"libbinder",
|
||
|
"liblog",
|
||
|
"libui",
|
||
|
"libdl",
|
||
|
"libhidlbase",
|
||
|
"libhidltransport",
|
||
|
"libhwbinder",
|
||
|
"libc++",
|
||
|
"libhidlmemory",
|
||
|
"android.hidl.memory@1.0",
|
||
|
"android.hidl.allocator@1.0",
|
||
|
"vendor.huanglong.hardware.hwtvmw@1.0",
|
||
|
"libuapi_securec"
|
||
|
],
|
||
|
|
||
|
ldflags: [
|
||
|
"-s",
|
||
|
],
|
||
|
|
||
|
local_include_dirs:[
|
||
|
"cplusplus/include",
|
||
|
],
|
||
|
|
||
|
include_dirs:[
|
||
|
"system/core/include/utils",
|
||
|
"frameworks/native/include/gui/",
|
||
|
"frameworks/native/include/android/",
|
||
|
"external/freetype/include/freetype",
|
||
|
"frameworks/base/core/jni",
|
||
|
"vendor/platform/secure_c/include/",
|
||
|
],
|
||
|
|
||
|
header_libs: [
|
||
|
"libimtvclient_headers",
|
||
|
],
|
||
|
|
||
|
export_header_lib_headers: [
|
||
|
"libimtvclient_headers",
|
||
|
],
|
||
|
|
||
|
srcs:[
|
||
|
"*.cpp",
|
||
|
"cplusplus/source/*.cpp",
|
||
|
]
|
||
|
}
|
||
|
|