| 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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 153 'path_service.h', | 153 'path_service.h', |
| 154 'pe_image.cc', | 154 'pe_image.cc', |
| 155 'pe_image.h', | 155 'pe_image.h', |
| 156 'pickle.cc', | 156 'pickle.cc', |
| 157 'pickle.h', | 157 'pickle.h', |
| 158 'platform_file.h', | 158 'platform_file.h', |
| 159 'platform_file_win.cc', | 159 'platform_file_win.cc', |
| 160 'platform_thread.h', | 160 'platform_thread.h', |
| 161 'platform_thread_win.cc', | 161 'platform_thread_win.cc', |
| 162 'port.h', | 162 'port.h', |
| 163 'profiler.cc', |
| 164 'profiler.h', |
| 163 'third_party/nspr/prcpucfg.h', | 165 'third_party/nspr/prcpucfg.h', |
| 164 'third_party/nspr/prcpucfg_win.h', | 166 'third_party/nspr/prcpucfg_win.h', |
| 165 'process.h', | 167 'process.h', |
| 166 'process_util.h', | 168 'process_util.h', |
| 167 'process_util_win.cc', | 169 'process_util_win.cc', |
| 168 'process_win.cc', | 170 'process_win.cc', |
| 169 'third_party/nspr/prtime.cc', | 171 'third_party/nspr/prtime.cc', |
| 170 'third_party/nspr/prtime.h', | 172 'third_party/nspr/prtime.h', |
| 171 'third_party/nspr/prtypes.h', | 173 'third_party/nspr/prtypes.h', |
| 172 'third_party/purify/pure.h', | 174 'third_party/purify/pure.h', |
| (...skipping 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 467 tools=[ | 469 tools=[ |
| 468 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 470 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 469 ]) | 471 ]) |
| 470 | 472 |
| 471 p.AddFileConfig( | 473 p.AddFileConfig( |
| 472 'third_party/dmg_fp/g_fmt.cc', | 474 'third_party/dmg_fp/g_fmt.cc', |
| 473 'Release|Win32', | 475 'Release|Win32', |
| 474 tools=[ | 476 tools=[ |
| 475 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 477 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 476 ]) | 478 ]) |
| OLD | NEW |