| 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 184 'base_paths_mac.mm', | 184 'base_paths_mac.mm', |
| 185 'clipboard_mac.mm', | 185 'clipboard_mac.mm', |
| 186 'file_util_mac.mm', | 186 'file_util_mac.mm', |
| 187 'file_version_info_mac.mm', | 187 'file_version_info_mac.mm', |
| 188 'hmac_mac.cc', | 188 'hmac_mac.cc', |
| 189 'mac_util.mm', | 189 'mac_util.mm', |
| 190 'message_pump_mac.mm', | 190 'message_pump_mac.mm', |
| 191 'platform_thread_mac.mm', | 191 'platform_thread_mac.mm', |
| 192 'scoped_nsautorelease_pool.mm', | 192 'scoped_nsautorelease_pool.mm', |
| 193 'sys_string_conversions_mac.mm', | 193 'sys_string_conversions_mac.mm', |
| 194 'test_file_util_mac.cc', |
| 194 'worker_pool_mac.mm', | 195 'worker_pool_mac.mm', |
| 195 ]) | 196 ]) |
| 196 | 197 |
| 197 if env['PLATFORM'] == 'posix': | 198 if env['PLATFORM'] == 'posix': |
| 198 input_files.extend([ | 199 input_files.extend([ |
| 199 'atomicops_internals_x86_gcc.cc', | 200 'atomicops_internals_x86_gcc.cc', |
| 200 'base_paths_linux.cc', | 201 'base_paths_linux.cc', |
| 201 'clipboard_linux.cc', | 202 'clipboard_linux.cc', |
| 202 'file_util_linux.cc', | 203 'file_util_linux.cc', |
| 203 'file_version_info_linux.cc', | 204 'file_version_info_linux.cc', |
| 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', |
| 211 'test_file_util_linux.cc', |
| 210 'worker_pool.cc', | 212 'worker_pool.cc', |
| 211 ]) | 213 ]) |
| 212 | 214 |
| 213 env.ChromeStaticLibrary('base', input_files) | 215 env.ChromeStaticLibrary('base', input_files) |
| OLD | NEW |