summaryrefslogtreecommitdiffstats
path: root/tools/gn/target.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tools/gn/target.cc')
-rw-r--r--tools/gn/target.cc6
1 files changed, 4 insertions, 2 deletions
diff --git a/tools/gn/target.cc b/tools/gn/target.cc
index 635c50e..56b140f 100644
--- a/tools/gn/target.cc
+++ b/tools/gn/target.cc
@@ -76,8 +76,10 @@ const char* Target::GetStringForOutputType(OutputType type) {
return "Static library";
case COPY_FILES:
return "Copy";
- case CUSTOM:
- return "Custom";
+ case ACTION:
+ return "Action";
+ case ACTION_FOREACH:
+ return "ActionForEach";
default:
return "";
}