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-gcmole_run",
|
2017-11-10 13:46:31 +00:00
|
|
|
":run-num-fuzzer_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-gcmole") {
|
2016-06-03 13:46:08 +00:00
|
|
|
deps = [
|
|
|
|
"..:d8_run",
|
|
|
|
]
|
|
|
|
|
|
|
|
isolate = "gcmole/run-gcmole.isolate"
|
|
|
|
}
|
2017-11-10 13:46:31 +00:00
|
|
|
|
2018-01-16 16:08:30 +00:00
|
|
|
# TODO(machenbach): Add tests as dependencies.
|
2017-11-10 13:46:31 +00:00
|
|
|
v8_isolate_run("run-num-fuzzer") {
|
|
|
|
deps = [
|
|
|
|
"..:d8_run",
|
|
|
|
]
|
|
|
|
|
|
|
|
isolate = "run-num-fuzzer.isolate"
|
|
|
|
}
|