| 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_SCHEDULER_H_ | 5 #ifndef TOOLS_GN_SCHEDULER_H_ |
| 6 #define TOOLS_GN_SCHEDULER_H_ | 6 #define TOOLS_GN_SCHEDULER_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 | 9 |
| 10 #include "base/atomic_ref_count.h" | 10 #include "base/atomic_ref_count.h" |
| (...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 114 std::vector<base::FilePath> gen_dependencies_; | 114 std::vector<base::FilePath> gen_dependencies_; |
| 115 std::vector<SourceFile> written_files_; | 115 std::vector<SourceFile> written_files_; |
| 116 std::multimap<SourceFile, const Target*> unknown_generated_inputs_; | 116 std::multimap<SourceFile, const Target*> unknown_generated_inputs_; |
| 117 | 117 |
| 118 DISALLOW_COPY_AND_ASSIGN(Scheduler); | 118 DISALLOW_COPY_AND_ASSIGN(Scheduler); |
| 119 }; | 119 }; |
| 120 | 120 |
| 121 extern Scheduler* g_scheduler; | 121 extern Scheduler* g_scheduler; |
| 122 | 122 |
| 123 #endif // TOOLS_GN_SCHEDULER_H_ | 123 #endif // TOOLS_GN_SCHEDULER_H_ |
| 124 | |
| OLD | NEW |