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

Side by Side Diff: test/BUILD.gn

Issue 2474863002: Add inspector tests to default tests to run locally. (Closed)
Patch Set: address comments Created 4 years, 1 month 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 | « no previous file | test/default.gyp » ('j') | tools/run-tests.py » ('J')
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 30 matching lines...) Expand all
41 # Test groups 41 # Test groups
42 # 42 #
43 43
44 group("default_tests") { 44 group("default_tests") {
45 testonly = true 45 testonly = true
46 46
47 if (v8_test_isolation_mode != "noop") { 47 if (v8_test_isolation_mode != "noop") {
48 deps = [ 48 deps = [
49 ":cctest_run", 49 ":cctest_run",
50 ":fuzzer_run", 50 ":fuzzer_run",
51 ":inspector-test_run",
51 ":intl_run", 52 ":intl_run",
52 ":message_run", 53 ":message_run",
53 ":mjsunit_run", 54 ":mjsunit_run",
54 ":preparser_run", 55 ":preparser_run",
55 ":unittests_run", 56 ":unittests_run",
56 ] 57 ]
57 } 58 }
58 } 59 }
59 60
60 v8_isolate_run("bot_default") { 61 v8_isolate_run("bot_default") {
61 deps = [ 62 deps = [
62 ":default_tests", 63 ":default_tests",
63 ":inspector-test_run",
64 ":webkit_run", 64 ":webkit_run",
65 ] 65 ]
66 66
67 isolate = "bot_default.isolate" 67 isolate = "bot_default.isolate"
68 } 68 }
69 69
70 v8_isolate_run("default") { 70 v8_isolate_run("default") {
71 deps = [ 71 deps = [
72 ":default_tests", 72 ":default_tests",
73 ] 73 ]
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 isolate = "unittests/unittests.isolate" 201 isolate = "unittests/unittests.isolate"
202 } 202 }
203 203
204 v8_isolate_run("webkit") { 204 v8_isolate_run("webkit") {
205 deps = [ 205 deps = [
206 "..:d8_run", 206 "..:d8_run",
207 ] 207 ]
208 208
209 isolate = "webkit/webkit.isolate" 209 isolate = "webkit/webkit.isolate"
210 } 210 }
OLDNEW
« no previous file with comments | « no previous file | test/default.gyp » ('j') | tools/run-tests.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698