| 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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 104 extern const char kAssertNoDeps_Help[]; | 104 extern const char kAssertNoDeps_Help[]; |
| 105 | 105 |
| 106 extern const char kBundleRootDir[]; | 106 extern const char kBundleRootDir[]; |
| 107 extern const char kBundleRootDir_HelpShort[]; | 107 extern const char kBundleRootDir_HelpShort[]; |
| 108 extern const char kBundleRootDir_Help[]; | 108 extern const char kBundleRootDir_Help[]; |
| 109 | 109 |
| 110 extern const char kBundleResourcesDir[]; | 110 extern const char kBundleResourcesDir[]; |
| 111 extern const char kBundleResourcesDir_HelpShort[]; | 111 extern const char kBundleResourcesDir_HelpShort[]; |
| 112 extern const char kBundleResourcesDir_Help[]; | 112 extern const char kBundleResourcesDir_Help[]; |
| 113 | 113 |
| 114 extern const char kBundleDepsFilter[]; |
| 115 extern const char kBundleDepsFilter_HelpShort[]; |
| 116 extern const char kBundleDepsFilter_Help[]; |
| 117 |
| 114 extern const char kBundleExecutableDir[]; | 118 extern const char kBundleExecutableDir[]; |
| 115 extern const char kBundleExecutableDir_HelpShort[]; | 119 extern const char kBundleExecutableDir_HelpShort[]; |
| 116 extern const char kBundleExecutableDir_Help[]; | 120 extern const char kBundleExecutableDir_Help[]; |
| 117 | 121 |
| 118 extern const char kBundlePlugInsDir[]; | 122 extern const char kBundlePlugInsDir[]; |
| 119 extern const char kBundlePlugInsDir_HelpShort[]; | 123 extern const char kBundlePlugInsDir_HelpShort[]; |
| 120 extern const char kBundlePlugInsDir_Help[]; | 124 extern const char kBundlePlugInsDir_Help[]; |
| 121 | 125 |
| 122 extern const char kCflags[]; | 126 extern const char kCflags[]; |
| 123 extern const char kCflags_HelpShort[]; | 127 extern const char kCflags_HelpShort[]; |
| (...skipping 172 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 // Note: this is used only for help so this getter is not threadsafe. | 300 // Note: this is used only for help so this getter is not threadsafe. |
| 297 const VariableInfoMap& GetBuiltinVariables(); | 301 const VariableInfoMap& GetBuiltinVariables(); |
| 298 | 302 |
| 299 // Returns the variables used by target generators. | 303 // Returns the variables used by target generators. |
| 300 // Note: this is used only for help so this getter is not threadsafe. | 304 // Note: this is used only for help so this getter is not threadsafe. |
| 301 const VariableInfoMap& GetTargetVariables(); | 305 const VariableInfoMap& GetTargetVariables(); |
| 302 | 306 |
| 303 } // namespace variables | 307 } // namespace variables |
| 304 | 308 |
| 305 #endif // TOOLS_GN_VARIABLES_H_ | 309 #endif // TOOLS_GN_VARIABLES_H_ |
| OLD | NEW |