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

Side by Side Diff: tools/BUILD.gn

Issue 2045543002: [gn] Fix gn targets for tools (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | no next file » | 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 if (v8_test_isolation_mode != "noop") { 10 if (v8_test_isolation_mode != "noop") {
11 deps = [ 11 deps = [
12 ":check_static_initializers_run", 12 ":check-static-initializers_run",
13 ":jsfunfuzz_run", 13 ":jsfunfuzz_run",
14 ":run_deopt_fuzzer_run", 14 ":run-deopt-fuzzer_run",
15 ":run_gcmole_run", 15 ":run-gcmole_run",
16 ":run_valgrind_run", 16 ":run-valgrind_run",
17 ] 17 ]
18 } 18 }
19 } 19 }
20 20
21 v8_isolate_run("check_static_initializers") { 21 v8_isolate_run("check-static-initializers") {
22 deps = [ 22 deps = [
23 "..:d8_run", 23 "..:d8_run",
24 ] 24 ]
25 25
26 isolate = "check-static-initializers.isolate" 26 isolate = "check-static-initializers.isolate"
27 } 27 }
28 28
29 v8_isolate_run("jsfunfuzz") { 29 v8_isolate_run("jsfunfuzz") {
30 deps = [ 30 deps = [
31 "..:d8_run", 31 "..:d8_run",
32 ] 32 ]
33 33
34 isolate = "jsfunfuzz/jsfunfuzz.isolate" 34 isolate = "jsfunfuzz/jsfunfuzz.isolate"
35 } 35 }
36 36
37 v8_isolate_run("run_deopt_fuzzer") { 37 v8_isolate_run("run-deopt-fuzzer") {
38 deps = [ 38 deps = [
39 "..:d8_run", 39 "..:d8_run",
40 ] 40 ]
41 41
42 isolate = "run-deopt-fuzzer.isolate" 42 isolate = "run-deopt-fuzzer.isolate"
43 } 43 }
44 44
45 v8_isolate_run("run_gcmole") { 45 v8_isolate_run("run-gcmole") {
46 deps = [ 46 deps = [
47 "..:d8_run", 47 "..:d8_run",
48 ] 48 ]
49 49
50 isolate = "gcmole/run-gcmole.isolate" 50 isolate = "gcmole/run-gcmole.isolate"
51 } 51 }
52 52
53 v8_isolate_run("run_valgrind") { 53 v8_isolate_run("run-valgrind") {
54 deps = [ 54 deps = [
55 "..:d8_run", 55 "..:d8_run",
56 ] 56 ]
57 57
58 isolate = "run-valgrind.isolate" 58 isolate = "run-valgrind.isolate"
59 } 59 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698