Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright (c) 2012 Google Inc. All rights reserved. | 1 # Copyright (c) 2012 Google Inc. 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 | 4 |
| 5 """Code to validate and convert settings of the Microsoft build tools. | 5 r"""Code to validate and convert settings of the Microsoft build tools. |
|
scottmg
2014/11/20 07:29:12
yuck :p
don't suppose we can tell it to ignore do
Shezan Baig (Bloomberg)
2014/11/20 07:48:22
I don't think so. There's an open issue here: htt
scottmg
2014/11/20 17:54:35
OK, since it caught some more legitimate ones, I g
| |
| 6 | 6 |
| 7 This file contains code to validate and convert settings of the Microsoft | 7 This file contains code to validate and convert settings of the Microsoft |
| 8 build tools. The function ConvertToMSBuildSettings(), ValidateMSVSSettings(), | 8 build tools. The function ConvertToMSBuildSettings(), ValidateMSVSSettings(), |
| 9 and ValidateMSBuildSettings() are the entry points. | 9 and ValidateMSBuildSettings() are the entry points. |
| 10 | 10 |
| 11 This file was created by comparing the projects created by Visual Studio 2008 | 11 This file was created by comparing the projects created by Visual Studio 2008 |
| 12 and Visual Studio 2010 for all available settings through the user interface. | 12 and Visual Studio 2010 for all available settings through the user interface. |
| 13 The MSBuild schemas were also considered. They are typically found in the | 13 The MSBuild schemas were also considered. They are typically found in the |
| 14 MSBuild install directory, e.g. c:\Program Files (x86)\MSBuild | 14 MSBuild install directory, e.g. c:\Program Files (x86)\MSBuild |
| 15 """ | 15 """ |
| (...skipping 1053 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1069 _MSVSOnly(_manifest, 'UseUnicodeResponseFiles', _boolean) | 1069 _MSVSOnly(_manifest, 'UseUnicodeResponseFiles', _boolean) |
| 1070 | 1070 |
| 1071 # MSBuild options not found in MSVS. | 1071 # MSBuild options not found in MSVS. |
| 1072 _MSBuildOnly(_manifest, 'EnableDPIAwareness', _boolean) | 1072 _MSBuildOnly(_manifest, 'EnableDPIAwareness', _boolean) |
| 1073 _MSBuildOnly(_manifest, 'GenerateCategoryTags', _boolean) # /category | 1073 _MSBuildOnly(_manifest, 'GenerateCategoryTags', _boolean) # /category |
| 1074 _MSBuildOnly(_manifest, 'ManifestFromManagedAssembly', | 1074 _MSBuildOnly(_manifest, 'ManifestFromManagedAssembly', |
| 1075 _file_name) # /managedassemblyname | 1075 _file_name) # /managedassemblyname |
| 1076 _MSBuildOnly(_manifest, 'OutputResourceManifests', _string) # /outputresource | 1076 _MSBuildOnly(_manifest, 'OutputResourceManifests', _string) # /outputresource |
| 1077 _MSBuildOnly(_manifest, 'SuppressDependencyElement', _boolean) # /nodependency | 1077 _MSBuildOnly(_manifest, 'SuppressDependencyElement', _boolean) # /nodependency |
| 1078 _MSBuildOnly(_manifest, 'TrackerLogDirectory', _folder_name) | 1078 _MSBuildOnly(_manifest, 'TrackerLogDirectory', _folder_name) |
| OLD | NEW |