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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/BUILD.gn
diff --git a/tools/BUILD.gn b/tools/BUILD.gn
index 35d4f5f197e71c5177cc8b8f4b04f57690c656ae..4f97777a6ae17a5951fa51e921631c793a913e38 100644
--- a/tools/BUILD.gn
+++ b/tools/BUILD.gn
@@ -9,16 +9,16 @@ group("gn_all") {
if (v8_test_isolation_mode != "noop") {
deps = [
- ":check_static_initializers_run",
+ ":check-static-initializers_run",
":jsfunfuzz_run",
- ":run_deopt_fuzzer_run",
- ":run_gcmole_run",
- ":run_valgrind_run",
+ ":run-deopt-fuzzer_run",
+ ":run-gcmole_run",
+ ":run-valgrind_run",
]
}
}
-v8_isolate_run("check_static_initializers") {
+v8_isolate_run("check-static-initializers") {
deps = [
"..:d8_run",
]
@@ -34,7 +34,7 @@ v8_isolate_run("jsfunfuzz") {
isolate = "jsfunfuzz/jsfunfuzz.isolate"
}
-v8_isolate_run("run_deopt_fuzzer") {
+v8_isolate_run("run-deopt-fuzzer") {
deps = [
"..:d8_run",
]
@@ -42,7 +42,7 @@ v8_isolate_run("run_deopt_fuzzer") {
isolate = "run-deopt-fuzzer.isolate"
}
-v8_isolate_run("run_gcmole") {
+v8_isolate_run("run-gcmole") {
deps = [
"..:d8_run",
]
@@ -50,7 +50,7 @@ v8_isolate_run("run_gcmole") {
isolate = "gcmole/run-gcmole.isolate"
}
-v8_isolate_run("run_valgrind") {
+v8_isolate_run("run-valgrind") {
deps = [
"..:d8_run",
]
« 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