elm_atspi_bridge: Prevent infinite loop in calculating navigable objects
[platform/upstream/efl.git] / meson_options.txt
index d2075ea..a126225 100644 (file)
@@ -6,7 +6,7 @@ option('audio',
 
 option('avahi',
   type : 'boolean',
-  value : true,
+  value : false,
   description : 'Avahi (zeroconf) support in efl'
 )
 
@@ -54,7 +54,7 @@ option('cocoa',
 
 option('physics',
   type : 'boolean',
-  value : true,
+  value : false,
   description : 'Physics engine (bullet) in efl'
 )
 
@@ -67,7 +67,7 @@ option('eeze',
 option('opengl',
   type : 'combo',
   choices : ['full', 'es-egl', 'none'],
-  value : 'full',
+  value : 'es-egl',
   description : 'Type of OpenGL support in efl'
 )
 
@@ -109,7 +109,7 @@ option('crypto',
 
 option('glib',
   type : 'boolean',
-  value : true,
+  value : false,
   description : 'Main loop integration for glib in efl'
 )
 
@@ -128,7 +128,7 @@ option('gstreamer',
 option('systemd',
   type : 'boolean',
   value : true,
-  description : 'Systemd support in efl'
+  description : 'Systemd and Elogind support at runtime in efl'
 )
 
 option('pulseaudio',
@@ -150,12 +150,6 @@ option('xpresent',
   description : 'X11 XPresent extension support in efl'
 )
 
-option('xgesture',
-  type : 'boolean',
-  value : false,
-  description : 'X11 XGesture support in efl'
-)
-
 option('xinput2',
   type : 'boolean',
   value : true,
@@ -170,7 +164,7 @@ option('xinput22',
 
 option('tslib',
   type : 'boolean',
-  value : true,
+  value : false,
   description : 'Framebuffer (/dev/fb / fbcon) touchscreen tslib support in efl'
 )
 
@@ -192,32 +186,25 @@ option('unmount-path',
   description : 'Path to the unmount binary, if "detect" internal eeze bins are used'
 )
 
-option('evas-modules',
-  type : 'combo',
-  choices : ['shared', 'static'],
-  value : 'shared',
-  description : 'Should modules be shared or statically inlined'
-)
-
 option('evas-loaders-disabler',
   type : 'array',
   description : 'List of modular image/vector loaders to disable in efl',
-  choices : ['gst', 'pdf', 'ps', 'raw', 'svg', 'rsvg', 'xcf', 'bmp', 'dds', 'eet', 'generic', 'gif', 'ico', 'jp2k', 'jpeg', 'pmaps', 'png', 'psd', 'tga', 'tgv', 'tiff', 'wbmp', 'webp', 'xpm', 'json'],
-  value : ['webp', 'json']
+  choices : ['', 'gst', 'pdf', 'ps', 'raw', 'svg', 'rsvg', 'xcf', 'bmp', 'dds', 'eet', 'generic', 'gif', 'ico', 'jp2k', 'jpeg', 'pmaps', 'png', 'psd', 'tga', 'tgv', 'tiff', 'wbmp', 'webp', 'xpm', 'json', 'avif'],
+  value : ['json', 'avif']
 )
 
 option('ecore-imf-loaders-disabler',
   type : 'array',
   description : 'List of input methods to disable in efl',
-  choices : ['xim', 'ibus', 'scim'],
-  value : ['scim']
+  choices : ['', 'xim', 'ibus', 'scim'],
+  value : ['ibus']
 )
 
 option('emotion-loaders-disabler',
   type : 'array',
   description : 'List of video back-ends to disable in efl',
-  choices : ['gstreamer', 'gstreamer1', 'libvlc', 'xine'],
-  value : ['gstreamer', 'libvlc', 'xine']
+  choices : ['gstreamer1', 'libvlc', 'xine'],
+  value : ['libvlc', 'xine']
 )
 
 option('emotion-generic-loaders-disabler',
@@ -263,6 +250,12 @@ option('hyphen',
   description : 'Hyphen text layout support in efl'
 )
 
+option('thorvg',
+  type : 'boolean',
+  value : true,
+  description : 'Thorvg support instead of ector in evas'
+)
+
 option('embedded-lz4',
   type : 'boolean',
   value : true,
@@ -278,7 +271,7 @@ option('libmount',
 option('vnc-server',
   type : 'boolean',
   value : false,
-  description : 'VNS server support in efl for multiseat testing'
+  description : 'VNC server support in efl for multiseat testing'
 )
 
 option('v4l2',
@@ -289,7 +282,7 @@ option('v4l2',
 
 option('elua',
   type : 'boolean',
-  value : true,
+  value : false,
   description : 'Lua launcher binary support in efl'
 )
 
@@ -313,8 +306,8 @@ option('nls',
 
 option('bindings',
   type : 'array',
-  choices : ['luajit', 'cxx', 'mono'],
-  value : ['luajit', 'cxx'],
+  choices : ['', 'lua', 'cxx', 'mono'],
+  value : ['cxx'],
   description : 'Which auto-generated language bindings for efl to enable',
 )
 
@@ -324,12 +317,30 @@ option('mono-beta',
   description: 'Mono/C# @beta Eo methods enabled in the efl'
 )
 
+option('dotnet-stylecop',
+  type: 'string',
+  description: 'Dotnet StyleCop checks. Use * for all, or use comma listed: -Ddotnet-stylecop=ca1062,CA1032, sa0001, SA0002, cA2225'
+)
+
+option('dotnet-stylecop-severity',
+  type: 'combo',
+  choices: ['Warning', 'Error'],
+  value: 'Warning',
+  description: 'Dotnet StyleCop checks cause compilation errors or just warnings'
+)
+
 option('mono-examples-dir',
   type: 'string',
   value: '',
   description: 'Where eolian_mono will search for examples to embed into the documentation'
 )
 
+option('dotnet',
+  type: 'boolean',
+  value: false,
+  description: 'Enable building C# bindings with dotnet instead of mono'
+)
+
 option('lua-interpreter',
   type: 'combo',
   choices: ['luajit', 'lua'],
@@ -343,12 +354,6 @@ option('native-arch-optimization',
   description: 'Enable architecture native optimizations in efl'
 )
 
-option('elogind',
-  type : 'boolean',
-  value : false,
-  description : 'elogind support in efl (subset of systemd)'
-)
-
 option('windows-version',
   type : 'combo',
   choices : ['vista', 'win7', 'win8', 'win81', 'win10'],
@@ -370,10 +375,16 @@ option('elementary-base-dir',
 
 option('install-eo-files',
   type: 'boolean',
-  value: false,
+  value: true,
   description : 'Install any eo file'
 )
 
+option('mono-friend-assemblies',
+  type : 'array',
+  value : [],
+  description : 'List of friend assemblies that can access efl_mono assembly\'s internal types and members.'
+)
+
 option('tizen',
   type: 'boolean',
   value: false,
@@ -389,6 +400,18 @@ option('tbm',
 option('trace',
   type : 'combo',
   choices : ['ttrace', 'vtune', 'none'],
-  value : 'none',
+  value : 'ttrace',
   description : 'Support Tracing in Efl'
-)
\ No newline at end of file
+)
+
+option('exactness',
+  type : 'boolean',
+  value : false,
+  description : 'enable exactness that record and play eo event'
+)
+
+option('efl-one',
+  type: 'boolean',
+  value : false,
+  description : 'Build special set of .so´s as a single .so'
+)