mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
40 lines
1007 B
Plaintext
40 lines
1007 B
Plaintext
cc_library_shared {
|
|
name: "android.hardware.graphics.composer@2.1-impl",
|
|
relative_install_path: "hw",
|
|
srcs: ["Hwc.cpp"],
|
|
shared_libs: [
|
|
"android.hardware.graphics.allocator@2.0",
|
|
"android.hardware.graphics.composer@2.1",
|
|
"libbase",
|
|
"libcutils",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.graphics.composer@2.1-service",
|
|
relative_install_path: "hw",
|
|
srcs: ["service.cpp", "Hwc.cpp"],
|
|
cppflags: ["-DBINDERIZED"],
|
|
init_rc: ["android.hardware.graphics.composer@2.1-service.rc"],
|
|
|
|
shared_libs: [
|
|
"android.hardware.graphics.allocator@2.0",
|
|
"android.hardware.graphics.composer@2.1",
|
|
"libbase",
|
|
"libbinder",
|
|
"libcutils",
|
|
"libhardware",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"liblog",
|
|
"libutils",
|
|
],
|
|
}
|