v8/test/fuzzer/BUILD.gn
Clemens Backes 577f983b7a [no-wasm] Exclude more targets from build
This excludes more targets and tests that won't work without
webassembly:
- wee8
- multi_return_fuzzer
- wasm-js
- wasm-spec-tests
- wasm-api-tests
- several cctests

R=jkummerow@chromium.org

Bug: v8:11238
Change-Id: I6d6ac43869a2b4a91e5b0e7e3183a476a98bf0af
Cq-Include-Trybots: luci.v8.try:v8_linux64_no_wasm_compile_rel
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2742617
Commit-Queue: Clemens Backes <clemensb@chromium.org>
Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
Cr-Commit-Position: refs/heads/master@{#73288}
2021-03-09 11:25:54 +00:00

35 lines
634 B
Plaintext

# Copyright 2018 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")
group("v8_fuzzer") {
testonly = true
data_deps = [
"../..:v8_fuzzers",
"../../tools:v8_testrunner",
]
data = [
"./fuzzer.status",
"./testcfg.py",
"./inspector/",
"./json/",
"./parser/",
"./regexp/",
"./regexp_builtins/",
]
if (v8_enable_webassembly) {
data += [
"./multi_return/",
"./wasm/",
"./wasm_async/",
"./wasm_code/",
"./wasm_compile/",
]
}
}