diff options
author | 2022-09-26 19:00:51 +0000 | |
---|---|---|
committer | 2022-09-26 21:06:24 +0000 | |
commit | f0b2254d259d6d5c5b9dd02a36c66bf52ef4d132 (patch) | |
tree | b721603f4a0357fab15869dba55e35a6f7653c95 /fuzz | |
parent | 600815596013cb604981247eaaf2ef475a2d1811 (diff) |
Update cc_fuzz rule - add library_path param
Test: make haiku
Change-Id: Iacdccb8fbc4a0937693a41ddc2107b4584203b94
Diffstat (limited to 'fuzz')
-rw-r--r-- | fuzz/fuzz_common.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fuzz/fuzz_common.go b/fuzz/fuzz_common.go index c8cd21b7e..f35c06d87 100644 --- a/fuzz/fuzz_common.go +++ b/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"` + // Top-level paths to the library being fuzzed (e.g. "external/icu") + Library_paths []string `json:"library_paths,omitempty"` } type FuzzFrameworks struct { |