From 63c46875376031141e6e9bda694dcb5d59fb8d4b Mon Sep 17 00:00:00 2001 From: Kieran Bingham Date: Fri, 30 Apr 2021 14:18:52 +0100 Subject: android: Split HAL to its own shared library The libcamera Android HAL implementation should not be an integral part of libcamera, but a support library that utilises the libcamera public API. Move the implementation to its own distinct library. Reviewed-by: Laurent Pinchart Reviewed-by: Hirokazu Honda Reviewed-by: Umang Jain Reviewed-by: Paul Elder Signed-off-by: Kieran Bingham --- src/meson.build | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'src/meson.build') diff --git a/src/meson.build b/src/meson.build index 57396605..e0ea9c35 100644 --- a/src/meson.build +++ b/src/meson.build @@ -25,14 +25,10 @@ else ipa_sign_module = false endif -libcamera_cpp_args = [] -libcamera_objects = [] +# libcamera must be built first as a dependency to the other components. +subdir('libcamera') -# The 'android' subdir must be processed first, and the build targets -# are included directly into the libcamera library when this is enabled. subdir('android') - -subdir('libcamera') subdir('ipa') subdir('lc-compliance') -- cgit v1.2.1