Bug 1690340 - Part 2: Use the new naming for the developer tools menu items. r=jdescottes
[gecko.git] / third_party / dav1d / meson_options.txt
blob37bd0843314de9231463e08557e7fccd800becbf
1 # General options
3 option('bitdepths',
4     type: 'array',
5     choices: ['8', '16'],
6     description: 'Enable only specified bitdepths')
8 option('enable_asm',
9     type: 'boolean',
10     value: true,
11     description: 'Build asm files, if available')
13 option('enable_avx512',
14     type: 'boolean',
15     value: true,
16     description: 'Build AVX-512 asm files, requires nasm 2.14')
18 option('enable_tools',
19     type: 'boolean',
20     value: true,
21     description: 'Build dav1d cli tools')
23 option('enable_examples',
24     type: 'boolean',
25     value: false,
26     description: 'Build dav1d examples')
28 option('enable_tests',
29     type: 'boolean',
30     value: true,
31     description: 'Build dav1d tests')
33 option('logging',
34     type: 'boolean',
35     value: true,
36     description: 'Print error log messages using the provided callback function')
38 option('testdata_tests',
39     type: 'boolean',
40     value: false,
41     description: 'Run tests requiring the test data repository')
43 option('fuzzing_engine',
44     type: 'combo',
45     choices : ['none', 'libfuzzer', 'oss-fuzz'],
46     value: 'none',
47     description: 'Select the fuzzing engine')
49 option('fuzzer_ldflags',
50     type: 'string',
51     description: 'Extra LDFLAGS used during linking of fuzzing binaries')
53 option('stack_alignment',
54     type: 'integer',
55     value: 0)