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 <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 25 matching lines...) Expand all Loading... |
36 Scope* scope_; | 36 Scope* scope_; |
37 const SourceDir input_dir_; | 37 const SourceDir input_dir_; |
38 Err* err_; | 38 Err* err_; |
39 | 39 |
40 DISALLOW_COPY_AND_ASSIGN(ConfigValuesGenerator); | 40 DISALLOW_COPY_AND_ASSIGN(ConfigValuesGenerator); |
41 }; | 41 }; |
42 | 42 |
43 // For using in documentation for functions which use this. | 43 // For using in documentation for functions which use this. |
44 #define CONFIG_VALUES_VARS_HELP \ | 44 #define CONFIG_VALUES_VARS_HELP \ |
45 " Flags: cflags, cflags_c, cflags_cc, cflags_objc, cflags_objcc,\n" \ | 45 " Flags: cflags, cflags_c, cflags_cc, cflags_objc, cflags_objcc,\n" \ |
46 " defines, include_dirs, ldflags, lib_dirs, libs\n" | 46 " defines, include_dirs, ldflags, lib_dirs, libs\n" \ |
| 47 " precompiled_header, precompiled_source\n" |
47 | 48 |
48 #endif // TOOLS_GN_CONFIG_VALUES_GENERATOR_H_ | 49 #endif // TOOLS_GN_CONFIG_VALUES_GENERATOR_H_ |
OLD | NEW |