| 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_PATH_OUTPUT_H_ | 5 #ifndef TOOLS_GN_PATH_OUTPUT_H_ |
| 6 #define TOOLS_GN_PATH_OUTPUT_H_ | 6 #define TOOLS_GN_PATH_OUTPUT_H_ |
| 7 | 7 |
| 8 #include <iosfwd> | 8 #include <iosfwd> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/macros.h" |
| 12 #include "base/strings/string_piece.h" | 12 #include "base/strings/string_piece.h" |
| 13 #include "tools/gn/escape.h" | 13 #include "tools/gn/escape.h" |
| 14 #include "tools/gn/source_dir.h" | 14 #include "tools/gn/source_dir.h" |
| 15 #include "tools/gn/unique_vector.h" | 15 #include "tools/gn/unique_vector.h" |
| 16 | 16 |
| 17 class OutputFile; | 17 class OutputFile; |
| 18 class SourceFile; | 18 class SourceFile; |
| 19 | 19 |
| 20 namespace base { | 20 namespace base { |
| 21 class FilePath; | 21 class FilePath; |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 82 | 82 |
| 83 // Uses system slashes if convert_slashes_to_system_. | 83 // Uses system slashes if convert_slashes_to_system_. |
| 84 std::string inverse_current_dir_; | 84 std::string inverse_current_dir_; |
| 85 | 85 |
| 86 // Since the inverse_current_dir_ depends on some of these, we don't expose | 86 // Since the inverse_current_dir_ depends on some of these, we don't expose |
| 87 // this directly to modification. | 87 // this directly to modification. |
| 88 EscapeOptions options_; | 88 EscapeOptions options_; |
| 89 }; | 89 }; |
| 90 | 90 |
| 91 #endif // TOOLS_GN_PATH_OUTPUT_H_ | 91 #endif // TOOLS_GN_PATH_OUTPUT_H_ |
| OLD | NEW |