Chromium Code Reviews| 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 30 matching lines...) Expand all Loading... | |
| 41 testonly = true | 41 testonly = true |
| 42 | 42 |
| 43 if (v8_test_isolation_mode != "noop") { | 43 if (v8_test_isolation_mode != "noop") { |
| 44 deps = [ | 44 deps = [ |
| 45 ":cctest_run", | 45 ":cctest_run", |
| 46 ":fuzzer_run", | 46 ":fuzzer_run", |
| 47 ":inspector-test_run", | 47 ":inspector-test_run", |
| 48 ":intl_run", | 48 ":intl_run", |
| 49 ":message_run", | 49 ":message_run", |
| 50 ":mjsunit_run", | 50 ":mjsunit_run", |
| 51 ":mkgrokdump_run", | |
|
Michael Achenbach
2017/04/12 12:39:12
See build failure: I assume :mkgrokdump_run can be
| |
| 51 ":preparser_run", | 52 ":preparser_run", |
| 52 ":unittests_run", | 53 ":unittests_run", |
| 53 ] | 54 ] |
| 54 } | 55 } |
| 55 } | 56 } |
| 56 | 57 |
| 57 v8_isolate_run("bot_default") { | 58 v8_isolate_run("bot_default") { |
| 58 deps = [ | 59 deps = [ |
| 59 ":default_tests", | 60 ":default_tests", |
| 60 ":webkit_run", | 61 ":webkit_run", |
| (...skipping 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 141 } | 142 } |
| 142 | 143 |
| 143 v8_isolate_run("intl") { | 144 v8_isolate_run("intl") { |
| 144 deps = [ | 145 deps = [ |
| 145 "..:d8_run", | 146 "..:d8_run", |
| 146 ] | 147 ] |
| 147 | 148 |
| 148 isolate = "intl/intl.isolate" | 149 isolate = "intl/intl.isolate" |
| 149 } | 150 } |
| 150 | 151 |
| 151 v8_isolate_run("message") { | 152 v8_isolate_run("message") { |
|
Michael Achenbach
2017/04/12 12:33:42
You might need an entry v8_isolate_run for this to
| |
| 152 deps = [ | 153 deps = [ |
| 153 "..:d8_run", | 154 "..:d8_run", |
| 154 ] | 155 ] |
| 155 | 156 |
| 156 isolate = "message/message.isolate" | 157 isolate = "message/message.isolate" |
| 157 } | 158 } |
| 158 | 159 |
| 159 v8_isolate_run("mjsunit") { | 160 v8_isolate_run("mjsunit") { |
| 160 deps = [ | 161 deps = [ |
| 161 "..:d8_run", | 162 "..:d8_run", |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 188 isolate = "unittests/unittests.isolate" | 189 isolate = "unittests/unittests.isolate" |
| 189 } | 190 } |
| 190 | 191 |
| 191 v8_isolate_run("webkit") { | 192 v8_isolate_run("webkit") { |
| 192 deps = [ | 193 deps = [ |
| 193 "..:d8_run", | 194 "..:d8_run", |
| 194 ] | 195 ] |
| 195 | 196 |
| 196 isolate = "webkit/webkit.isolate" | 197 isolate = "webkit/webkit.isolate" |
| 197 } | 198 } |
| OLD | NEW |