2016-06-03 13:46:08 +00:00
|
|
|
# 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 = [
|
2016-06-06 14:23:29 +00:00
|
|
|
":check-static-initializers_run",
|
2016-06-03 13:46:08 +00:00
|
|
|
":jsfunfuzz_run",
|
2016-06-06 14:23:29 +00:00
|
|
|
":run-deopt-fuzzer_run",
|
|
|
|
":run-gcmole_run",
|
|
|
|
":run-valgrind_run",
|
2016-06-03 13:46:08 +00:00
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-06 14:23:29 +00:00
|
|
|
v8_isolate_run("check-static-initializers") {
|
2016-06-03 13:46:08 +00:00
|
|
|
deps = [
|
|
|
|
"..:d8_run",
|
|
|
|
]
|
|
|
|
|
|
|
|
isolate = "check-static-initializers.isolate"
|
|
|
|
}
|
|
|
|
|
|
|
|
v8_isolate_run("jsfunfuzz") {
|
|
|
|
deps = [
|
|
|
|
"..:d8_run",
|
|
|
|
]
|
|
|
|
|
|
|
|
isolate = "jsfunfuzz/jsfunfuzz.isolate"
|
|
|
|
}
|
|
|
|
|
2016-06-06 14:23:29 +00:00
|
|
|
v8_isolate_run("run-deopt-fuzzer") {
|
2016-06-03 13:46:08 +00:00
|
|
|
deps = [
|
|
|
|
"..:d8_run",
|
|
|
|
]
|
|
|
|
|
|
|
|
isolate = "run-deopt-fuzzer.isolate"
|
|
|
|
}
|
|
|
|
|
2016-06-06 14:23:29 +00:00
|
|
|
v8_isolate_run("run-gcmole") {
|
2016-06-03 13:46:08 +00:00
|
|
|
deps = [
|
|
|
|
"..:d8_run",
|
|
|
|
]
|
|
|
|
|
|
|
|
isolate = "gcmole/run-gcmole.isolate"
|
|
|
|
}
|
|
|
|
|
2016-06-06 14:23:29 +00:00
|
|
|
v8_isolate_run("run-valgrind") {
|
2016-06-03 13:46:08 +00:00
|
|
|
deps = [
|
|
|
|
"..:d8_run",
|
|
|
|
]
|
|
|
|
|
|
|
|
isolate = "run-valgrind.isolate"
|
|
|
|
}
|