| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'icu_util.h', | 113 'icu_util.h', |
| 114 'id_map.h', | 114 'id_map.h', |
| 115 'idle_timer.cc', | 115 'idle_timer.cc', |
| 116 'idle_timer.h', | 116 'idle_timer.h', |
| 117 'image_util.cc', | 117 'image_util.cc', |
| 118 'image_util.h', | 118 'image_util.h', |
| 119 'json_reader.cc', | 119 'json_reader.cc', |
| 120 'json_reader.h', | 120 'json_reader.h', |
| 121 'json_writer.cc', | 121 'json_writer.cc', |
| 122 'json_writer.h', | 122 'json_writer.h', |
| 123 'keyboard_codes.h', |
| 124 'keyboard_codes_posix.h', |
| 125 'keyboard_codes_win.h', |
| 123 'lazy_instance.cc', | 126 'lazy_instance.cc', |
| 124 'lazy_instance.h', | 127 'lazy_instance.h', |
| 125 'linked_ptr.h', | 128 'linked_ptr.h', |
| 126 'lock.cc', | 129 'lock.cc', |
| 127 'lock.h', | 130 'lock.h', |
| 128 'lock_impl.h', | 131 'lock_impl.h', |
| 129 'lock_impl_win.cc', | 132 'lock_impl_win.cc', |
| 130 'logging.cc', | 133 'logging.cc', |
| 131 'logging.h', | 134 'logging.h', |
| 132 'md5.cc', | 135 'md5.cc', |
| (...skipping 319 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 452 tools=[ | 455 tools=[ |
| 453 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 456 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 454 ]) | 457 ]) |
| 455 | 458 |
| 456 p.AddFileConfig( | 459 p.AddFileConfig( |
| 457 'third_party/dmg_fp/g_fmt.cc', | 460 'third_party/dmg_fp/g_fmt.cc', |
| 458 'Release|Win32', | 461 'Release|Win32', |
| 459 tools=[ | 462 tools=[ |
| 460 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), | 463 MSVSTool('VCCLCompilerTool', DisableSpecificWarnings='4102'), |
| 461 ]) | 464 ]) |
| OLD | NEW |