Commit 54d8a415 authored by Jonathan Metzman's avatar Jonathan Metzman Committed by Commit Bot

[AFL][libprotobuf-mutator] Prevent build bots from building proto fuzzers for AFL

Bug: 769582
Change-Id: I197d6ac177dd14e00faaa2ab0a54b72576197c9c
Reviewed-on: https://chromium-review.googlesource.com/694641Reviewed-by: default avatarVitaly Buka <vitalybuka@chromium.org>
Reviewed-by: default avatarMax Moroz <mmoroz@chromium.org>
Commit-Queue: Jonathan Metzman <metzman@chromium.org>
Cr-Commit-Position: refs/heads/master@{#506543}
parent 79e1a976
# Copyright 2017 The Chromium Authors. All rights reserved.
import("//testing/libfuzzer/fuzzer_test.gni")
config("include_config") {
include_dirs = [ "src/" ]
}
......@@ -18,4 +21,10 @@ source_set("libprotobuf-mutator") {
deps = [
"//third_party/protobuf:protobuf_full",
]
# Let ClusterFuzz builders know to not build targets that depend on
# libprotobuf-mutator for AFL.
if (use_afl) {
all_dependent_configs = [ "//testing/libfuzzer:no_clusterfuzz" ]
}
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment