| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 if env['PLATFORM'] == 'win32': | 105 if env['PLATFORM'] == 'win32': |
| 106 input_files.extend([ | 106 input_files.extend([ |
| 107 'base_drag_source.cc', | 107 'base_drag_source.cc', |
| 108 'base_drop_target.cc', | 108 'base_drop_target.cc', |
| 109 'base_paths_win.cc', | 109 'base_paths_win.cc', |
| 110 'clipboard_win.cc', | 110 'clipboard_win.cc', |
| 111 'condition_variable_win.cc', | 111 'condition_variable_win.cc', |
| 112 'cpu.cc', | 112 'cpu.cc', |
| 113 'debug_on_start.cc', | 113 'debug_on_start.cc', |
| 114 'debug_util_win.cc', | 114 'debug_util_win.cc', |
| 115 'directory_watcher_win.cc', |
| 115 'file_util_win.cc', | 116 'file_util_win.cc', |
| 116 'hmac_win.cc', | 117 'hmac_win.cc', |
| 117 'iat_patch.cc', | 118 'iat_patch.cc', |
| 118 'image_util.cc', | 119 'image_util.cc', |
| 119 'lock_impl_win.cc', | 120 'lock_impl_win.cc', |
| 120 'message_pump_win.cc', | 121 'message_pump_win.cc', |
| 121 'pe_image.cc', | 122 'pe_image.cc', |
| 122 'platform_thread_win.cc', | 123 'platform_thread_win.cc', |
| 123 'process_util_win.cc', | 124 'process_util_win.cc', |
| 124 'process_win.cc', | 125 'process_win.cc', |
| (...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 'message_pump_glib.cc', | 180 'message_pump_glib.cc', |
| 180 'nss_init.cc', | 181 'nss_init.cc', |
| 181 'process_posix.cc', | 182 'process_posix.cc', |
| 182 'process_util_linux.cc', | 183 'process_util_linux.cc', |
| 183 'sys_string_conversions_linux.cc', | 184 'sys_string_conversions_linux.cc', |
| 184 'worker_pool.cc', | 185 'worker_pool.cc', |
| 185 ]) | 186 ]) |
| 186 | 187 |
| 187 base_lib = env.ChromeStaticLibrary('base', input_files) | 188 base_lib = env.ChromeStaticLibrary('base', input_files) |
| 188 env.Alias('base', base_lib) | 189 env.Alias('base', base_lib) |
| OLD | NEW |