Browse Source

Merge changes Ib951c4f5,Iacdccb8f

* changes:
  Include target_mods field Test: build a module with target_mods populated in cc_fuzz
  Update cc_fuzz rule - add library_path param Test: make haiku
Mark Teffeteller 1 year ago
parent
commit
0342382526
1 changed files with 2 additions and 0 deletions
  1. 2 0
      fuzz/fuzz_common.go

+ 2 - 0
fuzz/fuzz_common.go

@@ -151,6 +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"`
+	// List of modules for monitoring coverage drops in directories (e.g. "libicu")
+	Target_modules []string `json:"target_modules,omitempty"`
 }
 
 type FuzzFrameworks struct {