| 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 base.lib / libbase.a. | 6 Configuration for building base.lib / libbase.a. |
| 7 """ | 7 """ |
| 8 | 8 |
| 9 Import('env') | 9 Import('env') |
| 10 | 10 |
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 366 'hmac_nss.cc', | 366 'hmac_nss.cc', |
| 367 'message_pump_glib.cc', | 367 'message_pump_glib.cc', |
| 368 'nss_init.cc', | 368 'nss_init.cc', |
| 369 'process_posix.cc', | 369 'process_posix.cc', |
| 370 'process_util_linux.cc', | 370 'process_util_linux.cc', |
| 371 'sys_string_conversions_linux.cc', | 371 'sys_string_conversions_linux.cc', |
| 372 'test_file_util_linux.cc', | 372 'test_file_util_linux.cc', |
| 373 'worker_pool.cc', | 373 'worker_pool.cc', |
| 374 ]) | 374 ]) |
| 375 | 375 |
| 376 env.ChromeStaticLibrary('base', input_files) | 376 env.ChromeLibrary('base', input_files) |
| 377 | 377 |
| 378 p = env.ChromeMSVSProject('build/base.vcproj', | 378 p = env.ChromeMSVSProject('build/base.vcproj', |
| 379 guid='{1832A374-8A74-4F9E-B536-69A699B3E165}', | 379 guid='{1832A374-8A74-4F9E-B536-69A699B3E165}', |
| 380 dependencies=[ | 380 dependencies=[ |
| 381 'build/debug_message.vcproj', | 381 'build/debug_message.vcproj', |
| 382 ], | 382 ], |
| 383 files=input_files, | 383 files=input_files, |
| 384 tools=[ | 384 tools=[ |
| 385 'VCPreBuildEventTool', | 385 'VCPreBuildEventTool', |
| 386 'VCCustomBuildTool', | 386 'VCCustomBuildTool', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 441 'Release|Win32', | 441 'Release|Win32', |
| 442 tools=[ | 442 tools=[ |
| 443 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 443 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 444 ]) | 444 ]) |
| 445 | 445 |
| 446 env.AlwaysBuild(p) | 446 env.AlwaysBuild(p) |
| 447 | 447 |
| 448 i = env.Command('$CHROME_SRC_DIR/base/build/base.vcproj', p, | 448 i = env.Command('$CHROME_SRC_DIR/base/build/base.vcproj', p, |
| 449 Copy('$TARGET', '$SOURCE')) | 449 Copy('$TARGET', '$SOURCE')) |
| 450 Alias('msvs', i) | 450 Alias('msvs', i) |
| OLD | NEW |