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

Unified Diff: visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLib.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/NaClLib.cs
diff --git a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLib.cs b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLib.cs
index 55f224a94fedc2ebe9a3019ce0731b9141285524..4aaa2cc3290e0eb2c3131b865f71640accf97dbd 100644
--- a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLib.cs
+++ b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLib.cs
@@ -22,9 +22,6 @@ namespace NaCl.Build.CPPTasks
[Required]
public string LibrarianToolPath { get; set; }
- [Required]
- public string PropertiesFile { get; set; }
-
public NaClLib()
: base(new ResourceManager("NaCl.Build.CPPTasks.Properties.Resources", Assembly.GetExecutingAssembly()))
{
@@ -53,6 +50,30 @@ namespace NaCl.Build.CPPTasks
return base.Execute();
}
+ protected override string CommandTLogFilename
+ {
+ get
+ {
+ return BaseTool() + ".lib.command.1.tlog";
+ }
+ }
+
+ protected override string[] ReadTLogFilenames
+ {
+ get
+ {
+ return new string[] { BaseTool() + ".lib.read.1.tlog" };
+ }
+ }
+
+ protected override string WriteTLogFilename
+ {
+ get
+ {
+ return BaseTool() + ".lib.write.1.tlog";
+ }
+ }
+
protected override int ExecuteTool(string pathToTool, string responseFileCommands, string commandLineCommands)
{
if (OutputCommandLine)

Powered by Google App Engine
This is Rietveld 408576698