X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=meson_options.txt;h=7c39018d67793cb52dd9dbf3f66dba2a013c969a;hb=HEAD;hp=1fa3c6d63bc756b81d12a1657452dbe77c9a63ec;hpb=bcd3ffa8b2a259aa7ccc0236e8c5373d0543599e;p=platform%2Fupstream%2Fgstreamer.git diff --git a/meson_options.txt b/meson_options.txt index 1fa3c6d..7c39018 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -1,21 +1,26 @@ # Subproject options option('python', type : 'feature', value : 'auto') -option('libav', type : 'feature', value : 'auto') +option('libav', type : 'feature', value : 'enabled') option('libnice', type : 'feature', value : 'auto') option('base', type : 'feature', value : 'enabled') option('good', type : 'feature', value : 'enabled') -option('ugly', type : 'feature', value : 'auto') -option('bad', type : 'feature', value : 'auto') +option('ugly', type : 'feature', value : 'enabled') +option('bad', type : 'feature', value : 'enabled') option('devtools', type : 'feature', value : 'auto') -option('ges', type : 'feature', value : 'auto') -option('rtsp_server', type : 'feature', value : 'auto') -option('omx', type : 'feature', value : 'disabled') +option('ges', type : 'feature', value : 'enabled') +option('rtsp_server', type : 'feature', value : 'enabled') +option('omx', type : 'feature', value : 'enabled') option('vaapi', type : 'feature', value : 'disabled') option('sharp', type : 'feature', value : 'disabled') option('rs', type : 'feature', value : 'disabled') option('gst-examples', type : 'feature', value : 'auto', description : 'Build gst-examples') option('tls', type : 'feature', value : 'auto', description : 'TLS support using glib-networking') option('qt5', type : 'feature', value : 'auto', description : 'Qt5 Support') +option('tools', type : 'feature', value : 'enabled', 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') @@ -33,6 +38,11 @@ option('gst-full-device-providers', type : 'string', value : '', description : '''List of device providers to expose in gstreamer-full's ABI with the syntax plugin1:dp1;plugin2:dp1:dp2. By default '' will export all device provider of the enabled plugin.''') option('gst-full-dynamic-types', type : 'string', value : '', description : '''List of dynamic types to expose in gstreamer-full's ABI with the syntax plugin:dt1,dt2. By default '' will export all device provider of the enabled plugin.''') +option('orc-source', type: 'combo', choices: ['system', 'subproject', 'auto'], value: 'subproject') + +# License-related feature options +option('gpl', type: 'feature', value: 'disabled', + description: 'Allow build of plugins that have (A)GPL-licensed dependencies') # Common options, automatically inherited by subprojects option('tests', type : 'feature', value : 'auto', description : 'Build tests') @@ -42,3 +52,13 @@ option('nls', type : 'feature', value : 'auto', description : 'Enable native lan option('orc', type : 'feature', value : 'auto', description : 'Enable Optimized Inner Loop Runtime Compiler') option('doc', type : 'feature', value : 'auto', description : 'Generate API documentation with hotdoc') option('gtk_doc', type : 'feature', value : 'disabled', description : 'Generate API documentation with gtk-doc') + +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)')