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

Side by Side Diff: visual_studio/NativeClientVSAddIn/UnitTests/CompileParallelTest.cs

Issue 69343013: [VS AddIn] Fix default library paths. (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 7 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) 2013 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2013 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 using System; 4 using System;
5 using System.Text; 5 using System.Text;
6 using System.Collections.Generic; 6 using System.Collections.Generic;
7 using EnvDTE; 7 using EnvDTE;
8 using EnvDTE80; 8 using EnvDTE80;
9 using Microsoft.VisualStudio.TestTools.UnitTesting; 9 using Microsoft.VisualStudio.TestTools.UnitTesting;
10 using Microsoft.VisualStudio.VCProjectEngine; 10 using Microsoft.VisualStudio.VCProjectEngine;
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
48 config = TestUtilities.GetVCConfiguration(project, "Debug", platform ); 48 config = TestUtilities.GetVCConfiguration(project, "Debug", platform );
49 config.AddPropertySheet("multiprocess.props"); 49 config.AddPropertySheet("multiprocess.props");
50 config = TestUtilities.GetVCConfiguration(project, "Release", platfo rm); 50 config = TestUtilities.GetVCConfiguration(project, "Release", platfo rm);
51 config.AddPropertySheet("multiprocess.props"); 51 config.AddPropertySheet("multiprocess.props");
52 52
53 // Add a second file 53 // Add a second file
54 project.ProjectItems.AddFromFile("test_file.cpp"); 54 project.ProjectItems.AddFromFile("test_file.cpp");
55 55
56 dte_.Solution.Close(true); 56 dte_.Solution.Close(true);
57 57
58 CheckCompile(platform, false); 58 CheckCompile(platform);
59 } 59 }
60 } 60 }
61 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698