| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_TOOL_H_ | 5 #ifndef TOOLS_GN_TOOL_H_ |
| 6 #define TOOLS_GN_TOOL_H_ | 6 #define TOOLS_GN_TOOL_H_ |
| 7 | 7 |
| 8 #include <string> | 8 #include <string> |
| 9 | 9 |
| 10 #include "base/basictypes.h" | |
| 11 #include "base/logging.h" | 10 #include "base/logging.h" |
| 11 #include "base/macros.h" |
| 12 #include "tools/gn/substitution_list.h" | 12 #include "tools/gn/substitution_list.h" |
| 13 #include "tools/gn/substitution_pattern.h" | 13 #include "tools/gn/substitution_pattern.h" |
| 14 | 14 |
| 15 class Tool { | 15 class Tool { |
| 16 public: | 16 public: |
| 17 enum DepsFormat { | 17 enum DepsFormat { |
| 18 DEPS_GCC = 0, | 18 DEPS_GCC = 0, |
| 19 DEPS_MSVC = 1 | 19 DEPS_MSVC = 1 |
| 20 }; | 20 }; |
| 21 | 21 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 192 SubstitutionPattern rspfile_content_; | 192 SubstitutionPattern rspfile_content_; |
| 193 | 193 |
| 194 bool complete_; | 194 bool complete_; |
| 195 | 195 |
| 196 SubstitutionBits substitution_bits_; | 196 SubstitutionBits substitution_bits_; |
| 197 | 197 |
| 198 DISALLOW_COPY_AND_ASSIGN(Tool); | 198 DISALLOW_COPY_AND_ASSIGN(Tool); |
| 199 }; | 199 }; |
| 200 | 200 |
| 201 #endif // TOOLS_GN_TOOL_H_ | 201 #endif // TOOLS_GN_TOOL_H_ |
| OLD | NEW |