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:
Laurent Pinchart 2021-03-23 21:56:20 +02:00
parent 82b8151aa7
commit c2943a6e32

View file

@ -14,7 +14,6 @@ foreach dep : android_deps
endif
endforeach
if android_enabled
libyuv_dep = dependency('libyuv', required : false)
# Fallback to a subproject if libyuv isn't found, as it's typically not
@ -35,7 +34,6 @@ if android_enabled
endif
android_deps += [libyuv_dep]
endif
subdir('cros')