mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-23 16:45:07 +03:00
Use the newly introduced InvocationTypeBlocking message type to replace the blocking message delivery implemented with the ThreadRPC class in the Android camera HAL. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
15 lines
458 B
Meson
15 lines
458 B
Meson
android_hal_sources = files([
|
|
'camera3_hal.cpp',
|
|
'camera_hal_manager.cpp',
|
|
'camera_device.cpp',
|
|
'camera_metadata.cpp',
|
|
'camera_proxy.cpp',
|
|
])
|
|
|
|
android_camera_metadata_sources = files([
|
|
'metadata/camera_metadata.c',
|
|
])
|
|
|
|
android_camera_metadata = static_library('camera_metadata',
|
|
android_camera_metadata_sources,
|
|
include_directories : android_includes)
|