From def818fd31161bcbd3b709c7492bf365c09e8a98 Mon Sep 17 00:00:00 2001 From: Carlos Garnacho Date: Wed, 22 Feb 2023 01:07:23 +0100 Subject: [PATCH] shell: Add missing gdkpixbuf dependency to run-test-js This executable only got the dependency indirectly through mutter linking to GTK3. When that is gone this dependency will be missing, so add it explicitly. Part-of: --- src/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/meson.build b/src/meson.build index b06b043a0..148d26947 100644 --- a/src/meson.build +++ b/src/meson.build @@ -268,7 +268,7 @@ executable('gnome-shell-perf-helper', 'shell-perf-helper.c', ) executable('run-js-test', 'run-js-test.c', - dependencies: [mutter_dep, gio_dep, gi_dep, gjs_dep], + dependencies: [mutter_dep, gdk_pixbuf_dep, gio_dep, gi_dep, gjs_dep], include_directories: [conf_inc], link_with: libshell, build_rpath: mutter_typelibdir,