Home | History | Annotate | Download | only in gn

Lines Matching refs:out_

96     out_ << kSubstitutionNinjaNames[SUBSTITUTION_DEFINES] << " =";
98 target_, &ConfigValues::defines, DefineWriter(), out_);
99 out_ << std::endl;
104 out_ << kSubstitutionNinjaNames[SUBSTITUTION_INCLUDE_DIRS] << " =";
109 IncludeWriter(include_path_output), out_);
110 out_ << std::endl;
117 out_ << kSubstitutionNinjaNames[subst_enum] << " ="; \
119 flag_escape_options, out_); \
120 out_ << std::endl; \
152 out_ << "build";
153 path_output_.WriteFiles(out_, tool_outputs);
154 out_ << ": " << rule_prefix << Toolchain::ToolTypeToName(tool_type);
155 out_ << " ";
156 path_output_.WriteFile(out_, sources[i]);
182 out_ << " || ";
183 path_output_.WriteFile(out_, input_dep);
185 out_ << std::endl;
192 out_ << std::endl;
201 out_ << "build";
202 path_output_.WriteFiles(out_, output_files);
204 out_ << ": "
216 out_ << " ";
217 path_output_.WriteFile(out_, object_files[i]);
220 out_ << " ";
221 path_output_.WriteFile(out_, extra_object_files[i]);
243 out_ << " ";
244 path_output_.WriteFile(out_, cur->link_output_file());
250 out_ << " |";
251 path_output_.WriteFiles(out_, implicit_deps);
270 out_ << std::endl;
280 out_ << " ldflags =";
285 flag_options, out_);
296 out_ << " " << tool_->lib_dir_switch();
297 lib_path_output.WriteDir(out_, all_lib_dirs[i],
301 out_ << std::endl;
305 out_ << " libs =";
316 out_ << " -framework ";
317 EscapeStringToStream(out_,
321 out_ << " " << tool_->lib_switch();
322 EscapeStringToStream(out_, all_libs[i], lib_escape_opts);
325 out_ << std::endl;
329 out_ << " output_extension = ";
332 out_ << tool_->default_output_extension();
336 out_ << "." << target_->output_extension();
338 out_ << std::endl;
346 out_ << " solibs =";
347 path_output_.WriteFiles(out_, solibs);
348 out_ << std::endl;
446 out_ << " ||";
450 out_ << " ";
452 out_, non_linkable_deps[i]->dependency_output_file());