[DNM]: Spacewar: Add libsurfacecomposerclient_shim and libaudio_shim here

This commit is contained in:
abhixv
2025-09-05 08:40:18 +00:00
committed by nyxalune
parent 9e8509029c
commit e0f0cb0ae2
3 changed files with 38 additions and 0 deletions

20
shims/Android.bp Normal file
View File

@@ -0,0 +1,20 @@
cc_library_shared {
name: "libsurfacecomposerclient_shim",
srcs: ["surfacecomposerclient_shim.cpp"],
shared_libs: [
"libgui",
"libbinder",
"libutils",
"liblog",
],
cflags: ["-Wno-unused-parameter"],
system_ext_specific: true,
}
cc_library_shared {
name: "libaudio_shim",
srcs: ["audio_shim.cpp"],
shared_libs: ["liblog"],
cflags: ["-Wno-unused-parameter"],
system_ext_specific: true,
}