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.
54 lines
1.1 KiB
54 lines
1.1 KiB
display_client_defaults {
|
|
name: "display_client_defaults",
|
|
}
|
|
bootstrap_go_package {
|
|
name: "soong-display_client",
|
|
pkgPath: "android/soong/display_client",
|
|
deps: [
|
|
"blueprint",
|
|
"soong",
|
|
"soong-cc",
|
|
"soong-genrule",
|
|
],
|
|
srcs: [
|
|
"display_client.go",
|
|
],
|
|
pluginFor: ["soong_build"],
|
|
}
|
|
cc_library_shared {
|
|
srcs: ["DisplayClient.cpp"],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"vendor.huanglong.hardware.hwdisplay@1.0",
|
|
"libutils",
|
|
"libcutils",
|
|
"liblog",
|
|
"libuapi_securec",
|
|
],
|
|
name: "libdisplayclient",
|
|
defaults: [
|
|
"display_client_defaults",
|
|
],
|
|
}
|
|
cc_library_shared {
|
|
srcs: ["DisplayClient.cpp"],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"vendor.huanglong.hardware.hwdisplay@1.0",
|
|
"libutils",
|
|
"libcutils",
|
|
"liblog",
|
|
"libuapi_securec",
|
|
],
|
|
proprietary: true,
|
|
name: "libdisplayclient_vendor",
|
|
defaults: [
|
|
"display_client_defaults",
|
|
],
|
|
}
|
|
|