Add libcamera Android Camera HALv3 implementation. The initial camera HAL implementation supports the LIMITED hardware level and uses statically defined metadata and camera characteristics. Add a build option named 'android' and adjust the build system to selectively compile the Android camera HAL and link it against the required Android libraries. Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
15 lines
452 B
Meson
15 lines
452 B
Meson
android_hal_sources = files([
|
|
'camera3_hal.cpp',
|
|
'camera_hal_manager.cpp',
|
|
'camera_device.cpp',
|
|
'camera_proxy.cpp',
|
|
'thread_rpc.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)
|