| OLD | NEW |
| 1 | 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. |
| 2 using System; | 4 using System; |
| 3 using System.IO; | 5 using System.IO; |
| 4 using System.Resources; | 6 using System.Resources; |
| 5 using System.Reflection; | 7 using System.Reflection; |
| 6 using System.Text; | 8 using System.Text; |
| 7 using Microsoft.Build.Framework; | 9 using Microsoft.Build.Framework; |
| 8 using Microsoft.Build.CPPTasks; | 10 using Microsoft.Build.CPPTasks; |
| 9 using Microsoft.Build.Utilities; | 11 using Microsoft.Build.Utilities; |
| 10 | 12 |
| 11 | 13 |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 348 { | 350 { |
| 349 get | 351 get |
| 350 { | 352 { |
| 351 return "GCC"; | 353 return "GCC"; |
| 352 } | 354 } |
| 353 set | 355 set |
| 354 {} | 356 {} |
| 355 } | 357 } |
| 356 } | 358 } |
| 357 } | 359 } |
| OLD | NEW |