| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "tools/gn/ninja_toolchain_writer.h" | 5 #include "tools/gn/ninja_toolchain_writer.h" |
| 6 | 6 |
| 7 #include <fstream> | 7 #include <fstream> |
| 8 | 8 |
| 9 #include "base/files/file_util.h" | 9 #include "base/files/file_util.h" |
| 10 #include "base/strings/stringize_macros.h" | 10 #include "base/strings/stringize_macros.h" |
| (...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 const EscapeOptions& options) { | 129 const EscapeOptions& options) { |
| 130 if (pattern.empty()) | 130 if (pattern.empty()) |
| 131 return; | 131 return; |
| 132 out_ << kIndent << name << " = "; | 132 out_ << kIndent << name << " = "; |
| 133 SubstitutionWriter::WriteWithNinjaVariables(pattern, options, out_); | 133 SubstitutionWriter::WriteWithNinjaVariables(pattern, options, out_); |
| 134 out_ << std::endl; | 134 out_ << std::endl; |
| 135 } | 135 } |
| 136 | 136 |
| 137 void NinjaToolchainWriter::WriteSubninjas() { | 137 void NinjaToolchainWriter::WriteSubninjas() { |
| 138 // Write subninja commands for each generated target. | 138 // Write subninja commands for each generated target. |
| 139 for (const auto& target : targets_) { | 139 for (auto* target : targets_) { |
| 140 OutputFile ninja_file(target->settings()->build_settings(), | 140 OutputFile ninja_file(target->settings()->build_settings(), |
| 141 GetNinjaFileForTarget(target)); | 141 GetNinjaFileForTarget(target)); |
| 142 out_ << "subninja "; | 142 out_ << "subninja "; |
| 143 path_output_.WriteFile(out_, ninja_file); | 143 path_output_.WriteFile(out_, ninja_file); |
| 144 out_ << std::endl; | 144 out_ << std::endl; |
| 145 } | 145 } |
| 146 out_ << std::endl; | 146 out_ << std::endl; |
| 147 } | 147 } |
| OLD | NEW |