mirror of
https://github.com/Evolution-X/hardware_interfaces
synced 2026-02-01 16:50:18 +00:00
Test: running marlin in binderized mode Bug: 30985004 Change-Id: I9c3ab3c445e437a8a8b6f271f3c475f60563f488
47 lines
1.2 KiB
Plaintext
47 lines
1.2 KiB
Plaintext
cc_library_shared {
|
|
name: "android.hardware.camera.device@3.2-impl",
|
|
srcs: ["CameraDevice.cpp",
|
|
"CameraDeviceSession.cpp",
|
|
"convert.cpp"],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"libutils",
|
|
"libcutils",
|
|
"android.hardware.camera.device@3.2",
|
|
"android.hardware.camera.provider@2.4",
|
|
"liblog",
|
|
"libhardware",
|
|
"libcamera_metadata"
|
|
],
|
|
static_libs: [
|
|
"android.hardware.camera.common@1.0-helper"
|
|
],
|
|
export_include_dirs: ["."]
|
|
}
|
|
|
|
cc_library_shared {
|
|
name: "android.hardware.camera.device@3.2-impl-binderized",
|
|
srcs: ["CameraDevice.cpp",
|
|
"CameraDeviceSession.cpp",
|
|
"convert.cpp"],
|
|
cppflags: ["-DBINDERIZED"],
|
|
shared_libs: [
|
|
"libhidlbase",
|
|
"libhidltransport",
|
|
"libhwbinder",
|
|
"libutils",
|
|
"libcutils",
|
|
"android.hardware.camera.device@3.2",
|
|
"android.hardware.camera.provider@2.4",
|
|
"liblog",
|
|
"libhardware",
|
|
"libcamera_metadata"
|
|
],
|
|
static_libs: [
|
|
"android.hardware.camera.common@1.0-helper"
|
|
],
|
|
export_include_dirs: ["."]
|
|
}
|