| 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 modp_b64.lib / libmodp_b64.a. | 6 Configuration for building modp_b64.lib / libmodp_b64.a. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| 11 env = env.Clone( | 11 env = env.Clone( |
| 12 PDB = 'vc80.pdb', | 12 PDB = 'vc80.pdb', |
| 13 ) | 13 ) |
| 14 | 14 |
| 15 env.Prepend( | 15 env.Prepend( |
| 16 CPPPATH = [ | 16 CPPPATH = [ |
| 17 '$CHROME_SRC_DIR', | 17 '$CHROME_SRC_DIR', |
| 18 ], | 18 ], |
| 19 ) | 19 ) |
| 20 | 20 |
| 21 input_files = [ | 21 input_files = [ |
| 22 'modp_b64.cc', | 22 'modp_b64.cc', |
| 23 ] | 23 ] |
| 24 | 24 |
| 25 env.ChromeStaticLibrary('modp_b64', input_files) | 25 env.ChromeStaticLibrary('modp_b64', input_files) |
| 26 |
| 27 env.ChromeMSVSProject('$MODP_B64_DIR/modp_b64.vcproj', |
| 28 guid='{7100F41F-868D-4E99-80A2-AF8E6574749D}') |
| OLD | NEW |