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

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

Issue 11360111: [NaCl Addin] Fix building of libraries in MSVS (Closed) Base URL: http://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 1 month 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 63957c5774a3b55d0153b49ee2bbd4c12731367c..7750907a6022f345bba5858f6729b60b0166a57f 100644
--- a/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLib.cs
+++ b/visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClLib.cs
@@ -1,5 +1,6 @@
-
-using System;
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
using System.Collections.Generic;
using System.Linq;
using System.Text;
@@ -34,7 +35,6 @@ namespace NaCl.Build.CPPTasks
[Required]
public virtual ITaskItem[] Sources { get; set; }
-
public NaClLib()
: base(new ResourceManager("NaCl.Build.CPPTasks.Properties.Resources", Assembly.GetExecutingAssembly()))
@@ -64,7 +64,7 @@ namespace NaCl.Build.CPPTasks
}
return base.ExecuteTool(pathToTool, responseFileCommands, commandLineCommands);
- }
+ }
@@ -136,8 +136,8 @@ namespace NaCl.Build.CPPTasks
{
get
{
- return new string[]
- {
+ return new string[]
+ {
"default.link.read.tlog"
};
}
@@ -147,8 +147,8 @@ namespace NaCl.Build.CPPTasks
{
get
{
- return new string[]
- {
+ return new string[]
+ {
"default.link.write.tlog"
};
}

Powered by Google App Engine
This is Rietveld 408576698