v8/tools/clusterfuzz/BUILD.gn
Michael Achenbach 14243f1206 [foozzie] Fix sanity checks
The sanity checks never really worked since the file was missing in the
output dir. Runs bailed out with "Error loading file".
As both configurations bailed out in the same way, the correctness fuzzer
treated it as pass.

NOTRY=true

Bug: chromium:933076
Change-Id: Id3a2f7e8e3fa8c6654e3e08654d2e9e6b7010484
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1778289
Reviewed-by: Tamer Tas <tmrts@chromium.org>
Reviewed-by: Michael Starzinger <mstarzinger@chromium.org>
Commit-Queue: Michael Achenbach <machenbach@chromium.org>
Cr-Commit-Position: refs/heads/master@{#63495}
2019-09-02 08:30:40 +00:00

23 lines
592 B
Plaintext

# Copyright 2017 the V8 project authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("../../gni/v8.gni")
if (v8_correctness_fuzzer) {
copy("v8_correctness_fuzzer_resources") {
sources = [
"v8_commands.py",
"v8_foozzie.py",
"v8_foozzie_harness_adjust.js",
"v8_fuzz_config.py",
"v8_mock.js",
"v8_mock_archs.js",
"v8_sanity_checks.js",
"v8_suppressions.js",
"v8_suppressions.py",
]
outputs = [ "$root_out_dir/{{source_file_part}}" ]
}
}