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

Unified Diff: tools/gn/gyp_target_writer.cc

Issue 100573002: Move directory creation functions to base namespace. (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/generate_test_gn_data.cc ('k') | tools/gn/ninja_build_writer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/gn/gyp_target_writer.cc
diff --git a/tools/gn/gyp_target_writer.cc b/tools/gn/gyp_target_writer.cc
index 725dbdc7cd18afda791aa2b0684cb8d10cebdda2..447b740b4a3d1c9344f545444237d54d95945200 100644
--- a/tools/gn/gyp_target_writer.cc
+++ b/tools/gn/gyp_target_writer.cc
@@ -42,7 +42,7 @@ void GypTargetWriter::WriteFile(const SourceFile& gyp_file,
const BuildSettings* debug_build_settings = debug_settings->build_settings();
base::FilePath gyp_file_path = debug_build_settings->GetFullPath(gyp_file);
- file_util::CreateDirectory(gyp_file_path.DirName());
+ base::CreateDirectory(gyp_file_path.DirName());
std::stringstream file;
file << "# Generated by GN. Do not edit.\n\n";
« no previous file with comments | « tools/gn/generate_test_gn_data.cc ('k') | tools/gn/ninja_build_writer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698