Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: tools/gn/setup.cc

Issue 121123002: Update uses of UTF conversions in ppapi/, printing/, remoting/, rlz/, sandbox/, skia/, sql/, sync/,… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/gn/ninja_build_writer.cc ('k') | tools/imagediff/image_diff.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/setup.cc
diff --git a/tools/gn/setup.cc b/tools/gn/setup.cc
index e074681c619eb2f683005e65f7c4a8788b2f3aac..b9b59c6c09e3e78183c5461959c3d2c46d9df592 100644
--- a/tools/gn/setup.cc
+++ b/tools/gn/setup.cc
@@ -320,7 +320,8 @@ void Setup::FillPythonPath() {
"just \"python.exe\"");
python_path = "python.exe";
}
- build_settings_.set_python_path(base::FilePath(UTF8ToUTF16(python_path)));
+ build_settings_.set_python_path(
+ base::FilePath(base::UTF8ToUTF16(python_path)));
#else
build_settings_.set_python_path(base::FilePath("python"));
#endif
« no previous file with comments | « tools/gn/ninja_build_writer.cc ('k') | tools/imagediff/image_diff.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698