Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(346)

Side by Side Diff: test/BUILD.gn

Issue 2393863002: [inspector] Add swarming support to inspector tests (Closed)
Patch Set: Detach from dependent patchset Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « infra/mb/mb_config.pyl ('k') | test/bot_default.isolate » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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("//build_overrides/v8.gni") 6 import("//build_overrides/v8.gni")
7 7
8 group("gn_all") { 8 group("gn_all") {
9 testonly = true 9 testonly = true
10 10
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 ":mjsunit_run", 53 ":mjsunit_run",
54 ":preparser_run", 54 ":preparser_run",
55 ":unittests_run", 55 ":unittests_run",
56 ] 56 ]
57 } 57 }
58 } 58 }
59 59
60 v8_isolate_run("bot_default") { 60 v8_isolate_run("bot_default") {
61 deps = [ 61 deps = [
62 ":default_tests", 62 ":default_tests",
63 ":inspector-test_run",
63 ":webkit_run", 64 ":webkit_run",
64 ] 65 ]
65 66
66 isolate = "bot_default.isolate" 67 isolate = "bot_default.isolate"
67 } 68 }
68 69
69 v8_isolate_run("default") { 70 v8_isolate_run("default") {
70 deps = [ 71 deps = [
71 ":default_tests", 72 ":default_tests",
72 ] 73 ]
73 74
74 isolate = "default.isolate" 75 isolate = "default.isolate"
75 } 76 }
76 77
77 v8_isolate_run("optimize_for_size") { 78 v8_isolate_run("optimize_for_size") {
78 deps = [ 79 deps = [
79 ":cctest_run", 80 ":cctest_run",
81 ":inspector-test_run",
80 ":intl_run", 82 ":intl_run",
81 ":mjsunit_run", 83 ":mjsunit_run",
82 ":webkit_run", 84 ":webkit_run",
83 ] 85 ]
84 86
85 isolate = "optimize_for_size.isolate" 87 isolate = "optimize_for_size.isolate"
86 } 88 }
87 89
88 v8_isolate_run("perf") { 90 v8_isolate_run("perf") {
89 deps = [ 91 deps = [
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
127 "..:v8_simple_json_fuzzer", 129 "..:v8_simple_json_fuzzer",
128 "..:v8_simple_parser_fuzzer", 130 "..:v8_simple_parser_fuzzer",
129 "..:v8_simple_regexp_fuzzer", 131 "..:v8_simple_regexp_fuzzer",
130 "..:v8_simple_wasm_asmjs_fuzzer", 132 "..:v8_simple_wasm_asmjs_fuzzer",
131 "..:v8_simple_wasm_fuzzer", 133 "..:v8_simple_wasm_fuzzer",
132 ] 134 ]
133 135
134 isolate = "fuzzer/fuzzer.isolate" 136 isolate = "fuzzer/fuzzer.isolate"
135 } 137 }
136 138
139 v8_isolate_run("inspector-test") {
140 deps = []
141 if (v8_enable_inspector_override) {
142 deps += [ "inspector:inspector-test" ]
143 }
144
145 isolate = "inspector/inspector.isolate"
146 }
147
137 v8_isolate_run("intl") { 148 v8_isolate_run("intl") {
138 deps = [ 149 deps = [
139 "..:d8_run", 150 "..:d8_run",
140 ] 151 ]
141 152
142 isolate = "intl/intl.isolate" 153 isolate = "intl/intl.isolate"
143 } 154 }
144 155
145 v8_isolate_run("message") { 156 v8_isolate_run("message") {
146 deps = [ 157 deps = [
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 isolate = "unittests/unittests.isolate" 201 isolate = "unittests/unittests.isolate"
191 } 202 }
192 203
193 v8_isolate_run("webkit") { 204 v8_isolate_run("webkit") {
194 deps = [ 205 deps = [
195 "..:d8_run", 206 "..:d8_run",
196 ] 207 ]
197 208
198 isolate = "webkit/webkit.isolate" 209 isolate = "webkit/webkit.isolate"
199 } 210 }
OLDNEW
« no previous file with comments | « infra/mb/mb_config.pyl ('k') | test/bot_default.isolate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698