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

Unified Diff: visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs

Issue 11044024: Implement multi-core builds in MSVS (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 2 months 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
Index: visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs
diff --git a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs
index ab39f6e4e9f321ac2dd57c2a9f07fe57fe564c04..55dd8f067e219350b770d2a0f3abba38c1cf141e 100644
--- a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs
+++ b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs
@@ -44,7 +44,7 @@ namespace NaCl.Build.CPPTasks
// assumes .o file is only possible file ending with 'o'
if (path.ElementAt(path.Length - 1) != 'o' && path.ElementAt(path.Length - 1) != ':')
{
- string newDependency = GCCUtilities.Convert_Path_Posix_To_Windows(path);
+ string newDependency = GCCUtilities.ConvertPathPosixToWindows(path);
m_dependencies.Add(newDependency);
}
}

Powered by Google App Engine
This is Rietveld 408576698