| 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 310 'shared_memory_win.cc', | 310 'shared_memory_win.cc', |
| 311 'sys_info_win.cc', | 311 'sys_info_win.cc', |
| 312 'sys_string_conversions_win.cc', | 312 'sys_string_conversions_win.cc', |
| 313 'system_monitor_win.cc', | 313 'system_monitor_win.cc', |
| 314 'test_file_util_win.cc', | 314 'test_file_util_win.cc', |
| 315 'thread_local_storage_win.cc', | 315 'thread_local_storage_win.cc', |
| 316 'thread_local_win.cc', | 316 'thread_local_win.cc', |
| 317 'third_party/purify/pure_api.c', | 317 'third_party/purify/pure_api.c', |
| 318 'time_win.cc', | 318 'time_win.cc', |
| 319 'waitable_event_win.cc', | 319 'waitable_event_win.cc', |
| 320 'waitable_event_watcher_win.cc', |
| 320 'win_util.cc', | 321 'win_util.cc', |
| 321 'wmi_util.cc', | 322 'wmi_util.cc', |
| 322 'worker_pool.cc', | 323 'worker_pool.cc', |
| 323 ) | 324 ) |
| 324 | 325 |
| 325 if env.Bit('posix'): | 326 if env.Bit('posix'): |
| 326 input_files.Extend([ | 327 input_files.Extend([ |
| 327 'condition_variable_posix.cc', | 328 'condition_variable_posix.cc', |
| 328 'debug_util_posix.cc', | 329 'debug_util_posix.cc', |
| 329 'file_util_posix.cc', | 330 'file_util_posix.cc', |
| 330 'lock_impl_posix.cc', | 331 'lock_impl_posix.cc', |
| 331 'message_pump_libevent.cc', | 332 'message_pump_libevent.cc', |
| 332 'platform_file_posix.cc', | 333 'platform_file_posix.cc', |
| 333 'platform_thread_posix.cc', | 334 'platform_thread_posix.cc', |
| 334 'process_util_posix.cc', | 335 'process_util_posix.cc', |
| 335 'rand_util_posix.cc', | 336 'rand_util_posix.cc', |
| 336 'shared_memory_posix.cc', | 337 'shared_memory_posix.cc', |
| 337 'string16.cc', | 338 'string16.cc', |
| 338 'sys_info_posix.cc', | 339 'sys_info_posix.cc', |
| 339 'system_monitor_posix.cc', | 340 'system_monitor_posix.cc', |
| 340 'thread_local_storage_posix.cc', | 341 'thread_local_storage_posix.cc', |
| 341 'thread_local_posix.cc', | 342 'thread_local_posix.cc', |
| 342 'time_posix.cc', | 343 'time_posix.cc', |
| 343 'waitable_event_generic.cc', | 344 'waitable_event_posix.cc', |
| 345 'waitable_event_watcher_posix.cc', |
| 344 ]) | 346 ]) |
| 345 | 347 |
| 346 if env.Bit('mac'): | 348 if env.Bit('mac'): |
| 347 input_files.Extend([ | 349 input_files.Extend([ |
| 348 'base_paths_mac.mm', | 350 'base_paths_mac.mm', |
| 349 'clipboard_mac.mm', | 351 'clipboard_mac.mm', |
| 350 'file_util_mac.mm', | 352 'file_util_mac.mm', |
| 351 'file_version_info_mac.mm', | 353 'file_version_info_mac.mm', |
| 352 'hmac_mac.cc', | 354 'hmac_mac.cc', |
| 353 'mac_util.mm', | 355 'mac_util.mm', |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 tools=[ | 444 tools=[ |
| 443 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 445 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 444 ]) | 446 ]) |
| 445 | 447 |
| 446 p.AddFileConfig( | 448 p.AddFileConfig( |
| 447 'third_party/dmg_fp/g_fmt.cc', | 449 'third_party/dmg_fp/g_fmt.cc', |
| 448 'Release|Win32', | 450 'Release|Win32', |
| 449 tools=[ | 451 tools=[ |
| 450 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 452 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 451 ]) | 453 ]) |
| OLD | NEW |