| Index: tools/gn/ninja_build_writer.cc
|
| diff --git a/tools/gn/ninja_build_writer.cc b/tools/gn/ninja_build_writer.cc
|
| index a8938b50ce78ea9139e00ba7eef2f4f75510515e..ded584b3224dbab14834a52717502eb2cff53751 100644
|
| --- a/tools/gn/ninja_build_writer.cc
|
| +++ b/tools/gn/ninja_build_writer.cc
|
| @@ -29,7 +29,7 @@ std::string GetSelfInvocationCommand(const BuildSettings* build_settings) {
|
| #if defined(OS_WIN)
|
| wchar_t module[MAX_PATH];
|
| GetModuleFileName(NULL, module, MAX_PATH);
|
| - //result = "\"" + WideToUTF8(module) + "\"";
|
| + //result = "\"" + base::WideToUTF8(module) + "\"";
|
| base::FilePath executable(module);
|
| #elif defined(OS_MACOSX)
|
| // FIXME(brettw) write this on Mac!
|
| @@ -70,7 +70,7 @@ std::string GetSelfInvocationCommand(const BuildSettings* build_settings) {
|
| }
|
|
|
| #if defined(OS_WIN)
|
| - return WideToUTF8(cmdline.GetCommandLineString());
|
| + return base::WideToUTF8(cmdline.GetCommandLineString());
|
| #else
|
| return cmdline.GetCommandLineString();
|
| #endif
|
|
|