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 |
| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 188 isolate = "unittests/unittests.isolate" | 190 isolate = "unittests/unittests.isolate" |
| 189 } | 191 } |
| 190 | 192 |
| 191 v8_isolate_run("webkit") { | 193 v8_isolate_run("webkit") { |
| 192 deps = [ | 194 deps = [ |
| 193 "..:d8_run", | 195 "..:d8_run", |
| 194 ] | 196 ] |
| 195 | 197 |
| 196 isolate = "webkit/webkit.isolate" | 198 isolate = "webkit/webkit.isolate" |
| 197 } | 199 } |
| 200 | |
| 201 v8_isolate_run("mkgrokdump") { | |
|
Michael Achenbach
2017/04/13 12:12:34
nit: The others are somewhat alpha sorted. Maybe m
| |
| 202 deps = [ | |
| 203 "mkgrokdump:mkgrokdump", | |
| 204 ] | |
| 205 | |
| 206 isolate = "mkgrokdump/mkgrokdump.isolate" | |
| 207 } | |
| OLD | NEW |