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 #ifndef TOOLS_GN_VARIABLES_H_ | 5 #ifndef TOOLS_GN_VARIABLES_H_ |
6 #define TOOLS_GN_VARIABLES_H_ | 6 #define TOOLS_GN_VARIABLES_H_ |
7 | 7 |
8 #include <map> | 8 #include <map> |
9 | 9 |
10 #include "base/strings/string_piece.h" | 10 #include "base/strings/string_piece.h" |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 extern const char* kCflagsCC_Help; | 96 extern const char* kCflagsCC_Help; |
97 | 97 |
98 extern const char kCflagsObjC[]; | 98 extern const char kCflagsObjC[]; |
99 extern const char kCflagsObjC_HelpShort[]; | 99 extern const char kCflagsObjC_HelpShort[]; |
100 extern const char* kCflagsObjC_Help; | 100 extern const char* kCflagsObjC_Help; |
101 | 101 |
102 extern const char kCflagsObjCC[]; | 102 extern const char kCflagsObjCC[]; |
103 extern const char kCflagsObjCC_HelpShort[]; | 103 extern const char kCflagsObjCC_HelpShort[]; |
104 extern const char* kCflagsObjCC_Help; | 104 extern const char* kCflagsObjCC_Help; |
105 | 105 |
| 106 extern const char kCflagsPCHC[]; |
| 107 extern const char kCflagsPCHC_HelpShort[]; |
| 108 extern const char* kCflagsPCHC_Help; |
| 109 |
| 110 extern const char kCflagsPCHCC[]; |
| 111 extern const char kCflagsPCHCC_HelpShort[]; |
| 112 extern const char* kCflagsPCHCC_Help; |
| 113 |
| 114 extern const char kCflagsPCHObjC[]; |
| 115 extern const char kCflagsPCHObjC_HelpShort[]; |
| 116 extern const char* kCflagsPCHObjC_Help; |
| 117 |
| 118 extern const char kCflagsPCHObjCC[]; |
| 119 extern const char kCflagsPCHObjCC_HelpShort[]; |
| 120 extern const char* kCflagsPCHObjCC_Help; |
| 121 |
106 extern const char kCheckIncludes[]; | 122 extern const char kCheckIncludes[]; |
107 extern const char kCheckIncludes_HelpShort[]; | 123 extern const char kCheckIncludes_HelpShort[]; |
108 extern const char kCheckIncludes_Help[]; | 124 extern const char kCheckIncludes_Help[]; |
109 | 125 |
110 extern const char kCompleteStaticLib[]; | 126 extern const char kCompleteStaticLib[]; |
111 extern const char kCompleteStaticLib_HelpShort[]; | 127 extern const char kCompleteStaticLib_HelpShort[]; |
112 extern const char kCompleteStaticLib_Help[]; | 128 extern const char kCompleteStaticLib_Help[]; |
113 | 129 |
114 extern const char kConfigs[]; | 130 extern const char kConfigs[]; |
115 extern const char kConfigs_HelpShort[]; | 131 extern const char kConfigs_HelpShort[]; |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
224 // Note: this is used only for help so this getter is not threadsafe. | 240 // Note: this is used only for help so this getter is not threadsafe. |
225 const VariableInfoMap& GetBuiltinVariables(); | 241 const VariableInfoMap& GetBuiltinVariables(); |
226 | 242 |
227 // Returns the variables used by target generators. | 243 // Returns the variables used by target generators. |
228 // Note: this is used only for help so this getter is not threadsafe. | 244 // Note: this is used only for help so this getter is not threadsafe. |
229 const VariableInfoMap& GetTargetVariables(); | 245 const VariableInfoMap& GetTargetVariables(); |
230 | 246 |
231 } // namespace variables | 247 } // namespace variables |
232 | 248 |
233 #endif // TOOLS_GN_VARIABLES_H_ | 249 #endif // TOOLS_GN_VARIABLES_H_ |
OLD | NEW |