| OLD | NEW |
| 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 Loading... |
| 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 |
| OLD | NEW |