1pixbuf_sources = [ 2 'gstgdkpixbufdec.c', 3 'gstgdkpixbufoverlay.c', 4 'gstgdkpixbufelement.c', 5 'gstgdkpixbufplugin.c', 6 'gstgdkpixbufsink.c', 7] 8 9gdkpixbuf_dep = dependency('gdk-pixbuf-2.0', version : '>=2.8.0', required : get_option('gdk-pixbuf')) 10 11if gdkpixbuf_dep.found() 12 gstgdkpixbuf = library('gstgdkpixbuf', 13 pixbuf_sources, 14 c_args : gst_plugins_good_args, 15 link_args : noseh_link_args, 16 include_directories : [configinc], 17 dependencies : [gstbase_dep, gstvideo_dep, gstcontroller_dep, gdkpixbuf_dep], 18 install : true, 19 install_dir : plugins_install_dir, 20 ) 21 pkgconfig.generate(gstgdkpixbuf, install_dir : plugins_pkgconfig_install_dir) 22 plugins += [gstgdkpixbuf] 23endif 24