| 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 ] | 20 ] |
| 21 } | 21 } |
| 22 | 22 |
| 23 if (v8_test_isolation_mode != "noop") { | 23 if (v8_test_isolation_mode != "noop") { |
| 24 deps += [ | 24 deps += [ |
| 25 ":benchmarks_run", |
| 25 ":bot_default_run", | 26 ":bot_default_run", |
| 26 ":benchmarks_run", | |
| 27 ":default_run", | 27 ":default_run", |
| 28 ":mozilla_run", | 28 ":mozilla_run", |
| 29 ":simdjs_run", | 29 ":simdjs_run", |
| 30 "test262:test262_run", | 30 "test262:test262_run", |
| 31 ] | 31 ] |
| 32 } | 32 } |
| 33 } | 33 } |
| 34 | 34 |
| 35 ############################################################################### | 35 ############################################################################### |
| 36 # Test groups | 36 # Test groups |
| (...skipping 10 matching lines...) Expand all Loading... |
| 47 ":message_run", | 47 ":message_run", |
| 48 ":mjsunit_run", | 48 ":mjsunit_run", |
| 49 ":preparser_run", | 49 ":preparser_run", |
| 50 ":unittests_run", | 50 ":unittests_run", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| 53 } | 53 } |
| 54 | 54 |
| 55 v8_isolate_run("bot_default") { | 55 v8_isolate_run("bot_default") { |
| 56 deps = [ | 56 deps = [ |
| 57 ":default_tests", | 57 ":default_tests", |
| 58 ":webkit_run", | 58 ":webkit_run", |
| 59 ] | 59 ] |
| 60 | 60 |
| 61 isolate = "bot_default.isolate" | 61 isolate = "bot_default.isolate" |
| 62 } | 62 } |
| 63 | 63 |
| 64 v8_isolate_run("default") { | 64 v8_isolate_run("default") { |
| 65 deps = [ | 65 deps = [ |
| 66 ":default_tests", | 66 ":default_tests", |
| 67 ] | 67 ] |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 ] | 124 ] |
| 125 | 125 |
| 126 isolate = "cctest/cctest_exe.isolate" | 126 isolate = "cctest/cctest_exe.isolate" |
| 127 } | 127 } |
| 128 | 128 |
| 129 v8_isolate_run("fuzzer") { | 129 v8_isolate_run("fuzzer") { |
| 130 deps = [ | 130 deps = [ |
| 131 "..:v8_simple_json_fuzzer", | 131 "..:v8_simple_json_fuzzer", |
| 132 "..:v8_simple_parser_fuzzer", | 132 "..:v8_simple_parser_fuzzer", |
| 133 "..:v8_simple_regexp_fuzzer", | 133 "..:v8_simple_regexp_fuzzer", |
| 134 "..:v8_simple_wasm_asmjs_fuzzer", |
| 134 "..:v8_simple_wasm_fuzzer", | 135 "..:v8_simple_wasm_fuzzer", |
| 135 "..:v8_simple_wasm_asmjs_fuzzer", | |
| 136 ] | 136 ] |
| 137 | 137 |
| 138 isolate = "fuzzer/fuzzer.isolate" | 138 isolate = "fuzzer/fuzzer.isolate" |
| 139 } | 139 } |
| 140 | 140 |
| 141 v8_isolate_run("intl") { | 141 v8_isolate_run("intl") { |
| 142 deps = [ | 142 deps = [ |
| 143 "..:d8_run", | 143 "..:d8_run", |
| 144 ] | 144 ] |
| 145 | 145 |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 isolate = "unittests/unittests.isolate" | 194 isolate = "unittests/unittests.isolate" |
| 195 } | 195 } |
| 196 | 196 |
| 197 v8_isolate_run("webkit") { | 197 v8_isolate_run("webkit") { |
| 198 deps = [ | 198 deps = [ |
| 199 "..:d8_run", | 199 "..:d8_run", |
| 200 ] | 200 ] |
| 201 | 201 |
| 202 isolate = "webkit/webkit.isolate" | 202 isolate = "webkit/webkit.isolate" |
| 203 } | 203 } |
| OLD | NEW |