| 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("../gni/v8.gni") |
| 7 | 7 |
| 8 group("gn_all") { | 8 group("gn_all") { |
| 9 testonly = true | 9 testonly = true |
| 10 | 10 |
| 11 deps = [ | 11 deps = [ |
| 12 ":default_tests", | 12 ":default_tests", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 if (host_os != "mac" || !is_android) { | 15 if (host_os != "mac" || !is_android) { |
| 16 # These items don't compile for Android on Mac. | 16 # These items don't compile for Android on Mac. |
| 17 deps += [ | 17 deps += [ |
| 18 "cctest:cctest", | 18 "cctest:cctest", |
| 19 "cctest:generate-bytecode-expectations", | 19 "cctest:generate-bytecode-expectations", |
| 20 "unittests:unittests", | 20 "unittests:unittests", |
| 21 ] | 21 ] |
| 22 } | 22 } |
| 23 | 23 |
| 24 if (v8_enable_inspector_override) { | 24 if (v8_enable_inspector) { |
| 25 deps += [ "inspector:inspector-test" ] | 25 deps += [ "inspector:inspector-test" ] |
| 26 } | 26 } |
| 27 | 27 |
| 28 if (v8_test_isolation_mode != "noop") { | 28 if (v8_test_isolation_mode != "noop") { |
| 29 deps += [ | 29 deps += [ |
| 30 ":benchmarks_run", | 30 ":benchmarks_run", |
| 31 ":bot_default_run", | 31 ":bot_default_run", |
| 32 ":default_run", | 32 ":default_run", |
| 33 ":mozilla_run", | 33 ":mozilla_run", |
| 34 ":simdjs_run", | 34 ":simdjs_run", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 131 "..:v8_simple_regexp_fuzzer", | 131 "..:v8_simple_regexp_fuzzer", |
| 132 "..:v8_simple_wasm_asmjs_fuzzer", | 132 "..:v8_simple_wasm_asmjs_fuzzer", |
| 133 "..:v8_simple_wasm_fuzzer", | 133 "..:v8_simple_wasm_fuzzer", |
| 134 ] | 134 ] |
| 135 | 135 |
| 136 isolate = "fuzzer/fuzzer.isolate" | 136 isolate = "fuzzer/fuzzer.isolate" |
| 137 } | 137 } |
| 138 | 138 |
| 139 v8_isolate_run("inspector-test") { | 139 v8_isolate_run("inspector-test") { |
| 140 deps = [] | 140 deps = [] |
| 141 if (v8_enable_inspector_override) { | 141 if (v8_enable_inspector) { |
| 142 deps += [ "inspector:inspector-test" ] | 142 deps += [ "inspector:inspector-test" ] |
| 143 } | 143 } |
| 144 | 144 |
| 145 isolate = "inspector/inspector.isolate" | 145 isolate = "inspector/inspector.isolate" |
| 146 } | 146 } |
| 147 | 147 |
| 148 v8_isolate_run("intl") { | 148 v8_isolate_run("intl") { |
| 149 deps = [ | 149 deps = [ |
| 150 "..:d8_run", | 150 "..:d8_run", |
| 151 ] | 151 ] |
| (...skipping 49 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 |