| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 'pngrio.c', | 53 'pngrio.c', |
| 54 'pngread.c', | 54 'pngread.c', |
| 55 'pngpread.c', | 55 'pngpread.c', |
| 56 'pngmem.c', | 56 'pngmem.c', |
| 57 'pngget.c', | 57 'pngget.c', |
| 58 'pnggccrd.c', | 58 'pnggccrd.c', |
| 59 'pngerror.c', | 59 'pngerror.c', |
| 60 ] | 60 ] |
| 61 | 61 |
| 62 env.ChromeStaticLibrary('libpng', input_files) | 62 env.ChromeStaticLibrary('libpng', input_files) |
| 63 |
| 64 env.ChromeMSVSProject('$LIBPNG_DIR/libpng.vcproj', |
| 65 guid='{C564F145-9172-42C3-BFCB-6014CA97DBCD}') |
| OLD | NEW |