summaryrefslogtreecommitdiff
path: root/fuzz/fuzz_common.go
diff options
context:
space:
mode:
author Mark <mteffeteller@google.com> 2022-09-30 21:13:01 +0000
committer Mark Teffeteller <mteffeteller@google.com> 2022-10-06 22:36:33 +0000
commit74c0ad2248aa50fa2bd906e6facb55907625f9e9 (patch)
tree386ee83e82822399ed6fbadf9df0ac85934e38ad /fuzz/fuzz_common.go
parentf0b2254d259d6d5c5b9dd02a36c66bf52ef4d132 (diff)
Include target_mods field
Test: build a module with target_mods populated in cc_fuzz Change-Id: Ib951c4f551db27f67e2cc18717e52763a99907a3
Diffstat (limited to 'fuzz/fuzz_common.go')
-rw-r--r--fuzz/fuzz_common.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/fuzz/fuzz_common.go b/fuzz/fuzz_common.go
index f35c06d87..9be158332 100644
--- a/fuzz/fuzz_common.go
+++ b/fuzz/fuzz_common.go
@@ -151,8 +151,8 @@ type FuzzConfig struct {
// If there's a Java fuzzer with JNI, a different version of Jazzer would
// need to be added to the fuzzer package than one without JNI
IsJni *bool `json:"is_jni,omitempty"`
- // Top-level paths to the library being fuzzed (e.g. "external/icu")
- Library_paths []string `json:"library_paths,omitempty"`
+ // List of modules for monitoring coverage drops in directories (e.g. "libicu")
+ Target_modules []string `json:"target_modules,omitempty"`
}
type FuzzFrameworks struct {