| 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 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 243 'timer.h', | 243 'timer.h', |
| 244 'trace_event.cc', | 244 'trace_event.cc', |
| 245 'trace_event.h', | 245 'trace_event.h', |
| 246 'tracked.cc', | 246 'tracked.cc', |
| 247 'tracked.h', | 247 'tracked.h', |
| 248 'tracked_objects.cc', | 248 'tracked_objects.cc', |
| 249 'tracked_objects.h', | 249 'tracked_objects.h', |
| 250 'tuple.h', | 250 'tuple.h', |
| 251 'values.cc', | 251 'values.cc', |
| 252 'values.h', | 252 'values.h', |
| 253 'version.cc', |
| 254 'version.h', |
| 253 'waitable_event.h', | 255 'waitable_event.h', |
| 254 'waitable_event_watcher.h', | 256 'waitable_event_watcher.h', |
| 255 'waitable_event_watcher_win.cc', | 257 'waitable_event_watcher_win.cc', |
| 256 'waitable_event_win.cc', | 258 'waitable_event_win.cc', |
| 257 'watchdog.cc', | 259 'watchdog.cc', |
| 258 'watchdog.h', | 260 'watchdog.h', |
| 259 'win_util.cc', | 261 'win_util.cc', |
| 260 'win_util.h', | 262 'win_util.h', |
| 261 'windows_message_list.h', | 263 'windows_message_list.h', |
| 262 'wmi_util.cc', | 264 'wmi_util.cc', |
| (...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 457 tools=[ | 459 tools=[ |
| 458 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 460 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 459 ]) | 461 ]) |
| 460 | 462 |
| 461 p.AddFileConfig( | 463 p.AddFileConfig( |
| 462 'third_party/dmg_fp/g_fmt.cc', | 464 'third_party/dmg_fp/g_fmt.cc', |
| 463 'Release|Win32', | 465 'Release|Win32', |
| 464 tools=[ | 466 tools=[ |
| 465 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 467 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 466 ]) | 468 ]) |
| OLD | NEW |