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 = [ |
(...skipping 26 matching lines...) Expand all Loading... |
37 # Test groups | 37 # Test groups |
38 # | 38 # |
39 | 39 |
40 group("default_tests") { | 40 group("default_tests") { |
41 testonly = true | 41 testonly = true |
42 | 42 |
43 if (v8_test_isolation_mode != "noop") { | 43 if (v8_test_isolation_mode != "noop") { |
44 deps = [ | 44 deps = [ |
45 ":cctest_run", | 45 ":cctest_run", |
46 ":fuzzer_run", | 46 ":fuzzer_run", |
| 47 ":inspector_protocol_parser_test_run", |
47 ":intl_run", | 48 ":intl_run", |
48 ":message_run", | 49 ":message_run", |
49 ":mjsunit_run", | 50 ":mjsunit_run", |
50 ":preparser_run", | 51 ":preparser_run", |
51 ":unittests_run", | 52 ":unittests_run", |
52 ] | 53 ] |
53 } | 54 } |
54 } | 55 } |
55 | 56 |
56 v8_isolate_run("bot_default") { | 57 v8_isolate_run("bot_default") { |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
132 "..:v8_simple_json_fuzzer", | 133 "..:v8_simple_json_fuzzer", |
133 "..:v8_simple_parser_fuzzer", | 134 "..:v8_simple_parser_fuzzer", |
134 "..:v8_simple_regexp_fuzzer", | 135 "..:v8_simple_regexp_fuzzer", |
135 "..:v8_simple_wasm_asmjs_fuzzer", | 136 "..:v8_simple_wasm_asmjs_fuzzer", |
136 "..:v8_simple_wasm_fuzzer", | 137 "..:v8_simple_wasm_fuzzer", |
137 ] | 138 ] |
138 | 139 |
139 isolate = "fuzzer/fuzzer.isolate" | 140 isolate = "fuzzer/fuzzer.isolate" |
140 } | 141 } |
141 | 142 |
| 143 v8_isolate_run("inspector_protocol_parser_test") { |
| 144 deps = [ |
| 145 "inspector_protocol_parser_test:inspector_protocol_parser_test", |
| 146 ] |
| 147 |
| 148 isolate = "inspector_protocol_parser_test/inspector_protocol_parser_test.isola
te" |
| 149 } |
| 150 |
142 v8_isolate_run("intl") { | 151 v8_isolate_run("intl") { |
143 deps = [ | 152 deps = [ |
144 "..:d8_run", | 153 "..:d8_run", |
145 ] | 154 ] |
146 | 155 |
147 isolate = "intl/intl.isolate" | 156 isolate = "intl/intl.isolate" |
148 } | 157 } |
149 | 158 |
150 v8_isolate_run("message") { | 159 v8_isolate_run("message") { |
151 deps = [ | 160 deps = [ |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 isolate = "unittests/unittests.isolate" | 204 isolate = "unittests/unittests.isolate" |
196 } | 205 } |
197 | 206 |
198 v8_isolate_run("webkit") { | 207 v8_isolate_run("webkit") { |
199 deps = [ | 208 deps = [ |
200 "..:d8_run", | 209 "..:d8_run", |
201 ] | 210 ] |
202 | 211 |
203 isolate = "webkit/webkit.isolate" | 212 isolate = "webkit/webkit.isolate" |
204 } | 213 } |
OLD | NEW |