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 "cctest:generate-bytecode-expectations", | 18 "cctest:generate-bytecode-expectations", |
19 "unittests:unittests", | 19 "unittests:unittests", |
20 "inspector_protocol_parser_test:inspector_protocol_parser_test", | |
21 ] | 20 ] |
22 } | 21 } |
23 | 22 |
24 if (v8_test_isolation_mode != "noop") { | 23 if (v8_test_isolation_mode != "noop") { |
25 deps += [ | 24 deps += [ |
26 ":benchmarks_run", | 25 ":benchmarks_run", |
27 ":bot_default_run", | 26 ":bot_default_run", |
28 ":default_run", | 27 ":default_run", |
29 ":mozilla_run", | 28 ":mozilla_run", |
30 ":simdjs_run", | 29 ":simdjs_run", |
31 "test262:test262_run", | 30 "test262:test262_run", |
32 ] | 31 ] |
33 } | 32 } |
34 } | 33 } |
35 | 34 |
36 ############################################################################### | 35 ############################################################################### |
37 # Test groups | 36 # Test groups |
38 # | 37 # |
39 | 38 |
40 group("default_tests") { | 39 group("default_tests") { |
41 testonly = true | 40 testonly = true |
42 | 41 |
43 if (v8_test_isolation_mode != "noop") { | 42 if (v8_test_isolation_mode != "noop") { |
44 deps = [ | 43 deps = [ |
45 ":cctest_run", | 44 ":cctest_run", |
46 ":fuzzer_run", | 45 ":fuzzer_run", |
47 ":inspector_protocol_parser_test_run", | |
48 ":intl_run", | 46 ":intl_run", |
49 ":message_run", | 47 ":message_run", |
50 ":mjsunit_run", | 48 ":mjsunit_run", |
51 ":preparser_run", | 49 ":preparser_run", |
52 ":unittests_run", | 50 ":unittests_run", |
53 ] | 51 ] |
54 } | 52 } |
55 } | 53 } |
56 | 54 |
57 v8_isolate_run("bot_default") { | 55 v8_isolate_run("bot_default") { |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
124 "..:v8_simple_json_fuzzer", | 122 "..:v8_simple_json_fuzzer", |
125 "..:v8_simple_parser_fuzzer", | 123 "..:v8_simple_parser_fuzzer", |
126 "..:v8_simple_regexp_fuzzer", | 124 "..:v8_simple_regexp_fuzzer", |
127 "..:v8_simple_wasm_asmjs_fuzzer", | 125 "..:v8_simple_wasm_asmjs_fuzzer", |
128 "..:v8_simple_wasm_fuzzer", | 126 "..:v8_simple_wasm_fuzzer", |
129 ] | 127 ] |
130 | 128 |
131 isolate = "fuzzer/fuzzer.isolate" | 129 isolate = "fuzzer/fuzzer.isolate" |
132 } | 130 } |
133 | 131 |
134 v8_isolate_run("inspector_protocol_parser_test") { | |
135 deps = [ | |
136 "inspector_protocol_parser_test:inspector_protocol_parser_test", | |
137 ] | |
138 | |
139 isolate = "inspector_protocol_parser_test/inspector_protocol_parser_test.isola
te" | |
140 } | |
141 | |
142 v8_isolate_run("intl") { | 132 v8_isolate_run("intl") { |
143 deps = [ | 133 deps = [ |
144 "..:d8_run", | 134 "..:d8_run", |
145 ] | 135 ] |
146 | 136 |
147 isolate = "intl/intl.isolate" | 137 isolate = "intl/intl.isolate" |
148 } | 138 } |
149 | 139 |
150 v8_isolate_run("message") { | 140 v8_isolate_run("message") { |
151 deps = [ | 141 deps = [ |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 isolate = "unittests/unittests.isolate" | 185 isolate = "unittests/unittests.isolate" |
196 } | 186 } |
197 | 187 |
198 v8_isolate_run("webkit") { | 188 v8_isolate_run("webkit") { |
199 deps = [ | 189 deps = [ |
200 "..:d8_run", | 190 "..:d8_run", |
201 ] | 191 ] |
202 | 192 |
203 isolate = "webkit/webkit.isolate" | 193 isolate = "webkit/webkit.isolate" |
204 } | 194 } |
OLD | NEW |