| 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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 } | 64 } |
| 65 | 65 |
| 66 v8_isolate_run("default") { | 66 v8_isolate_run("default") { |
| 67 deps = [ | 67 deps = [ |
| 68 ":default_tests", | 68 ":default_tests", |
| 69 ] | 69 ] |
| 70 | 70 |
| 71 isolate = "default.isolate" | 71 isolate = "default.isolate" |
| 72 } | 72 } |
| 73 | 73 |
| 74 v8_isolate_run("ignition") { | |
| 75 deps = [ | |
| 76 ":cctest_run", | |
| 77 ":mjsunit_run", | |
| 78 ] | |
| 79 | |
| 80 isolate = "ignition.isolate" | |
| 81 } | |
| 82 | |
| 83 v8_isolate_run("optimize_for_size") { | 74 v8_isolate_run("optimize_for_size") { |
| 84 deps = [ | 75 deps = [ |
| 85 ":cctest_run", | 76 ":cctest_run", |
| 86 ":intl_run", | 77 ":intl_run", |
| 87 ":mjsunit_run", | 78 ":mjsunit_run", |
| 88 ":webkit_run", | 79 ":webkit_run", |
| 89 ] | 80 ] |
| 90 | 81 |
| 91 isolate = "optimize_for_size.isolate" | 82 isolate = "optimize_for_size.isolate" |
| 92 } | 83 } |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 isolate = "unittests/unittests.isolate" | 195 isolate = "unittests/unittests.isolate" |
| 205 } | 196 } |
| 206 | 197 |
| 207 v8_isolate_run("webkit") { | 198 v8_isolate_run("webkit") { |
| 208 deps = [ | 199 deps = [ |
| 209 "..:d8_run", | 200 "..:d8_run", |
| 210 ] | 201 ] |
| 211 | 202 |
| 212 isolate = "webkit/webkit.isolate" | 203 isolate = "webkit/webkit.isolate" |
| 213 } | 204 } |
| OLD | NEW |