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

Unified Diff: tools/gn/variables.cc

Issue 164773005: Pull GN @ 252040, update calls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: long line Created 6 years, 10 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 | « tools/gn/secondary/tools/grit/grit_rule.gni ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/variables.cc
diff --git a/tools/gn/variables.cc b/tools/gn/variables.cc
index 4182c20f9496b67b229a56c01f198b0ad604ea1e..782109f613dab967c8dcf59e8661fa908e7d6cb2 100644
--- a/tools/gn/variables.cc
+++ b/tools/gn/variables.cc
@@ -183,7 +183,7 @@ const char kRootOutDir_Help[] =
"\n"
" custom(\"myscript\") {\n"
" # Pass the output dir to the script.\n"
- " args = [ \"-o\", rebase_path(root_out_dir, \".\", root_build_dir) ]\n"
+ " args = [ \"-o\", rebase_path(root_out_dir, root_build_dir) ]\n"
" }\n";
const char kTargetGenDir[] = "target_gen_dir";
@@ -208,7 +208,7 @@ const char kTargetGenDir_Help[] =
"\n"
" custom(\"myscript\") {\n"
" # Pass the generated output dir to the script.\n"
- " args = [ \"-o\", rebase_path(target_gen_dir, \".\", root_build_dir) ]"
+ " args = [ \"-o\", rebase_path(target_gen_dir, root_build_dir) ]"
"\n"
" }\n";
@@ -234,7 +234,7 @@ const char kTargetOutDir_Help[] =
"\n"
" custom(\"myscript\") {\n"
" # Pass the output dir to the script.\n"
- " args = [ \"-o\", rebase_path(target_out_dir, \".\", root_build_dir) ]"
+ " args = [ \"-o\", rebase_path(target_out_dir, root_build_dir) ]"
"\n"
" }\n";
« no previous file with comments | « tools/gn/secondary/tools/grit/grit_rule.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698