| OLD | NEW |
| 1 # Copyright 2016 the V8 project authors. All rights reserved. | 1 # Copyright 2016 the V8 project authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("../gni/isolate.gni") | 5 import("../gni/isolate.gni") |
| 6 | 6 |
| 7 group("gn_all") { | 7 group("gn_all") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 if (v8_test_isolation_mode != "noop") { | 10 if (v8_test_isolation_mode != "noop") { |
| 11 deps = [ | 11 deps = [ |
| 12 ":check_static_initializers_run", | 12 ":check-static-initializers_run", |
| 13 ":jsfunfuzz_run", | 13 ":jsfunfuzz_run", |
| 14 ":run_deopt_fuzzer_run", | 14 ":run-deopt-fuzzer_run", |
| 15 ":run_gcmole_run", | 15 ":run-gcmole_run", |
| 16 ":run_valgrind_run", | 16 ":run-valgrind_run", |
| 17 ] | 17 ] |
| 18 } | 18 } |
| 19 } | 19 } |
| 20 | 20 |
| 21 v8_isolate_run("check_static_initializers") { | 21 v8_isolate_run("check-static-initializers") { |
| 22 deps = [ | 22 deps = [ |
| 23 "..:d8_run", | 23 "..:d8_run", |
| 24 ] | 24 ] |
| 25 | 25 |
| 26 isolate = "check-static-initializers.isolate" | 26 isolate = "check-static-initializers.isolate" |
| 27 } | 27 } |
| 28 | 28 |
| 29 v8_isolate_run("jsfunfuzz") { | 29 v8_isolate_run("jsfunfuzz") { |
| 30 deps = [ | 30 deps = [ |
| 31 "..:d8_run", | 31 "..:d8_run", |
| 32 ] | 32 ] |
| 33 | 33 |
| 34 isolate = "jsfunfuzz/jsfunfuzz.isolate" | 34 isolate = "jsfunfuzz/jsfunfuzz.isolate" |
| 35 } | 35 } |
| 36 | 36 |
| 37 v8_isolate_run("run_deopt_fuzzer") { | 37 v8_isolate_run("run-deopt-fuzzer") { |
| 38 deps = [ | 38 deps = [ |
| 39 "..:d8_run", | 39 "..:d8_run", |
| 40 ] | 40 ] |
| 41 | 41 |
| 42 isolate = "run-deopt-fuzzer.isolate" | 42 isolate = "run-deopt-fuzzer.isolate" |
| 43 } | 43 } |
| 44 | 44 |
| 45 v8_isolate_run("run_gcmole") { | 45 v8_isolate_run("run-gcmole") { |
| 46 deps = [ | 46 deps = [ |
| 47 "..:d8_run", | 47 "..:d8_run", |
| 48 ] | 48 ] |
| 49 | 49 |
| 50 isolate = "gcmole/run-gcmole.isolate" | 50 isolate = "gcmole/run-gcmole.isolate" |
| 51 } | 51 } |
| 52 | 52 |
| 53 v8_isolate_run("run_valgrind") { | 53 v8_isolate_run("run-valgrind") { |
| 54 deps = [ | 54 deps = [ |
| 55 "..:d8_run", | 55 "..:d8_run", |
| 56 ] | 56 ] |
| 57 | 57 |
| 58 isolate = "run-valgrind.isolate" | 58 isolate = "run-valgrind.isolate" |
| 59 } | 59 } |
| OLD | NEW |