| 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_SETUP_H_ | 5 #ifndef TOOLS_GN_SETUP_H_ |
| 6 #define TOOLS_GN_SETUP_H_ | 6 #define TOOLS_GN_SETUP_H_ |
| 7 | 7 |
| 8 #include <vector> | 8 #include <vector> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
| (...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 // Run config file. | 84 // Run config file. |
| 85 bool RunConfigFile(); | 85 bool RunConfigFile(); |
| 86 | 86 |
| 87 bool FillOtherConfig(const CommandLine& cmdline); | 87 bool FillOtherConfig(const CommandLine& cmdline); |
| 88 | 88 |
| 89 Scheduler scheduler_; | 89 Scheduler scheduler_; |
| 90 | 90 |
| 91 // These empty settings and toolchain are used to interpret the command line | 91 // These empty settings and toolchain are used to interpret the command line |
| 92 // and dot file. | 92 // and dot file. |
| 93 BuildSettings empty_build_settings_; | 93 BuildSettings empty_build_settings_; |
| 94 Toolchain empty_toolchain_; | |
| 95 Settings empty_settings_; | 94 Settings empty_settings_; |
| 96 Scope dotfile_scope_; | 95 Scope dotfile_scope_; |
| 97 | 96 |
| 98 // State for invoking the dotfile. | 97 // State for invoking the dotfile. |
| 99 base::FilePath dotfile_name_; | 98 base::FilePath dotfile_name_; |
| 100 scoped_ptr<InputFile> dotfile_input_file_; | 99 scoped_ptr<InputFile> dotfile_input_file_; |
| 101 std::vector<Token> dotfile_tokens_; | 100 std::vector<Token> dotfile_tokens_; |
| 102 scoped_ptr<ParseNode> dotfile_root_; | 101 scoped_ptr<ParseNode> dotfile_root_; |
| 103 | 102 |
| 104 // State for invoking the command line args. We specifically want to keep | 103 // State for invoking the command line args. We specifically want to keep |
| (...skipping 23 matching lines...) Expand all Loading... |
| 128 // These are the two parts of Run() in the regular setup, not including the | 127 // These are the two parts of Run() in the regular setup, not including the |
| 129 // call to actually run the message loop. | 128 // call to actually run the message loop. |
| 130 void RunPreMessageLoop(); | 129 void RunPreMessageLoop(); |
| 131 bool RunPostMessageLoop(); | 130 bool RunPostMessageLoop(); |
| 132 | 131 |
| 133 private: | 132 private: |
| 134 DISALLOW_COPY_AND_ASSIGN(DependentSetup); | 133 DISALLOW_COPY_AND_ASSIGN(DependentSetup); |
| 135 }; | 134 }; |
| 136 | 135 |
| 137 #endif // TOOLS_GN_SETUP_H_ | 136 #endif // TOOLS_GN_SETUP_H_ |
| OLD | NEW |