mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 11:36:00 +00:00
find hardware/interfaces -name Android.mk -exec sed -i -e '/libhwbinder
\\/d' {} \;
find hardware/interfaces -name Android.bp -exec sed -i -e
'/"libhwbinder"/d' {} \;
./hardware/interfaces/update-makefiles.sh
Test: everything links
Test: (sanity) booted marlin on internal master with these changes
Bug: 35710429
Change-Id: I6b0b5ae318422b7a9be17a19a79e039ffc0f9272
23 lines
388 B
Plaintext
23 lines
388 B
Plaintext
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.tests.foo@1.0-impl",
|
|
relative_install_path: "hw",
|
|
proprietary: true,
|
|
srcs: [
|
|
"Foo.cpp",
|
|
],
|
|
|
|
shared_libs: [
|
|
"libbase",
|
|
"libcutils",
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libfootest",
|
|
"liblog",
|
|
"libutils",
|
|
"android.hardware.tests.foo@1.0",
|
|
],
|
|
|
|
}
|