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 229 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
240 'trace_event.h', | 240 'trace_event.h', |
241 'tracked.cc', | 241 'tracked.cc', |
242 'tracked.h', | 242 'tracked.h', |
243 'tracked_objects.cc', | 243 'tracked_objects.cc', |
244 'tracked_objects.h', | 244 'tracked_objects.h', |
245 'tuple.h', | 245 'tuple.h', |
246 'values.cc', | 246 'values.cc', |
247 'values.h', | 247 'values.h', |
248 'waitable_event.h', | 248 'waitable_event.h', |
249 'waitable_event_win.cc', | 249 'waitable_event_win.cc', |
| 250 'waitable_event_watcher_win.cc', |
250 'watchdog.cc', | 251 'watchdog.cc', |
251 'watchdog.h', | 252 'watchdog.h', |
252 'win_util.cc', | 253 'win_util.cc', |
253 'win_util.h', | 254 'win_util.h', |
254 'windows_message_list.h', | 255 'windows_message_list.h', |
255 'wmi_util.cc', | 256 'wmi_util.cc', |
256 'wmi_util.h', | 257 'wmi_util.h', |
257 'word_iterator.cc', | 258 'word_iterator.cc', |
258 'word_iterator.h', | 259 'word_iterator.h', |
259 'worker_pool.cc', | 260 'worker_pool.cc', |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
447 tools=[ | 448 tools=[ |
448 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 449 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
449 ]) | 450 ]) |
450 | 451 |
451 p.AddFileConfig( | 452 p.AddFileConfig( |
452 'third_party/dmg_fp/g_fmt.cc', | 453 'third_party/dmg_fp/g_fmt.cc', |
453 'Release|Win32', | 454 'Release|Win32', |
454 tools=[ | 455 tools=[ |
455 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 456 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
456 ]) | 457 ]) |
OLD | NEW |