diff options
| author | John Turner <jturner.usa@gmail.com> | 2025-12-01 19:50:26 +0000 |
|---|---|---|
| committer | John Turner <jturner.usa@gmail.com> | 2025-12-01 19:50:26 +0000 |
| commit | a11e19e8e12d84373cd3784f718ad7baafb24d7b (patch) | |
| tree | 0afe2a1a81ff8b66eff964ef80fce60e8328feb3 /fuzz/atom/parser | |
| parent | b753519a3e93c55e898a7dda2a11a3f74de9f586 (diff) | |
| download | gentoo-utils-a11e19e8e12d84373cd3784f718ad7baafb24d7b.tar.gz | |
clean up fuzzer related meson logic
Diffstat (limited to 'fuzz/atom/parser')
| -rw-r--r-- | fuzz/atom/parser/meson.build | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/fuzz/atom/parser/meson.build b/fuzz/atom/parser/meson.build index efc84c6..88452f5 100644 --- a/fuzz/atom/parser/meson.build +++ b/fuzz/atom/parser/meson.build @@ -1,6 +1,7 @@ fuzzers += { - 'atom_parser': [ - meson.current_source_dir() / 'gencorpus.rs', - meson.current_source_dir() / 'fuzz.rs', - ], + 'atom_parser': { + 'gencorpus': meson.current_source_dir() / 'gencorpus.rs', + 'fuzzer': meson.current_source_dir() / 'fuzz.rs', + 'deps': [mon], + }, } |
