From db27029ce45b8c523aaaceb4ab1027cade228ebd Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Mon, 8 Feb 2021 23:43:05 +0200 Subject: meson: Fix coding style when declaring arrays MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The meson.build files mix array declarations with and without a space after the opening and before the closing square bracket. The vast majority of cases don't use spaces, so standardize on that. While it it, fix indentation in a few places. Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund Reviewed-by: Kieran Bingham --- src/android/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/android') diff --git a/src/android/meson.build b/src/android/meson.build index 95d0f420..f5567a1c 100644 --- a/src/android/meson.build +++ b/src/android/meson.build @@ -32,9 +32,9 @@ if android_enabled libyuv_vars.append_link_args('-ljpeg') libyuv = cmake.subproject('libyuv', options : libyuv_vars) libyuv_dep = libyuv.dependency('yuv') - endif + endif - android_deps += [ libyuv_dep, ] + android_deps += [libyuv_dep] endif android_hal_sources = files([ -- cgit v1.2.1