BUILD.gn 634 Bytes
Newer Older
1 2 3 4
# 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.

5 6
import("../../gni/v8.gni")

7 8 9 10 11
group("v8_fuzzer") {
  testonly = true

  data_deps = [
    "../..:v8_fuzzers",
12
    "../../tools:v8_testrunner",
13 14 15 16 17
  ]

  data = [
    "./fuzzer.status",
    "./testcfg.py",
18
    "./inspector/",
19 20 21 22 23
    "./json/",
    "./parser/",
    "./regexp/",
    "./regexp_builtins/",
  ]
24 25 26 27 28 29 30 31 32 33

  if (v8_enable_webassembly) {
    data += [
      "./multi_return/",
      "./wasm/",
      "./wasm_async/",
      "./wasm_code/",
      "./wasm_compile/",
    ]
  }
34
}