| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 'platform_thread_mac.mm', | 168 'platform_thread_mac.mm', |
| 169 'scoped_nsautorelease_pool.mm', | 169 'scoped_nsautorelease_pool.mm', |
| 170 'sys_string_conversions_mac.mm', | 170 'sys_string_conversions_mac.mm', |
| 171 'worker_pool_mac.mm', | 171 'worker_pool_mac.mm', |
| 172 ]) | 172 ]) |
| 173 | 173 |
| 174 if env['PLATFORM'] == 'posix': | 174 if env['PLATFORM'] == 'posix': |
| 175 input_files.extend([ | 175 input_files.extend([ |
| 176 'atomicops_internals_x86_gcc.cc', | 176 'atomicops_internals_x86_gcc.cc', |
| 177 'base_paths_linux.cc', | 177 'base_paths_linux.cc', |
| 178 'clipboard_linux.cc', |
| 178 'file_util_linux.cc', | 179 'file_util_linux.cc', |
| 179 'hmac_nss.cc', | 180 'hmac_nss.cc', |
| 180 'message_pump_glib.cc', | 181 'message_pump_glib.cc', |
| 181 'nss_init.cc', | 182 'nss_init.cc', |
| 182 'process_posix.cc', | 183 'process_posix.cc', |
| 183 'process_util_linux.cc', | 184 'process_util_linux.cc', |
| 184 'sys_string_conversions_linux.cc', | 185 'sys_string_conversions_linux.cc', |
| 185 'worker_pool.cc', | 186 'worker_pool.cc', |
| 186 ]) | 187 ]) |
| 187 | 188 |
| 188 base_lib = env.ChromeStaticLibrary('base', input_files) | 189 base_lib = env.ChromeStaticLibrary('base', input_files) |
| 189 env.Alias('base', base_lib) | 190 env.Alias('base', base_lib) |
| OLD | NEW |