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

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

Issue 1549203002: Switch to standard integer types in tools/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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/substitution_pattern.cc ('k') | tools/gn/substitution_writer_unittest.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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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/substitution_type.h" 5 #include "tools/gn/substitution_type.h"
6 6
7 #include <stddef.h>
7 #include <stdlib.h> 8 #include <stdlib.h>
8 9
9 #include "tools/gn/err.h" 10 #include "tools/gn/err.h"
10 11
11 const char* kSubstitutionNames[SUBSTITUTION_NUM_TYPES] = { 12 const char* kSubstitutionNames[SUBSTITUTION_NUM_TYPES] = {
12 "<<literal>>", // SUBSTITUTION_LITERAL 13 "<<literal>>", // SUBSTITUTION_LITERAL
13 14
14 "{{source}}", // SUBSTITUTION_SOURCE 15 "{{source}}", // SUBSTITUTION_SOURCE
15 "{{output}}", // SUBSTITUTION_OUTPUT 16 "{{output}}", // SUBSTITUTION_OUTPUT
16 17
(...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 if (!IsValidSourceSubstitution(types[i])) { 188 if (!IsValidSourceSubstitution(types[i])) {
188 *err = Err(origin, "Invalid substitution type.", 189 *err = Err(origin, "Invalid substitution type.",
189 "The substitution " + std::string(kSubstitutionNames[i]) + 190 "The substitution " + std::string(kSubstitutionNames[i]) +
190 " isn't valid for something\n" 191 " isn't valid for something\n"
191 "operating on a source file such as this."); 192 "operating on a source file such as this.");
192 return false; 193 return false;
193 } 194 }
194 } 195 }
195 return true; 196 return true;
196 } 197 }
OLDNEW
« no previous file with comments | « tools/gn/substitution_pattern.cc ('k') | tools/gn/substitution_writer_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698