summaryrefslogtreecommitdiff
path: root/fuzz/atom/parser
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2025-12-01 19:50:26 +0000
committerJohn Turner <jturner.usa@gmail.com>2025-12-01 19:50:26 +0000
commita11e19e8e12d84373cd3784f718ad7baafb24d7b (patch)
tree0afe2a1a81ff8b66eff964ef80fce60e8328feb3 /fuzz/atom/parser
parentb753519a3e93c55e898a7dda2a11a3f74de9f586 (diff)
downloadgentoo-utils-a11e19e8e12d84373cd3784f718ad7baafb24d7b.tar.gz
clean up fuzzer related meson logic
Diffstat (limited to 'fuzz/atom/parser')
-rw-r--r--fuzz/atom/parser/meson.build9
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],
+ },
}