harness: Take ownership of floating references (pads, elements) passed to the harness
[platform/upstream/gstreamer.git] / plugins / tracers / meson.build
1 gst_tracers_sources = [
2   'gstlatency.c',
3   'gstleaks.c',
4   'gststats.c',
5   'gsttracers.c',
6 ]
7
8 if gst_debug
9   gst_tracers_sources += ['gstlog.c']
10 endif
11
12 if cdata.has('HAVE_GETRUSAGE')
13   gst_tracers_sources += ['gstrusage.c']
14 endif
15
16 tracers_args = gst_c_args + ['-DGST_USE_UNSTABLE_API']
17
18 gst_tracers = library('gstcoretracers',
19   gst_tracers_sources,
20   c_args : tracers_args,
21   include_directories : [configinc],
22   dependencies : [gst_dep],
23   install : true,
24   install_dir : plugins_install_dir,
25 )
26 pkgconfig.generate(gst_tracers, install_dir : plugins_pkgconfig_install_dir)