| 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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 'process_util_win.cc', | 146 'process_util_win.cc', |
| 147 'process_win.cc', | 147 'process_win.cc', |
| 148 'rand_util_win.cc', | 148 'rand_util_win.cc', |
| 149 'registry.cc', | 149 'registry.cc', |
| 150 'shared_memory_win.cc', | 150 'shared_memory_win.cc', |
| 151 'sys_info_win.cc', | 151 'sys_info_win.cc', |
| 152 'sys_string_conversions_win.cc', | 152 'sys_string_conversions_win.cc', |
| 153 'system_monitor_win.cc', | 153 'system_monitor_win.cc', |
| 154 'thread_local_storage_win.cc', | 154 'thread_local_storage_win.cc', |
| 155 'thread_local_win.cc', | 155 'thread_local_win.cc', |
| 156 'third_party/purify/pure_api.c', |
| 156 'time_win.cc', | 157 'time_win.cc', |
| 157 'waitable_event_win.cc', | 158 'waitable_event_win.cc', |
| 158 'win_util.cc', | 159 'win_util.cc', |
| 159 'wmi_util.cc', | 160 'wmi_util.cc', |
| 160 'worker_pool.cc', | 161 'worker_pool.cc', |
| 161 ]) | 162 ]) |
| 162 | 163 |
| 163 if env['PLATFORM'] in ('darwin', 'posix'): | 164 if env['PLATFORM'] in ('darwin', 'posix'): |
| 164 input_files.extend([ | 165 input_files.extend([ |
| 165 'condition_variable_posix.cc', | 166 'condition_variable_posix.cc', |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 'hmac_nss.cc', | 205 'hmac_nss.cc', |
| 205 'message_pump_glib.cc', | 206 'message_pump_glib.cc', |
| 206 'nss_init.cc', | 207 'nss_init.cc', |
| 207 'process_posix.cc', | 208 'process_posix.cc', |
| 208 'process_util_linux.cc', | 209 'process_util_linux.cc', |
| 209 'sys_string_conversions_linux.cc', | 210 'sys_string_conversions_linux.cc', |
| 210 'worker_pool.cc', | 211 'worker_pool.cc', |
| 211 ]) | 212 ]) |
| 212 | 213 |
| 213 env.ChromeStaticLibrary('base', input_files) | 214 env.ChromeStaticLibrary('base', input_files) |
| OLD | NEW |