| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |