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

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

Issue 11367026: [VS Addin] Add PNaCl configs to examples (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/NaClLink.cs
diff --git a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLink.cs b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLink.cs
index 5d09a79f59083b08c38d41e50dd4a3c73e89fedb..223d44fc78f7a805a1f497674d49367bda9d8169 100644
--- a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLink.cs
+++ b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLink.cs
@@ -175,7 +175,7 @@ namespace NaCl.Build.CPPTasks
string dirname = Path.GetDirectoryName(GenerateFullPathToTool());
string translateTool = Path.Combine(dirname, "pnacl-translate.bat");
if (!OutputCommandLine)
- Log.LogMessage("pnacl-translate {0}", Path.GetFileName(outfile));
+ Log.LogMessage("pnacl-translate -> {0}", Path.GetFileName(outfile));
if (ExecuteTool(translateTool, cmd, string.Empty) != 0)
{
@@ -278,7 +278,7 @@ namespace NaCl.Build.CPPTasks
}
if (!OutputCommandLine)
- Log.LogMessage("CreateNMF");
+ Log.LogMessage("CreateNMF -> {0}", Path.GetFileName(nmfPath));
if (ExecuteTool("python", string.Empty, cmd) != 0)
{

Powered by Google App Engine
This is Rietveld 408576698