| Index: tools/gn/setup.cc
|
| diff --git a/tools/gn/setup.cc b/tools/gn/setup.cc
|
| index 5f30cf8b61f461046b5ad789f05ec7785afe2ab6..0c969abc15a509a74f61bed74b258f0e4a9a96b2 100644
|
| --- a/tools/gn/setup.cc
|
| +++ b/tools/gn/setup.cc
|
| @@ -319,7 +319,7 @@ void Setup::FillPythonPath() {
|
| L"cmd.exe /c python -c \"import sys; print sys.executable\"";
|
| std::string python_path;
|
| if (base::GetAppOutput(kGetPython, &python_path)) {
|
| - TrimWhitespaceASCII(python_path, TRIM_ALL, &python_path);
|
| + base::TrimWhitespaceASCII(python_path, base::TRIM_ALL, &python_path);
|
| if (scheduler_.verbose_logging())
|
| scheduler_.Log("Found python", python_path);
|
| } else {
|
|
|