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

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

Issue 16096014: [NaCl Addin] Fix dependencies in visual studio (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 years, 7 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 2161e437919cd85a41070e90438ec5c05859f79c..a46443692f38008f058aa15200e41edbc61d4192 100644
--- a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs
+++ b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/DependencyParser.cs
@@ -60,6 +60,8 @@ namespace NaCl.Build.CPPTasks
{
filename = GCCUtilities.ConvertPathPosixToWindows(filename);
filename = filename.Replace("\\ ", " ");
+ filename = filename.ToUpperInvariant();
+ filename = Path.GetFullPath(filename);
m_dependencies.Add(filename);
}

Powered by Google App Engine
This is Rietveld 408576698