Commit 7f163a4b authored by Jose Dapena Paz's avatar Jose Dapena Paz Committed by Commit Bot

GCC: do not use blink heap fuzzed data provider if build is not using clang

GCC build of blink_heap_unittests is broken as it requires the fuzzed data
provider. But libfuzzer is not available without clang.

Bug: 819294
Change-Id: I377ed09d03fd8bdc2561d766a1964d4ab61943dc
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1901038Reviewed-by: default avatarMartin Barbella <mbarbella@chromium.org>
Reviewed-by: default avatarJeremy Roman <jbroman@chromium.org>
Commit-Queue: José Dapena Paz <jose.dapena@lge.com>
Cr-Commit-Position: refs/heads/master@{#713190}
parent 1b93bb97
......@@ -1662,7 +1662,7 @@ jumbo_static_library("test_support") {
]
# fuzzed_data_provider may not work with a custom toolchain.
if (custom_toolchain == "") {
if (custom_toolchain == "" && is_clang) {
sources += [
"testing/fuzzed_data_provider.cc",
"testing/fuzzed_data_provider.h",
......
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