| Index: tools/gn/path_output.cc
|
| diff --git a/tools/gn/path_output.cc b/tools/gn/path_output.cc
|
| index 4e71f9bdc9810c77f4652ce38e440b90b0df4266..0adb6861274dc860fd9b3bb3d2739bdf0ab82154 100644
|
| --- a/tools/gn/path_output.cc
|
| +++ b/tools/gn/path_output.cc
|
| @@ -10,8 +10,7 @@
|
| #include "tools/gn/string_utils.h"
|
|
|
| PathOutput::PathOutput(const SourceDir& current_dir,
|
| - EscapingMode escaping,
|
| - bool convert_slashes)
|
| + EscapingMode escaping)
|
| : current_dir_(current_dir) {
|
| CHECK(current_dir.is_source_absolute())
|
| << "Currently this only supports writing to output directories inside "
|
| @@ -20,11 +19,7 @@ PathOutput::PathOutput(const SourceDir& current_dir,
|
| inverse_current_dir_ = InvertDir(current_dir_);
|
|
|
| options_.mode = escaping;
|
| - options_.convert_slashes = convert_slashes;
|
| options_.inhibit_quoting = false;
|
| -
|
| - if (convert_slashes)
|
| - ConvertPathToSystem(&inverse_current_dir_);
|
| }
|
|
|
| PathOutput::~PathOutput() {
|
|
|