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

Side by Side Diff: visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/NaClToolTask.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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 * Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 * found in the LICENSE file. 3 // found in the LICENSE file.
4 */
5 using System; 4 using System;
6 using System.Collections.Generic; 5 using System.Collections.Generic;
7 using System.Text; 6 using System.Text;
8 using System.Collections; 7 using System.Collections;
9 using System.IO; 8 using System.IO;
10 using System.Reflection; 9 using System.Reflection;
11 using System.Resources; 10 using System.Resources;
12 using System.Windows.Forms; 11 using System.Windows.Forms;
13 using Microsoft.Build.Framework; 12 using Microsoft.Build.Framework;
14 using Microsoft.Win32; 13 using Microsoft.Win32;
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 289
291 protected virtual string WriteTLogFilename 290 protected virtual string WriteTLogFilename
292 { 291 {
293 get 292 get
294 { 293 {
295 return BaseTool() + ".compile.write.1.tlog"; 294 return BaseTool() + ".compile.write.1.tlog";
296 } 295 }
297 } 296 }
298 } 297 }
299 } 298 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698