| 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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 180 'revocable_store.cc', | 180 'revocable_store.cc', |
| 181 'revocable_store.h', | 181 'revocable_store.h', |
| 182 'scoped_bstr_win.cc', | 182 'scoped_bstr_win.cc', |
| 183 'scoped_bstr_win.h', | 183 'scoped_bstr_win.h', |
| 184 'scoped_clipboard_writer.cc', | 184 'scoped_clipboard_writer.cc', |
| 185 'scoped_clipboard_writer.h', | 185 'scoped_clipboard_writer.h', |
| 186 'scoped_comptr_win.h', | 186 'scoped_comptr_win.h', |
| 187 'scoped_handle.h', | 187 'scoped_handle.h', |
| 188 'scoped_nsautorelease_pool.h', | 188 'scoped_nsautorelease_pool.h', |
| 189 'scoped_ptr.h', | 189 'scoped_ptr.h', |
| 190 'scoped_temp_dir.cc', |
| 191 'scoped_temp_dir.h', |
| 190 'sha2.cc', | 192 'sha2.cc', |
| 191 'sha2.h', | 193 'sha2.h', |
| 192 'third_party/nss/sha256.h', | 194 'third_party/nss/sha256.h', |
| 193 'third_party/nss/sha512.cc', | 195 'third_party/nss/sha512.cc', |
| 194 'shared_memory.h', | 196 'shared_memory.h', |
| 195 'shared_memory_win.cc', | 197 'shared_memory_win.cc', |
| 196 'simple_thread.cc', | 198 'simple_thread.cc', |
| 197 'simple_thread.h', | 199 'simple_thread.h', |
| 198 'singleton.h', | 200 'singleton.h', |
| 199 'spin_wait.h', | 201 'spin_wait.h', |
| (...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 tools=[ | 454 tools=[ |
| 453 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 455 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 454 ]) | 456 ]) |
| 455 | 457 |
| 456 p.AddFileConfig( | 458 p.AddFileConfig( |
| 457 'third_party/dmg_fp/g_fmt.cc', | 459 'third_party/dmg_fp/g_fmt.cc', |
| 458 'Release|Win32', | 460 'Release|Win32', |
| 459 tools=[ | 461 tools=[ |
| 460 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 462 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 461 ]) | 463 ]) |
| OLD | NEW |