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 deps = [ | 10 deps = [ |
11 ":default_tests", | 11 ":default_tests", |
12 ] | 12 ] |
13 | 13 |
14 if (host_os != "mac" || !is_android) { | 14 if (host_os != "mac" || !is_android) { |
15 # These items don't compile for Android on Mac. | 15 # These items don't compile for Android on Mac. |
16 deps += [ | 16 deps += [ |
17 "cctest:cctest", | 17 "cctest:cctest", |
18 "unittests:unittests", | 18 "unittests:unittests", |
19 ] | 19 ] |
20 } | 20 } |
21 | 21 |
22 if (v8_test_isolation_mode != "noop") { | 22 if (v8_test_isolation_mode != "noop") { |
23 deps += [ | 23 deps += [ |
24 ":bot_default_run", | 24 ":bot_default_run", |
25 ":benchmarks_run", | 25 ":benchmarks_run", |
26 ":default_run", | 26 ":default_run", |
27 ":mozilla_run", | 27 ":mozilla_run", |
28 ":simdjs_run", | 28 ":simdjs_run", |
29 ":test262_run", | 29 "test262:test262_run", |
30 ] | 30 ] |
31 } | 31 } |
32 } | 32 } |
33 | 33 |
34 ############################################################################### | 34 ############################################################################### |
35 # Test groups | 35 # Test groups |
36 # | 36 # |
37 | 37 |
38 group("default_tests") { | 38 group("default_tests") { |
39 testonly = true | 39 testonly = true |
(...skipping 138 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 } | 178 } |
179 | 179 |
180 v8_isolate_run("simdjs") { | 180 v8_isolate_run("simdjs") { |
181 deps = [ | 181 deps = [ |
182 "..:d8_run", | 182 "..:d8_run", |
183 ] | 183 ] |
184 | 184 |
185 isolate = "simdjs/simdjs.isolate" | 185 isolate = "simdjs/simdjs.isolate" |
186 } | 186 } |
187 | 187 |
188 v8_isolate_run("test262") { | |
189 deps = [ | |
190 "..:d8_run", | |
191 ] | |
192 | |
193 isolate = "test262/test262.isolate" | |
194 } | |
195 | |
196 v8_isolate_run("unittests") { | 188 v8_isolate_run("unittests") { |
197 deps = [ | 189 deps = [ |
198 "unittests:unittests", | 190 "unittests:unittests", |
199 ] | 191 ] |
200 | 192 |
201 isolate = "unittests/unittests.isolate" | 193 isolate = "unittests/unittests.isolate" |
202 } | 194 } |
203 | 195 |
204 v8_isolate_run("webkit") { | 196 v8_isolate_run("webkit") { |
205 deps = [ | 197 deps = [ |
206 "..:d8_run", | 198 "..:d8_run", |
207 ] | 199 ] |
208 | 200 |
209 isolate = "webkit/webkit.isolate" | 201 isolate = "webkit/webkit.isolate" |
210 } | 202 } |
OLD | NEW |