Home | History | Annotate | Download | only in gn

Lines Matching refs:out_

69       out_(out),
105 out_ << "rule gn\n";
106 out_ << " command = " << GetSelfInvocationCommand(build_settings_) << "\n";
107 out_ << " description = GN the world\n\n";
109 out_ << "build build.ninja: gn";
117 out_ << " " << EscapeString(FilePathToUTF8(input_files[i]), ninja_options);
122 out_ << " ";
123 path_output_.WriteFile(out_, other_files[i]);
126 out_ << std::endl << std::endl;
131 out_ << "subninja ";
132 path_output_.WriteFile(out_,
134 out_ << std::endl;
136 out_ << std::endl;
151 out_ << "build " << target->label().name() << ": phony ";
152 path_output_.WriteFile(out_, target_file);
153 out_ << std::endl;
162 out_ << "\nbuild all: phony " << all_rules << std::endl;
163 out_ << "default all" << std::endl;