aboutsummaryrefslogtreecommitdiff
path: root/fuzzers/BUILD.gn
diff options
context:
space:
mode:
authorCalder Kitagawa <ckitagawa@chromium.org>2018-05-24 21:36:47 +0000
committerEdward Lesmes <ehmaldonado@google.com>2021-07-23 22:39:21 +0000
commitc4290b536703a052b79fa321fcdecd73bc99d484 (patch)
treef7ad655a239fe120cef2249bc587d665f127a683 /fuzzers/BUILD.gn
parentbab7823ce6343d0267271c0cfbc5f6fbceeafe3e (diff)
downloadzucchini-c4290b536703a052b79fa321fcdecd73bc99d484.tar.gz
[Zucchini] Disable FilePair related fuzzers on Windows
zucchini_raw_apply_seed is failing on ToTWinCFI this disables building the target on Windows. A first attempt at a fix failed so until a better method of diagnosing the problem is determined we will disable it as it wasn't used by ClusterFuzz anyway (Linux only). Bug: 844826 Change-Id: I47820432ddb94334006ee727120a242684152b97 Reviewed-on: https://chromium-review.googlesource.com/1072506 Commit-Queue: Calder Kitagawa <ckitagawa@chromium.org> Reviewed-by: Samuel Huang <huangs@chromium.org> Cr-Commit-Position: refs/heads/master@{#561641} NOKEYCHECK=True GitOrigin-RevId: 77d87185250262afe6e43367fd2d95aef5eb186e
Diffstat (limited to 'fuzzers/BUILD.gn')
-rw-r--r--fuzzers/BUILD.gn3
1 files changed, 2 insertions, 1 deletions
diff --git a/fuzzers/BUILD.gn b/fuzzers/BUILD.gn
index 30464eb..7afe6db 100644
--- a/fuzzers/BUILD.gn
+++ b/fuzzers/BUILD.gn
@@ -37,7 +37,8 @@ proto_library("zucchini_file_pair_proto") {
}
# Ensure protoc is available.
-if (current_toolchain == host_toolchain) {
+# Disabled on Windows due to crbug/844826.
+if (current_toolchain == host_toolchain && !is_win) {
# Raw Apply Fuzzer:
action("zucchini_raw_apply_seed") {
script = "generate_fuzzer_data.py"