| 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") | |
| 7 | 6 |
| 8 group("gn_all") { | 7 group("gn_all") { |
| 9 testonly = true | 8 testonly = true |
| 10 | 9 |
| 11 deps = [ | 10 deps = [ |
| 12 ":default_tests", | 11 ":default_tests", |
| 13 ] | 12 ] |
| 14 | 13 |
| 15 if (host_os != "mac" || !is_android) { | 14 if (host_os != "mac" || !is_android) { |
| 16 # These items don't compile for Android on Mac. | 15 # These items don't compile for Android on Mac. |
| 17 deps += [ | 16 deps += [ |
| 18 "cctest:cctest", | 17 "cctest:cctest", |
| 19 "cctest:generate-bytecode-expectations", | 18 "cctest:generate-bytecode-expectations", |
| 20 "unittests:unittests", | 19 "unittests:unittests", |
| 21 ] | 20 ] |
| 22 } | 21 } |
| 23 | 22 |
| 24 if (v8_enable_inspector_override) { | |
| 25 deps += [ "inspector:inspector-test" ] | |
| 26 } | |
| 27 | |
| 28 if (v8_test_isolation_mode != "noop") { | 23 if (v8_test_isolation_mode != "noop") { |
| 29 deps += [ | 24 deps += [ |
| 30 ":benchmarks_run", | 25 ":benchmarks_run", |
| 31 ":bot_default_run", | 26 ":bot_default_run", |
| 32 ":default_run", | 27 ":default_run", |
| 33 ":mozilla_run", | 28 ":mozilla_run", |
| 34 ":simdjs_run", | 29 ":simdjs_run", |
| 35 "test262:test262_run", | 30 "test262:test262_run", |
| 36 ] | 31 ] |
| 37 } | 32 } |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 isolate = "unittests/unittests.isolate" | 185 isolate = "unittests/unittests.isolate" |
| 191 } | 186 } |
| 192 | 187 |
| 193 v8_isolate_run("webkit") { | 188 v8_isolate_run("webkit") { |
| 194 deps = [ | 189 deps = [ |
| 195 "..:d8_run", | 190 "..:d8_run", |
| 196 ] | 191 ] |
| 197 | 192 |
| 198 isolate = "webkit/webkit.isolate" | 193 isolate = "webkit/webkit.isolate" |
| 199 } | 194 } |
| OLD | NEW |