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("//build_overrides/v8.gni") | 6 import("//build_overrides/v8.gni") |
7 | 7 |
8 group("gn_all") { | 8 group("gn_all") { |
9 testonly = true | 9 testonly = true |
10 | 10 |
(...skipping 30 matching lines...) Expand all Loading... |
41 # Test groups | 41 # Test groups |
42 # | 42 # |
43 | 43 |
44 group("default_tests") { | 44 group("default_tests") { |
45 testonly = true | 45 testonly = true |
46 | 46 |
47 if (v8_test_isolation_mode != "noop") { | 47 if (v8_test_isolation_mode != "noop") { |
48 deps = [ | 48 deps = [ |
49 ":cctest_run", | 49 ":cctest_run", |
50 ":fuzzer_run", | 50 ":fuzzer_run", |
| 51 ":inspector-test_run", |
51 ":intl_run", | 52 ":intl_run", |
52 ":message_run", | 53 ":message_run", |
53 ":mjsunit_run", | 54 ":mjsunit_run", |
54 ":preparser_run", | 55 ":preparser_run", |
55 ":unittests_run", | 56 ":unittests_run", |
56 ] | 57 ] |
57 } | 58 } |
58 } | 59 } |
59 | 60 |
60 v8_isolate_run("bot_default") { | 61 v8_isolate_run("bot_default") { |
61 deps = [ | 62 deps = [ |
62 ":default_tests", | 63 ":default_tests", |
63 ":inspector-test_run", | |
64 ":webkit_run", | 64 ":webkit_run", |
65 ] | 65 ] |
66 | 66 |
67 isolate = "bot_default.isolate" | 67 isolate = "bot_default.isolate" |
68 } | 68 } |
69 | 69 |
70 v8_isolate_run("default") { | 70 v8_isolate_run("default") { |
71 deps = [ | 71 deps = [ |
72 ":default_tests", | 72 ":default_tests", |
73 ] | 73 ] |
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
201 isolate = "unittests/unittests.isolate" | 201 isolate = "unittests/unittests.isolate" |
202 } | 202 } |
203 | 203 |
204 v8_isolate_run("webkit") { | 204 v8_isolate_run("webkit") { |
205 deps = [ | 205 deps = [ |
206 "..:d8_run", | 206 "..:d8_run", |
207 ] | 207 ] |
208 | 208 |
209 isolate = "webkit/webkit.isolate" | 209 isolate = "webkit/webkit.isolate" |
210 } | 210 } |
OLD | NEW |