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