mirror of
https://git.libcamera.org/libcamera/libcamera.git
synced 2025-07-14 16:09:51 +03:00
android: meson: Remove unneeded android_enabled check
We return early with subdir_done() if android_enabled is false. There's no need to check the variable later in the file. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
This commit is contained in:
parent
82b8151aa7
commit
c2943a6e32
1 changed files with 17 additions and 19 deletions
|
@ -14,12 +14,11 @@ foreach dep : android_deps
|
||||||
endif
|
endif
|
||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
if android_enabled
|
libyuv_dep = dependency('libyuv', required : false)
|
||||||
libyuv_dep = dependency('libyuv', required : false)
|
|
||||||
|
|
||||||
# Fallback to a subproject if libyuv isn't found, as it's typically not
|
# Fallback to a subproject if libyuv isn't found, as it's typically not
|
||||||
# provided by distributions.
|
# provided by distributions.
|
||||||
if not libyuv_dep.found()
|
if not libyuv_dep.found()
|
||||||
cmake = import('cmake')
|
cmake = import('cmake')
|
||||||
|
|
||||||
libyuv_vars = cmake.subproject_options()
|
libyuv_vars = cmake.subproject_options()
|
||||||
|
@ -32,11 +31,10 @@ if android_enabled
|
||||||
libyuv_vars.append_link_args('-ljpeg')
|
libyuv_vars.append_link_args('-ljpeg')
|
||||||
libyuv = cmake.subproject('libyuv', options : libyuv_vars)
|
libyuv = cmake.subproject('libyuv', options : libyuv_vars)
|
||||||
libyuv_dep = libyuv.dependency('yuv')
|
libyuv_dep = libyuv.dependency('yuv')
|
||||||
endif
|
|
||||||
|
|
||||||
android_deps += [libyuv_dep]
|
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
android_deps += [libyuv_dep]
|
||||||
|
|
||||||
subdir('cros')
|
subdir('cros')
|
||||||
|
|
||||||
android_hal_sources = files([
|
android_hal_sources = files([
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue