Home | History | Annotate | Download | only in gn

Lines Matching defs:outputs

82   // Action outputs don't depend on the current toolchain so we can skip adding
127 const Target::FileList& outputs = target_->action_values().outputs();
128 if (outputs.empty()) {
129 *err_ = Err(function_call_, "Action has no outputs.",
130 "If you have no outputs, the build system can not tell when your\n"
136 // Make sure the outputs for an action have no patterns in them.
137 if (FileListHasPattern(outputs)) {
139 "An action target should have the outputs completely specified. If\n"
145 // A foreach target should always have a pattern in the outputs.
146 if (!FileListHasPattern(outputs)) {