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.
45 lines
1005 B
45 lines
1005 B
//#################### compile tvjni #####################
|
|
cc_library_shared {
|
|
name:"libim_tv_jni",
|
|
|
|
shared_libs:[
|
|
"libutils",
|
|
"libcutils",
|
|
"libbinder",
|
|
"liblog",
|
|
"libandroid",
|
|
"libdl",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"libc++",
|
|
"libhidlmemory",
|
|
"android.hidl.memory@1.0",
|
|
"android.hidl.allocator@1.0",
|
|
"libimtvclient",
|
|
],
|
|
|
|
ldflags: [
|
|
"-s",
|
|
],
|
|
|
|
header_libs: ["jni_headers"],
|
|
|
|
include_dirs:[
|
|
"frameworks/base/core/jni",
|
|
"system/core/include",
|
|
"system/core/include/utils",
|
|
"frameworks/native/include",
|
|
"frameworks/native/libs/nativewindow/include",
|
|
"frameworks/native/libs/ui/include",
|
|
"system/libhidl/transport/token/1.0/utils/include/",
|
|
"external/freetype/include",
|
|
"external/freetype/include/freetype",
|
|
],
|
|
|
|
srcs:[
|
|
"android_imtv_manager.cpp",
|
|
]
|
|
}
|
|
|