| 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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 'lock_impl_posix.cc', | 350 'lock_impl_posix.cc', |
| 351 'message_pump_libevent.cc', | 351 'message_pump_libevent.cc', |
| 352 'platform_file_posix.cc', | 352 'platform_file_posix.cc', |
| 353 'platform_thread_posix.cc', | 353 'platform_thread_posix.cc', |
| 354 'process_util_posix.cc', | 354 'process_util_posix.cc', |
| 355 'rand_util_posix.cc', | 355 'rand_util_posix.cc', |
| 356 'shared_memory_posix.cc', | 356 'shared_memory_posix.cc', |
| 357 'string16.cc', | 357 'string16.cc', |
| 358 'sys_info_posix.cc', | 358 'sys_info_posix.cc', |
| 359 'system_monitor_posix.cc', | 359 'system_monitor_posix.cc', |
| 360 'test_file_util_posix.cc', |
| 360 'thread_local_storage_posix.cc', | 361 'thread_local_storage_posix.cc', |
| 361 'thread_local_posix.cc', | 362 'thread_local_posix.cc', |
| 362 'time_posix.cc', | 363 'time_posix.cc', |
| 363 'waitable_event_posix.cc', | 364 'waitable_event_posix.cc', |
| 364 'waitable_event_watcher_posix.cc', | 365 'waitable_event_watcher_posix.cc', |
| 365 ]) | 366 ]) |
| 366 | 367 |
| 367 if env.Bit('mac'): | 368 if env.Bit('mac'): |
| 368 input_files.Extend([ | 369 input_files.Extend([ |
| 369 'base_paths_mac.mm', | 370 'base_paths_mac.mm', |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 tools=[ | 467 tools=[ |
| 467 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 468 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 468 ]) | 469 ]) |
| 469 | 470 |
| 470 p.AddFileConfig( | 471 p.AddFileConfig( |
| 471 'third_party/dmg_fp/g_fmt.cc', | 472 'third_party/dmg_fp/g_fmt.cc', |
| 472 'Release|Win32', | 473 'Release|Win32', |
| 473 tools=[ | 474 tools=[ |
| 474 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 475 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 475 ]) | 476 ]) |
| OLD | NEW |