mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-02 13:49:45 +00:00
Test: camera works. Bug: 35788245 [Treble] Pass camera metadata using shared memory Change-Id: I4a1585315bf448c8c57def2964237cae21bdbe03
28 lines
677 B
Plaintext
28 lines
677 B
Plaintext
cc_library_shared {
|
|
name: "camera.device@3.2-impl",
|
|
defaults: ["hidl_defaults"],
|
|
proprietary: true,
|
|
srcs: ["CameraDevice.cpp",
|
|
"CameraDeviceSession.cpp",
|
|
"convert.cpp"],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libutils",
|
|
"libcutils",
|
|
"android.hardware.camera.device@3.2",
|
|
"android.hardware.camera.provider@2.4",
|
|
"liblog",
|
|
"libhardware",
|
|
"libcamera_metadata",
|
|
"libfmq"
|
|
],
|
|
static_libs: [
|
|
"android.hardware.camera.common@1.0-helper"
|
|
],
|
|
export_include_dirs: ["."],
|
|
export_shared_lib_headers: [
|
|
"libfmq",
|
|
]
|
|
}
|