From b9ecd85ed1fee2e9d715368b24592ad3009131d8 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Tue, 30 May 2023 17:38:43 +0300 Subject: android: mm: Stub libhardware for build tests Commit 66c618f378aa ("android: mm: generic: use GRALLOC_HARDWARE_MODULE_ID") made libhardware a required dependency for the Android camera HAL on non-Chrome OS platforms. This isn't an issue for real devices, as Android provides libhardware, but it prevents compile-testing the camera HAL on traditional Linux systems. To restore the compile-test coverage, stub the libhardware function used by the camera HAL when libhardware isn't found. Signed-off-by: Laurent Pinchart Reviewed-by: Mattijs Korpershoek Tested-by: Mattijs Korpershoek # meson build test Reviewed-by: Kieran Bingham --- src/android/mm/meson.build | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'src/android/mm/meson.build') diff --git a/src/android/mm/meson.build b/src/android/mm/meson.build index 85f12f91..e3e0484c 100644 --- a/src/android/mm/meson.build +++ b/src/android/mm/meson.build @@ -4,10 +4,14 @@ platform = get_option('android_platform') if platform == 'generic' android_hal_sources += files(['generic_camera_buffer.cpp', 'generic_frame_buffer_allocator.cpp']) - android_deps += [ - libdl, - dependency('libhardware'), - ] + android_deps += [libdl] + + libhardware = dependency('libhardware', required : false) + if libhardware.found() + android_deps += [libhardware] + else + android_hal_sources += files(['libhardware_stub.c']) + endif elif platform == 'cros' android_hal_sources += files(['cros_camera_buffer.cpp', 'cros_frame_buffer_allocator.cpp']) -- cgit v1.2.1