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.
53 lines
1.0 KiB
53 lines
1.0 KiB
//#################### compile displayclient #####################
|
|
cc_library_shared {
|
|
name:"libdisplay_client",
|
|
|
|
shared_libs:[
|
|
"libutils",
|
|
"libcutils",
|
|
"libbinder",
|
|
"liblog",
|
|
"libui",
|
|
"libdl",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"libc++",
|
|
"libhidlmemory",
|
|
"android.hidl.memory@1.0",
|
|
"android.hidl.allocator@1.0",
|
|
"vendor.huanglong.hardware.hwdisplay@2.0",
|
|
"libuapi_securec"
|
|
],
|
|
|
|
ldflags: [
|
|
"-s",
|
|
],
|
|
|
|
local_include_dirs:[
|
|
".",
|
|
],
|
|
|
|
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: [
|
|
"libdisplayclient_headers",
|
|
],
|
|
|
|
export_header_lib_headers: [
|
|
"libdisplayclient_headers",
|
|
],
|
|
|
|
srcs:[
|
|
"*.cpp",
|
|
]
|
|
}
|
|
|