| 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_CONFIG_VALUES_GENERATOR_H_ | 5 #ifndef TOOLS_GN_CONFIG_VALUES_GENERATOR_H_ |
| 6 #define TOOLS_GN_CONFIG_VALUES_GENERATOR_H_ | 6 #define TOOLS_GN_CONFIG_VALUES_GENERATOR_H_ |
| 7 | 7 |
| 8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "tools/gn/source_dir.h" | 9 #include "tools/gn/source_dir.h" |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 Scope* scope_; | 33 Scope* scope_; |
| 34 const SourceDir input_dir_; | 34 const SourceDir input_dir_; |
| 35 Err* err_; | 35 Err* err_; |
| 36 | 36 |
| 37 DISALLOW_COPY_AND_ASSIGN(ConfigValuesGenerator); | 37 DISALLOW_COPY_AND_ASSIGN(ConfigValuesGenerator); |
| 38 }; | 38 }; |
| 39 | 39 |
| 40 // For using in documentation for functions which use this. | 40 // For using in documentation for functions which use this. |
| 41 #define CONFIG_VALUES_VARS_HELP \ | 41 #define CONFIG_VALUES_VARS_HELP \ |
| 42 " Flags: cflags, cflags_c, cflags_cc, cflags_objc, cflags_objcc,\n" \ | 42 " Flags: cflags, cflags_c, cflags_cc, cflags_objc, cflags_objcc,\n" \ |
| 43 " defines, include_dirs, ldflags, lib_dirs, libs\n" \ | 43 " defines, include_dirs, ldflags, lib_dirs, libs,\n" \ |
| 44 " precompiled_header, precompiled_source\n" | 44 " precompiled_header, precompiled_source\n" |
| 45 | 45 |
| 46 #endif // TOOLS_GN_CONFIG_VALUES_GENERATOR_H_ | 46 #endif // TOOLS_GN_CONFIG_VALUES_GENERATOR_H_ |
| OLD | NEW |