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

Side by Side Diff: test/BUILD.gn

Issue 2189023002: [inspector] add test configuration for the parser test. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: update DEPS Created 4 years, 4 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 | « DEPS ('k') | test/bot_default.gyp » ('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 6
7 group("gn_all") { 7 group("gn_all") {
8 testonly = true 8 testonly = true
9 9
10 deps = [ 10 deps = [
(...skipping 26 matching lines...) Expand all
37 # Test groups 37 # Test groups
38 # 38 #
39 39
40 group("default_tests") { 40 group("default_tests") {
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_protocol_parser_test_run",
47 ":intl_run", 48 ":intl_run",
48 ":message_run", 49 ":message_run",
49 ":mjsunit_run", 50 ":mjsunit_run",
50 ":preparser_run", 51 ":preparser_run",
51 ":unittests_run", 52 ":unittests_run",
52 ] 53 ]
53 } 54 }
54 } 55 }
55 56
56 v8_isolate_run("bot_default") { 57 v8_isolate_run("bot_default") {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
132 "..:v8_simple_json_fuzzer", 133 "..:v8_simple_json_fuzzer",
133 "..:v8_simple_parser_fuzzer", 134 "..:v8_simple_parser_fuzzer",
134 "..:v8_simple_regexp_fuzzer", 135 "..:v8_simple_regexp_fuzzer",
135 "..:v8_simple_wasm_asmjs_fuzzer", 136 "..:v8_simple_wasm_asmjs_fuzzer",
136 "..:v8_simple_wasm_fuzzer", 137 "..:v8_simple_wasm_fuzzer",
137 ] 138 ]
138 139
139 isolate = "fuzzer/fuzzer.isolate" 140 isolate = "fuzzer/fuzzer.isolate"
140 } 141 }
141 142
143 v8_isolate_run("inspector_protocol_parser_test") {
144 deps = [
145 "inspector_protocol_parser_test:inspector_protocol_parser_test",
146 ]
147
148 isolate = "inspector_protocol_parser_test/inspector_protocol_parser_test.isola te"
149 }
150
142 v8_isolate_run("intl") { 151 v8_isolate_run("intl") {
143 deps = [ 152 deps = [
144 "..:d8_run", 153 "..:d8_run",
145 ] 154 ]
146 155
147 isolate = "intl/intl.isolate" 156 isolate = "intl/intl.isolate"
148 } 157 }
149 158
150 v8_isolate_run("message") { 159 v8_isolate_run("message") {
151 deps = [ 160 deps = [
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
195 isolate = "unittests/unittests.isolate" 204 isolate = "unittests/unittests.isolate"
196 } 205 }
197 206
198 v8_isolate_run("webkit") { 207 v8_isolate_run("webkit") {
199 deps = [ 208 deps = [
200 "..:d8_run", 209 "..:d8_run",
201 ] 210 ]
202 211
203 isolate = "webkit/webkit.isolate" 212 isolate = "webkit/webkit.isolate"
204 } 213 }
OLDNEW
« no previous file with comments | « DEPS ('k') | test/bot_default.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698