mirror of
https://code.videolan.org/videolan/dav1d
synced 2024-11-14 22:58:33 +01:00
f8e918a9f1
Replaces the boolean 'build_libfuzzer' meson option with 'fuzzing_engine'. This allows reproducing fuzzing test cases on systems without libfuzzer. Also prevents regressions in the fuzzing test target since it will be build by default.
28 lines
606 B
Meson
28 lines
606 B
Meson
# General options
|
|
|
|
option('bitdepths',
|
|
type: 'array',
|
|
choices: ['8', '10'],
|
|
description: 'Enable only specified bitdepths')
|
|
|
|
option('build_asm',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Build asm files, if available')
|
|
|
|
option('build_tools',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Build dav1d cli tools')
|
|
|
|
option('build_tests',
|
|
type: 'boolean',
|
|
value: true,
|
|
description: 'Build dav1d tests')
|
|
|
|
option('fuzzing_engine',
|
|
type: 'combo',
|
|
choices : ['none', 'libfuzzer', 'oss-fuzz'],
|
|
value: 'none',
|
|
description: 'Select the fuzzing engine')
|