| 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 import("../gni/v8.gni") | 6 import("../gni/v8.gni") |
| 7 | 7 |
| 8 group("gn_all") { | 8 group("gn_all") { |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 if (v8_enable_inspector) { | 24 if (v8_enable_inspector) { |
| 25 deps += [ "inspector:inspector-test" ] | 25 deps += [ "inspector:inspector-test" ] |
| 26 } | 26 } |
| 27 | 27 |
| 28 if (v8_test_isolation_mode != "noop") { | 28 if (v8_test_isolation_mode != "noop") { |
| 29 deps += [ | 29 deps += [ |
| 30 ":benchmarks_run", | 30 ":benchmarks_run", |
| 31 ":bot_default_run", | 31 ":bot_default_run", |
| 32 ":default_run", | 32 ":default_run", |
| 33 ":mozilla_run", | 33 ":mozilla_run", |
| 34 ":simdjs_run", | |
| 35 "test262:test262_run", | 34 "test262:test262_run", |
| 36 ] | 35 ] |
| 37 } | 36 } |
| 38 } | 37 } |
| 39 | 38 |
| 40 ############################################################################### | 39 ############################################################################### |
| 41 # Test groups | 40 # Test groups |
| 42 # | 41 # |
| 43 | 42 |
| 44 group("default_tests") { | 43 group("default_tests") { |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 } | 177 } |
| 179 | 178 |
| 180 v8_isolate_run("preparser") { | 179 v8_isolate_run("preparser") { |
| 181 deps = [ | 180 deps = [ |
| 182 "..:d8_run", | 181 "..:d8_run", |
| 183 ] | 182 ] |
| 184 | 183 |
| 185 isolate = "preparser/preparser.isolate" | 184 isolate = "preparser/preparser.isolate" |
| 186 } | 185 } |
| 187 | 186 |
| 188 v8_isolate_run("simdjs") { | |
| 189 deps = [ | |
| 190 "..:d8_run", | |
| 191 ] | |
| 192 | |
| 193 isolate = "simdjs/simdjs.isolate" | |
| 194 } | |
| 195 | |
| 196 v8_isolate_run("unittests") { | 187 v8_isolate_run("unittests") { |
| 197 deps = [ | 188 deps = [ |
| 198 "unittests:unittests", | 189 "unittests:unittests", |
| 199 ] | 190 ] |
| 200 | 191 |
| 201 isolate = "unittests/unittests.isolate" | 192 isolate = "unittests/unittests.isolate" |
| 202 } | 193 } |
| 203 | 194 |
| 204 v8_isolate_run("webkit") { | 195 v8_isolate_run("webkit") { |
| 205 deps = [ | 196 deps = [ |
| 206 "..:d8_run", | 197 "..:d8_run", |
| 207 ] | 198 ] |
| 208 | 199 |
| 209 isolate = "webkit/webkit.isolate" | 200 isolate = "webkit/webkit.isolate" |
| 210 } | 201 } |
| OLD | NEW |