| 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 395 'file_util_linux.cc', | 395 'file_util_linux.cc', |
| 396 'file_version_info_linux.cc', | 396 'file_version_info_linux.cc', |
| 397 'hmac_nss.cc', | 397 'hmac_nss.cc', |
| 398 'message_pump_glib.cc', | 398 'message_pump_glib.cc', |
| 399 'nss_init.cc', | 399 'nss_init.cc', |
| 400 'process_posix.cc', | 400 'process_posix.cc', |
| 401 'process_util_linux.cc', | 401 'process_util_linux.cc', |
| 402 'sys_string_conversions_linux.cc', | 402 'sys_string_conversions_linux.cc', |
| 403 'test_file_util_linux.cc', | 403 'test_file_util_linux.cc', |
| 404 'worker_pool_linux.cc', | 404 'worker_pool_linux.cc', |
| 405 'worker_pool_linux.h', |
| 405 ]) | 406 ]) |
| 406 | 407 |
| 407 env.ChromeLibrary('base', input_files) | 408 env.ChromeLibrary('base', input_files) |
| 408 | 409 |
| 409 p = env.ChromeMSVSProject('build/base.vcproj', | 410 p = env.ChromeMSVSProject('build/base.vcproj', |
| 410 dest='$CHROME_SRC_DIR/base/build/base.vcproj', | 411 dest='$CHROME_SRC_DIR/base/build/base.vcproj', |
| 411 guid='{1832A374-8A74-4F9E-B536-69A699B3E165}', | 412 guid='{1832A374-8A74-4F9E-B536-69A699B3E165}', |
| 412 keyword='Win32Proj', | 413 keyword='Win32Proj', |
| 413 dependencies=[ | 414 dependencies=[ |
| 414 'build/debug_message.vcproj', | 415 'build/debug_message.vcproj', |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 470 tools=[ | 471 tools=[ |
| 471 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 472 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 472 ]) | 473 ]) |
| 473 | 474 |
| 474 p.AddFileConfig( | 475 p.AddFileConfig( |
| 475 'third_party/dmg_fp/g_fmt.cc', | 476 'third_party/dmg_fp/g_fmt.cc', |
| 476 'Release|Win32', | 477 'Release|Win32', |
| 477 tools=[ | 478 tools=[ |
| 478 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 479 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 479 ]) | 480 ]) |
| OLD | NEW |