| 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", |
| 34 "test262:test262_run", | 35 "test262:test262_run", |
| 35 ] | 36 ] |
| 36 } | 37 } |
| 37 } | 38 } |
| 38 | 39 |
| 39 ############################################################################### | 40 ############################################################################### |
| 40 # Test groups | 41 # Test groups |
| 41 # | 42 # |
| 42 | 43 |
| 43 group("default_tests") { | 44 group("default_tests") { |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 } | 178 } |
| 178 | 179 |
| 179 v8_isolate_run("preparser") { | 180 v8_isolate_run("preparser") { |
| 180 deps = [ | 181 deps = [ |
| 181 "..:d8_run", | 182 "..:d8_run", |
| 182 ] | 183 ] |
| 183 | 184 |
| 184 isolate = "preparser/preparser.isolate" | 185 isolate = "preparser/preparser.isolate" |
| 185 } | 186 } |
| 186 | 187 |
| 188 v8_isolate_run("simdjs") { |
| 189 deps = [ |
| 190 "..:d8_run", |
| 191 ] |
| 192 |
| 193 isolate = "simdjs/simdjs.isolate" |
| 194 } |
| 195 |
| 187 v8_isolate_run("unittests") { | 196 v8_isolate_run("unittests") { |
| 188 deps = [ | 197 deps = [ |
| 189 "unittests:unittests", | 198 "unittests:unittests", |
| 190 ] | 199 ] |
| 191 | 200 |
| 192 isolate = "unittests/unittests.isolate" | 201 isolate = "unittests/unittests.isolate" |
| 193 } | 202 } |
| 194 | 203 |
| 195 v8_isolate_run("webkit") { | 204 v8_isolate_run("webkit") { |
| 196 deps = [ | 205 deps = [ |
| 197 "..:d8_run", | 206 "..:d8_run", |
| 198 ] | 207 ] |
| 199 | 208 |
| 200 isolate = "webkit/webkit.isolate" | 209 isolate = "webkit/webkit.isolate" |
| 201 } | 210 } |
| OLD | NEW |