subparse: don't deref a potentially NULL variable
[platform/upstream/gstreamer.git] / meson_options.txt
index 1f837ca..1896d25 100644 (file)
@@ -18,6 +18,10 @@ option('tls', type : 'feature', value : 'auto', description : 'TLS support using
 option('qt5', type : 'feature', value : 'auto', description : 'Qt5 Support')
 option('tools', type : 'feature', value : 'auto', yield : true, description : 'Build command line tools')
 
+# Build for fuzzing
+option('oss_fuzz', type : 'feature', value : 'disabled',
+       description: 'Use fuzzing build environment')
+
 # Other options
 option('custom_subprojects', type : 'string', value : '', description : 'Comma-separated project names')
 option('gst-full-libraries', type : 'array', value : [],
@@ -50,3 +54,10 @@ option('gtk_doc', type : 'feature', value : 'disabled', description : 'Generate
 
 option('package-origin', type : 'string', value : 'Unknown package origin', yield : true,
        description : 'package origin URL to use in plugins')
+
+option('gobject-cast-checks', type : 'feature', value : 'auto', yield : true,
+       description: 'Enable run-time GObject cast checks (auto = enabled for development, disabled for stable releases)')
+option('glib-asserts', type : 'feature', value : 'enabled', yield : true,
+       description: 'Enable GLib assertion (auto = enabled for development, disabled for stable releases)')
+option('glib-checks', type : 'feature', value : 'enabled', yield : true,
+       description: 'Enable GLib checks such as API guards (auto = enabled for development, disabled for stable releases)')