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 | 5 |
6 __doc__ = """ | 6 __doc__ = """ |
7 Configuration for building libpng.lib / libpng.a. | 7 Configuration for building libpng.lib / libpng.a. |
8 """ | 8 """ |
9 | 9 |
10 Import('env') | 10 Import('env') |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 'pngvcrd.c', | 58 'pngvcrd.c', |
59 'pngwio.c', | 59 'pngwio.c', |
60 'pngwrite.c', | 60 'pngwrite.c', |
61 'pngwtran.c', | 61 'pngwtran.c', |
62 'pngwutil.c', | 62 'pngwutil.c', |
63 ]) | 63 ]) |
64 | 64 |
65 env.ChromeLibrary('libpng', input_files) | 65 env.ChromeLibrary('libpng', input_files) |
66 | 66 |
67 p = env.ChromeMSVSProject('libpng.vcproj', | 67 p = env.ChromeMSVSProject('libpng.vcproj', |
68 dest='$CHROME_SRC_DIR/third_party/libpng/libpng.vcproj
', | 68 dest=('$CHROME_SRC_DIR/third_party/' |
| 69 + 'libpng/libpng.vcproj'), |
69 guid='{C564F145-9172-42C3-BFCB-6014CA97DBCD}', | 70 guid='{C564F145-9172-42C3-BFCB-6014CA97DBCD}', |
| 71 keyword='Win32Proj', |
70 files=input_files, | 72 files=input_files, |
71 relative_path_prefix='./', | 73 relative_path_prefix='./', |
72 tools = [ | 74 tools = [ |
73 'VCLibrarianTool', | 75 'VCLibrarianTool', |
74 'VCCLCompilerTool', | 76 'VCCLCompilerTool', |
75 ]) | 77 ]) |
76 | 78 |
77 p.AddConfig('Debug|Win32', | 79 p.AddConfig('Debug|Win32', |
78 ConfigurationType = '4', | 80 ConfigurationType = '4', |
79 InheritedPropertySheets = [ | 81 InheritedPropertySheets = [ |
80 '$(SolutionDir)../build/common.vsprops', | 82 '$(SolutionDir)../build/common.vsprops', |
81 '$(SolutionDir)../build/debug.vsprops', | 83 '$(SolutionDir)../build/debug.vsprops', |
82 '$(SolutionDir)../third_party/zlib/using_zlib.vsprops', | 84 '$(SolutionDir)../third_party/zlib/using_zlib.vsprops', |
83 '$(SolutionDir)../build/external_code.vsprops', | 85 '$(SolutionDir)../build/external_code.vsprops', |
84 '$(SolutionDir)../third_party/libpng/using_libpng.vsprops', | 86 '$(SolutionDir)../third_party/libpng/using_libpng.vsprops', |
85 ]) | 87 ]) |
86 | 88 |
87 p.AddConfig('Release|Win32', | 89 p.AddConfig('Release|Win32', |
88 ConfigurationType = '4', | 90 ConfigurationType = '4', |
89 InheritedPropertySheets = [ | 91 InheritedPropertySheets = [ |
90 '$(SolutionDir)../build/common.vsprops', | 92 '$(SolutionDir)../build/common.vsprops', |
91 '$(SolutionDir)../build/release.vsprops', | 93 '$(SolutionDir)../build/release.vsprops', |
92 '$(SolutionDir)../third_party/zlib/using_zlib.vsprops', | 94 '$(SolutionDir)../third_party/zlib/using_zlib.vsprops', |
93 '$(SolutionDir)../build/external_code.vsprops', | 95 '$(SolutionDir)../build/external_code.vsprops', |
94 '$(SolutionDir)../third_party/libpng/using_libpng.vsprops', | 96 '$(SolutionDir)../third_party/libpng/using_libpng.vsprops', |
95 ]) | 97 ]) |
OLD | NEW |