| 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 |
| 11 deps = [ | 11 deps = [ |
| 12 ":default_tests", | 12 ":default_tests", |
| 13 "inspector:inspector-test", | 13 "inspector:inspector-test", |
| 14 "mkgrokdump:mkgrokdump", |
| 14 ] | 15 ] |
| 15 | 16 |
| 16 if (host_os != "mac" || !is_android) { | 17 if (host_os != "mac" || !is_android) { |
| 17 # These items don't compile for Android on Mac. | 18 # These items don't compile for Android on Mac. |
| 18 deps += [ | 19 deps += [ |
| 19 "cctest:cctest", | 20 "cctest:cctest", |
| 20 "cctest:generate-bytecode-expectations", | 21 "cctest:generate-bytecode-expectations", |
| 21 "unittests:unittests", | 22 "unittests:unittests", |
| 22 ] | 23 ] |
| 23 } | 24 } |
| (...skipping 17 matching lines...) Expand all Loading... |
| 41 testonly = true | 42 testonly = true |
| 42 | 43 |
| 43 if (v8_test_isolation_mode != "noop") { | 44 if (v8_test_isolation_mode != "noop") { |
| 44 deps = [ | 45 deps = [ |
| 45 ":cctest_run", | 46 ":cctest_run", |
| 46 ":fuzzer_run", | 47 ":fuzzer_run", |
| 47 ":inspector-test_run", | 48 ":inspector-test_run", |
| 48 ":intl_run", | 49 ":intl_run", |
| 49 ":message_run", | 50 ":message_run", |
| 50 ":mjsunit_run", | 51 ":mjsunit_run", |
| 52 ":mkgrokdump_run", |
| 51 ":preparser_run", | 53 ":preparser_run", |
| 52 ":unittests_run", | 54 ":unittests_run", |
| 53 ] | 55 ] |
| 54 } | 56 } |
| 55 } | 57 } |
| 56 | 58 |
| 57 v8_isolate_run("bot_default") { | 59 v8_isolate_run("bot_default") { |
| 58 deps = [ | 60 deps = [ |
| 59 ":default_tests", | 61 ":default_tests", |
| 60 ":webkit_run", | 62 ":webkit_run", |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 } | 159 } |
| 158 | 160 |
| 159 v8_isolate_run("mjsunit") { | 161 v8_isolate_run("mjsunit") { |
| 160 deps = [ | 162 deps = [ |
| 161 "..:d8_run", | 163 "..:d8_run", |
| 162 ] | 164 ] |
| 163 | 165 |
| 164 isolate = "mjsunit/mjsunit.isolate" | 166 isolate = "mjsunit/mjsunit.isolate" |
| 165 } | 167 } |
| 166 | 168 |
| 169 v8_isolate_run("mkgrokdump") { |
| 170 deps = [ |
| 171 "mkgrokdump:mkgrokdump", |
| 172 ] |
| 173 |
| 174 isolate = "mkgrokdump/mkgrokdump.isolate" |
| 175 } |
| 176 |
| 167 v8_isolate_run("mozilla") { | 177 v8_isolate_run("mozilla") { |
| 168 deps = [ | 178 deps = [ |
| 169 "..:d8_run", | 179 "..:d8_run", |
| 170 ] | 180 ] |
| 171 | 181 |
| 172 isolate = "mozilla/mozilla.isolate" | 182 isolate = "mozilla/mozilla.isolate" |
| 173 } | 183 } |
| 174 | 184 |
| 175 v8_isolate_run("preparser") { | 185 v8_isolate_run("preparser") { |
| 176 deps = [ | 186 deps = [ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 188 isolate = "unittests/unittests.isolate" | 198 isolate = "unittests/unittests.isolate" |
| 189 } | 199 } |
| 190 | 200 |
| 191 v8_isolate_run("webkit") { | 201 v8_isolate_run("webkit") { |
| 192 deps = [ | 202 deps = [ |
| 193 "..:d8_run", | 203 "..:d8_run", |
| 194 ] | 204 ] |
| 195 | 205 |
| 196 isolate = "webkit/webkit.isolate" | 206 isolate = "webkit/webkit.isolate" |
| 197 } | 207 } |
| OLD | NEW |