| OLD | NEW |
| 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2006-2008 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 | 4 |
| 5 __doc__ = """ | 5 __doc__ = """ |
| 6 Configuration for building zlib.lib / libzlib.a. | 6 Configuration for building zlib.lib / libzlib.a. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 '-Wno-parentheses', | 76 '-Wno-parentheses', |
| 77 '-Wno-unused-variable', | 77 '-Wno-unused-variable', |
| 78 ], | 78 ], |
| 79 ) | 79 ) |
| 80 | 80 |
| 81 env.ChromeLibrary('zlib', input_files) | 81 env.ChromeLibrary('zlib', input_files) |
| 82 | 82 |
| 83 p = env.ChromeMSVSProject('zlib.vcproj', | 83 p = env.ChromeMSVSProject('zlib.vcproj', |
| 84 dest='$CHROME_SRC_DIR/third_party/zlib/zlib.vcproj', | 84 dest='$CHROME_SRC_DIR/third_party/zlib/zlib.vcproj', |
| 85 guid='{8423AF0D-4B88-4EBF-94E1-E4D00D00E21C}', | 85 guid='{8423AF0D-4B88-4EBF-94E1-E4D00D00E21C}', |
| 86 keyword='Win32Proj', |
| 86 files=input_files, | 87 files=input_files, |
| 87 relative_path_prefix=r'./', | 88 relative_path_prefix=r'./', |
| 88 tools = [ | 89 tools = [ |
| 89 'VCLibrarianTool', | 90 'VCLibrarianTool', |
| 90 'VCCLCompilerTool', | 91 'VCCLCompilerTool', |
| 91 ]) | 92 ]) |
| 92 | 93 |
| 93 p.AddConfig('Debug|Win32', | 94 p.AddConfig('Debug|Win32', |
| 94 ConfigurationType = '4', | 95 ConfigurationType = '4', |
| 95 InheritedPropertySheets = [ | 96 InheritedPropertySheets = [ |
| 96 '$(SolutionDir)../build/common.vsprops', | 97 '$(SolutionDir)../build/common.vsprops', |
| 97 '$(SolutionDir)../build/debug.vsprops', | 98 '$(SolutionDir)../build/debug.vsprops', |
| 98 '$(SolutionDir)../build/external_code.vsprops', | 99 '$(SolutionDir)../build/external_code.vsprops', |
| 99 './zlib.vsprops' | 100 './zlib.vsprops' |
| 100 ]) | 101 ]) |
| 101 | 102 |
| 102 p.AddConfig('Release|Win32', | 103 p.AddConfig('Release|Win32', |
| 103 ConfigurationType = '4', | 104 ConfigurationType = '4', |
| 104 InheritedPropertySheets = [ | 105 InheritedPropertySheets = [ |
| 105 '$(SolutionDir)../build/common.vsprops', | 106 '$(SolutionDir)../build/common.vsprops', |
| 106 '$(SolutionDir)../build/release.vsprops', | 107 '$(SolutionDir)../build/release.vsprops', |
| 107 '$(SolutionDir)../build/external_code.vsprops', | 108 '$(SolutionDir)../build/external_code.vsprops', |
| 108 './zlib.vsprops' | 109 './zlib.vsprops' |
| 109 ]) | 110 ]) |
| OLD | NEW |