v4l2allocator: support orphaning
[platform/upstream/gst-plugins-good.git] / tests / icles / meson.build
1 tests = [
2   ['equalizer-test'],
3   ['test-accurate-seek', [gstaudio_dep, gstapp_dep]],
4   ['test-segment-seeks'],
5   ['videocrop-test'],
6   ['videobox-test'],
7   ['videocrop2-test'],
8 ]
9
10 if gtk_dep.found()
11   tests += [
12     ['gdkpixbufsink-test', gtk_dep],
13     ['gdkpixbufoverlay-test', [gstvideo_dep, gtk_dep]],
14   ]
15 endif
16
17 if get_variable('have_oss4', false)
18   tests += [['test-oss4']]
19 endif
20
21 if x11_dep.found()
22   tests += [['ximagesrc-test']]
23 endif
24
25 foreach t : tests
26   test_name = t.get(0)
27   extra_deps = t.get(1, [])
28   executable(test_name, test_name + '.c',
29     dependencies: [gst_dep, gstbase_dep, libm, extra_deps],
30     c_args : gst_plugins_good_args,
31     include_directories : [configinc],
32     install: false)
33 endforeach