| 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("../gni/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 |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 testonly = true | 45 testonly = true |
| 46 | 46 |
| 47 if (v8_test_isolation_mode != "noop") { | 47 if (v8_test_isolation_mode != "noop") { |
| 48 deps = [ | 48 deps = [ |
| 49 ":cctest_run", | 49 ":cctest_run", |
| 50 ":fuzzer_run", | 50 ":fuzzer_run", |
| 51 ":inspector-test_run", | 51 ":inspector-test_run", |
| 52 ":intl_run", | 52 ":intl_run", |
| 53 ":message_run", | 53 ":message_run", |
| 54 ":mjsunit_run", | 54 ":mjsunit_run", |
| 55 ":mksnapshot_run", |
| 55 ":preparser_run", | 56 ":preparser_run", |
| 56 ":unittests_run", | 57 ":unittests_run", |
| 57 ] | 58 ] |
| 58 } | 59 } |
| 59 } | 60 } |
| 60 | 61 |
| 61 v8_isolate_run("bot_default") { | 62 v8_isolate_run("bot_default") { |
| 62 deps = [ | 63 deps = [ |
| 63 ":default_tests", | 64 ":default_tests", |
| 64 ":webkit_run", | 65 ":webkit_run", |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 162 } | 163 } |
| 163 | 164 |
| 164 v8_isolate_run("mjsunit") { | 165 v8_isolate_run("mjsunit") { |
| 165 deps = [ | 166 deps = [ |
| 166 "..:d8_run", | 167 "..:d8_run", |
| 167 ] | 168 ] |
| 168 | 169 |
| 169 isolate = "mjsunit/mjsunit.isolate" | 170 isolate = "mjsunit/mjsunit.isolate" |
| 170 } | 171 } |
| 171 | 172 |
| 173 v8_isolate_run("mksnapshot") { |
| 174 deps = [ |
| 175 ] |
| 176 |
| 177 isolate = "mksnapshot/mksnapshot.isolate" |
| 178 } |
| 179 |
| 172 v8_isolate_run("mozilla") { | 180 v8_isolate_run("mozilla") { |
| 173 deps = [ | 181 deps = [ |
| 174 "..:d8_run", | 182 "..:d8_run", |
| 175 ] | 183 ] |
| 176 | 184 |
| 177 isolate = "mozilla/mozilla.isolate" | 185 isolate = "mozilla/mozilla.isolate" |
| 178 } | 186 } |
| 179 | 187 |
| 180 v8_isolate_run("preparser") { | 188 v8_isolate_run("preparser") { |
| 181 deps = [ | 189 deps = [ |
| (...skipping 19 matching lines...) Expand all Loading... |
| 201 isolate = "unittests/unittests.isolate" | 209 isolate = "unittests/unittests.isolate" |
| 202 } | 210 } |
| 203 | 211 |
| 204 v8_isolate_run("webkit") { | 212 v8_isolate_run("webkit") { |
| 205 deps = [ | 213 deps = [ |
| 206 "..:d8_run", | 214 "..:d8_run", |
| 207 ] | 215 ] |
| 208 | 216 |
| 209 isolate = "webkit/webkit.isolate" | 217 isolate = "webkit/webkit.isolate" |
| 210 } | 218 } |
| OLD | NEW |