BUILD.gn 1007 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11
# Copyright 2016 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/isolate.gni")

group("gn_all") {
  testonly = true

  if (v8_test_isolation_mode != "noop") {
    deps = [
12
      ":check-static-initializers_run",
13
      ":jsfunfuzz_run",
14 15 16
      ":run-deopt-fuzzer_run",
      ":run-gcmole_run",
      ":run-valgrind_run",
17 18 19 20
    ]
  }
}

21
v8_isolate_run("check-static-initializers") {
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
  deps = [
    "..:d8_run",
  ]

  isolate = "check-static-initializers.isolate"
}

v8_isolate_run("jsfunfuzz") {
  deps = [
    "..:d8_run",
  ]

  isolate = "jsfunfuzz/jsfunfuzz.isolate"
}

37
v8_isolate_run("run-deopt-fuzzer") {
38 39 40 41 42 43 44
  deps = [
    "..:d8_run",
  ]

  isolate = "run-deopt-fuzzer.isolate"
}

45
v8_isolate_run("run-gcmole") {
46 47 48 49 50 51 52
  deps = [
    "..:d8_run",
  ]

  isolate = "gcmole/run-gcmole.isolate"
}

53
v8_isolate_run("run-valgrind") {
54 55 56 57 58 59
  deps = [
    "..:d8_run",
  ]

  isolate = "run-valgrind.isolate"
}