mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 23:07:49 +00:00
find hardware/interfaces -type f -not -path "*/.git/*" \
-exec sed -i -e '/cc_[A-Za-z_]\+/ { N; s/$/\n defaults:
\["hidl_defaults"\],/ }' {} \;
./hardware/interfaces/update-makefiles.sh
Test: pass
Bug: 35840847
Change-Id: If10c464d2f000b85c8d698fe11a4f3fc4cfad282
46 lines
1.3 KiB
Plaintext
46 lines
1.3 KiB
Plaintext
cc_library_shared {
|
|
name: "android.hardware.camera.provider@2.4-impl",
|
|
defaults: ["hidl_defaults"],
|
|
proprietary: true,
|
|
relative_install_path: "hw",
|
|
srcs: ["CameraProvider.cpp"],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libutils",
|
|
"libcutils",
|
|
"android.hardware.camera.device@1.0",
|
|
"android.hardware.camera.device@3.2",
|
|
"camera.device@1.0-impl",
|
|
"camera.device@3.2-impl",
|
|
"android.hardware.camera.provider@2.4",
|
|
"android.hardware.camera.common@1.0",
|
|
"liblog",
|
|
"libhardware",
|
|
"libcamera_metadata"
|
|
],
|
|
static_libs: [
|
|
"android.hardware.camera.common@1.0-helper"
|
|
]
|
|
}
|
|
|
|
cc_binary {
|
|
name: "android.hardware.camera.provider@2.4-service",
|
|
defaults: ["hidl_defaults"],
|
|
proprietary: true,
|
|
relative_install_path: "hw",
|
|
srcs: ["service.cpp"],
|
|
compile_multilib: "32",
|
|
init_rc: ["android.hardware.camera.provider@2.4-service.rc"],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"liblog",
|
|
"libutils",
|
|
"android.hardware.camera.device@1.0",
|
|
"android.hardware.camera.device@3.2",
|
|
"android.hardware.camera.provider@2.4",
|
|
"android.hardware.camera.common@1.0",
|
|
],
|
|
}
|