mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 10:05:19 +00:00
Change composer 2.1's ComposerResources to support the new major versions of IAllocator and IMapper. Bug: 120493579 Test: vts Change-Id: I888364d302ba8c7f7ad30070dcad3ed738b4c663
48 lines
1.2 KiB
Plaintext
48 lines
1.2 KiB
Plaintext
cc_library_shared {
|
|
name: "android.hardware.graphics.composer@2.1-impl",
|
|
defaults: ["hidl_defaults"],
|
|
vendor: true,
|
|
relative_install_path: "hw",
|
|
srcs: ["passthrough.cpp"],
|
|
header_libs: [
|
|
"android.hardware.graphics.composer@2.1-passthrough",
|
|
],
|
|
shared_libs: [
|
|
"android.hardware.graphics.composer@2.1",
|
|
"android.hardware.graphics.mapper@2.0",
|
|
"android.hardware.graphics.mapper@3.0",
|
|
"libbase",
|
|
"libcutils",
|
|
"libfmq",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"liblog",
|
|
"libsync",
|
|
"libutils",
|
|
"libhwc2on1adapter",
|
|
"libhwc2onfbadapter",
|
|
],
|
|
cflags: [
|
|
"-DLOG_TAG=\"ComposerHal\""
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.graphics.composer@2.1-service",
|
|
defaults: ["hidl_defaults"],
|
|
vendor: true,
|
|
relative_install_path: "hw",
|
|
srcs: ["service.cpp"],
|
|
init_rc: ["android.hardware.graphics.composer@2.1-service.rc"],
|
|
shared_libs: [
|
|
"android.hardware.graphics.composer@2.1",
|
|
"libbinder",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"liblog",
|
|
"libsync",
|
|
"libutils",
|
|
],
|
|
}
|