Update cc_fuzz rule - add library_path param

Test: make haiku

Change-Id: Iacdccb8fbc4a0937693a41ddc2107b4584203b94
This commit is contained in:
Mark
2022-09-26 19:00:51 +00:00
parent 6008155960
commit f0b2254d25

View File

@@ -151,6 +151,8 @@ type FuzzConfig struct {
// If there's a Java fuzzer with JNI, a different version of Jazzer would // 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 // need to be added to the fuzzer package than one without JNI
IsJni *bool `json:"is_jni,omitempty"` 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"`
} }
type FuzzFrameworks struct { type FuzzFrameworks struct {