Merge "add options for LibFuzzer, HWASan, and ASan to fuzz_config" am: 4803765257 am: 73fb162a6e

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1542043

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: Iad678c049c2a7eb7660cf409b565d745984a3db6
This commit is contained in:
Kris Alder 2021-01-08 17:38:49 +00:00 committed by Automerger Merge Worker
commit 28fd479588
1 changed files with 6 additions and 0 deletions

View File

@ -41,6 +41,12 @@ type FuzzConfig struct {
// Specify who should be acknowledged for CVEs in the Android Security
// Bulletin.
Acknowledgement []string `json:"acknowledgement,omitempty"`
// Additional options to be passed to libfuzzer when run in Haiku.
Libfuzzer_options []string `json:"libfuzzer_options,omitempty"`
// Additional options to be passed to HWASAN when running on-device in Haiku.
Hwasan_options []string `json:"hwasan_options,omitempty"`
// Additional options to be passed to HWASAN when running on host in Haiku.
Asan_options []string `json:"asan_options,omitempty"`
}
func (f *FuzzConfig) String() string {