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