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

Side by Side Diff: visual_studio/NativeClientVSAddIn/NaCl.Build.CPPTasks/XamlParser.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.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
1 using System; 4 using System;
2 using System.Collections.Generic; 5 using System.Collections.Generic;
3 using System.Linq; 6 using System.Linq;
4 using System.Text; 7 using System.Text;
5 using System.IO; 8 using System.IO;
6 9
7 using Microsoft.Build.Framework; 10 using Microsoft.Build.Framework;
8 using System.Xaml; 11 using System.Xaml;
9 using Microsoft.Build.Framework.XamlTypes; 12 using Microsoft.Build.Framework.XamlTypes;
10 using Microsoft.Build.Utilities; 13 using Microsoft.Build.Utilities;
(...skipping 155 matching lines...) Expand 10 before | Expand all | Expand 10 after
166 } // class 169 } // class
167 170
168 private Rule m_parsedBuildRule; 171 private Rule m_parsedBuildRule;
169 private Dictionary<string, PropertyWrapper> ToolProperties { get; set; } 172 private Dictionary<string, PropertyWrapper> ToolProperties { get; set; }
170 173
171 // function mapping for easy property function calling 174 // function mapping for easy property function calling
172 private Dictionary<Type, Action<CommandLineBuilder, BaseProperty, string >> m_typeFunctionMap; 175 private Dictionary<Type, Action<CommandLineBuilder, BaseProperty, string >> m_typeFunctionMap;
173 } // XamlParser 176 } // XamlParser
174 } // namespace NaCl.Build.CPPTasks 177 } // namespace NaCl.Build.CPPTasks
175 178
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698