| 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_SETTINGS_H_ | 5 #ifndef TOOLS_GN_SETTINGS_H_ |
| 6 #define TOOLS_GN_SETTINGS_H_ | 6 #define TOOLS_GN_SETTINGS_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/macros.h" |
| 9 #include "tools/gn/build_settings.h" | 10 #include "tools/gn/build_settings.h" |
| 10 #include "tools/gn/import_manager.h" | 11 #include "tools/gn/import_manager.h" |
| 11 #include "tools/gn/output_file.h" | 12 #include "tools/gn/output_file.h" |
| 12 #include "tools/gn/scope.h" | 13 #include "tools/gn/scope.h" |
| 13 #include "tools/gn/source_dir.h" | 14 #include "tools/gn/source_dir.h" |
| 14 #include "tools/gn/toolchain.h" | 15 #include "tools/gn/toolchain.h" |
| 15 | 16 |
| 16 // Holds the settings for one toolchain invocation. There will be one | 17 // Holds the settings for one toolchain invocation. There will be one |
| 17 // Settings object for each toolchain type, each referring to the same | 18 // Settings object for each toolchain type, each referring to the same |
| 18 // BuildSettings object for shared stuff. | 19 // BuildSettings object for shared stuff. |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 SourceDir toolchain_gen_dir_; | 107 SourceDir toolchain_gen_dir_; |
| 107 | 108 |
| 108 Scope base_config_; | 109 Scope base_config_; |
| 109 | 110 |
| 110 bool greedy_target_generation_; | 111 bool greedy_target_generation_; |
| 111 | 112 |
| 112 DISALLOW_COPY_AND_ASSIGN(Settings); | 113 DISALLOW_COPY_AND_ASSIGN(Settings); |
| 113 }; | 114 }; |
| 114 | 115 |
| 115 #endif // TOOLS_GN_SETTINGS_H_ | 116 #endif // TOOLS_GN_SETTINGS_H_ |
| OLD | NEW |