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

Unified Diff: tools/gn/command_refs.cc

Issue 895433002: gn: Use the term 'out_dir' consistently when referring to the output directory. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: build_dir Created 5 years, 11 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/command_ls.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/command_refs.cc
diff --git a/tools/gn/command_refs.cc b/tools/gn/command_refs.cc
index 39f8c10fae99bbbce6c0bed3ed8049a691c0ede1..d75ca505136f3d7451530eb688250be404883864 100644
--- a/tools/gn/command_refs.cc
+++ b/tools/gn/command_refs.cc
@@ -204,7 +204,7 @@ const char kRefs[] = "refs";
const char kRefs_HelpShort[] =
"refs: Find stuff referencing a target or file.";
const char kRefs_Help[] =
- "gn refs <build_dir> (<label_pattern>|<file>) [--files] [--tree] [--all]\n"
+ "gn refs <out_dir> (<label_pattern>|<file>) [--files] [--tree] [--all]\n"
" [--all-toolchains]\n"
"\n"
" Finds reverse dependencies (which targets reference something). The\n"
@@ -282,7 +282,7 @@ const char kRefs_Help[] =
int RunRefs(const std::vector<std::string>& args) {
if (args.size() != 2) {
Err(Location(), "You're holding it wrong.",
- "Usage: \"gn refs <build_dir> (<label_pattern>|<file>)\"")
+ "Usage: \"gn refs <out_dir> (<label_pattern>|<file>)\"")
.PrintToStdout();
return 1;
}
« no previous file with comments | « tools/gn/command_ls.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698