Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: tools/gn/ninja_toolchain_writer.cc

Issue 2105553005: tools/gn: Change auto to not deduce raw pointers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « tools/gn/ninja_target_writer.cc ('k') | tools/gn/ninja_writer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « tools/gn/ninja_target_writer.cc ('k') | tools/gn/ninja_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698