| 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_NINJA_BUILD_WRITER_H_ | 5 #ifndef TOOLS_GN_NINJA_BUILD_WRITER_H_ |
| 6 #define TOOLS_GN_NINJA_BUILD_WRITER_H_ | 6 #define TOOLS_GN_NINJA_BUILD_WRITER_H_ |
| 7 | 7 |
| 8 #include <iosfwd> | 8 #include <iosfwd> |
| 9 #include <map> | 9 #include <map> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 const Toolchain* default_toolchain_; | 60 const Toolchain* default_toolchain_; |
| 61 const std::vector<const Target*>& default_toolchain_targets_; | 61 const std::vector<const Target*>& default_toolchain_targets_; |
| 62 | 62 |
| 63 std::ostream& out_; | 63 std::ostream& out_; |
| 64 std::ostream& dep_out_; | 64 std::ostream& dep_out_; |
| 65 PathOutput path_output_; | 65 PathOutput path_output_; |
| 66 | 66 |
| 67 DISALLOW_COPY_AND_ASSIGN(NinjaBuildWriter); | 67 DISALLOW_COPY_AND_ASSIGN(NinjaBuildWriter); |
| 68 }; | 68 }; |
| 69 | 69 |
| 70 extern const char kNinjaRules_Help[]; |
| 71 |
| 70 #endif // TOOLS_GN_NINJA_BUILD_WRITER_H_ | 72 #endif // TOOLS_GN_NINJA_BUILD_WRITER_H_ |
| 71 | 73 |
| OLD | NEW |