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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 'platform_file_win.cc', | 141 'platform_file_win.cc', |
142 'platform_thread_win.cc', | 142 'platform_thread_win.cc', |
143 'process_util_win.cc', | 143 'process_util_win.cc', |
144 'process_win.cc', | 144 'process_win.cc', |
145 'rand_util_win.cc', | 145 'rand_util_win.cc', |
146 'registry.cc', | 146 'registry.cc', |
147 'shared_memory_win.cc', | 147 'shared_memory_win.cc', |
148 'sys_info_win.cc', | 148 'sys_info_win.cc', |
149 'sys_string_conversions_win.cc', | 149 'sys_string_conversions_win.cc', |
150 'system_monitor_win.cc', | 150 'system_monitor_win.cc', |
| 151 'test_file_util_win.cc', |
151 'thread_local_storage_win.cc', | 152 'thread_local_storage_win.cc', |
152 'thread_local_win.cc', | 153 'thread_local_win.cc', |
153 'third_party/purify/pure_api.c', | 154 'third_party/purify/pure_api.c', |
154 'time_win.cc', | 155 'time_win.cc', |
155 'waitable_event_win.cc', | 156 'waitable_event_win.cc', |
156 'win_util.cc', | 157 'win_util.cc', |
157 'wmi_util.cc', | 158 'wmi_util.cc', |
158 'worker_pool.cc', | 159 'worker_pool.cc', |
159 ]) | 160 ]) |
160 | 161 |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
202 'hmac_nss.cc', | 203 'hmac_nss.cc', |
203 'message_pump_glib.cc', | 204 'message_pump_glib.cc', |
204 'nss_init.cc', | 205 'nss_init.cc', |
205 'process_posix.cc', | 206 'process_posix.cc', |
206 'process_util_linux.cc', | 207 'process_util_linux.cc', |
207 'sys_string_conversions_linux.cc', | 208 'sys_string_conversions_linux.cc', |
208 'worker_pool.cc', | 209 'worker_pool.cc', |
209 ]) | 210 ]) |
210 | 211 |
211 env.ChromeStaticLibrary('base', input_files) | 212 env.ChromeStaticLibrary('base', input_files) |
OLD | NEW |