| 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 21 matching lines...) Expand all Loading... |
| 32 # cross-platform live below. | 32 # cross-platform live below. |
| 33 input_files = [ | 33 input_files = [ |
| 34 'at_exit.cc', | 34 'at_exit.cc', |
| 35 'base_paths.cc', | 35 'base_paths.cc', |
| 36 'base_switches.cc', | 36 'base_switches.cc', |
| 37 'bzip2_error_handler.cc', | 37 'bzip2_error_handler.cc', |
| 38 'clipboard_util.cc', | 38 'clipboard_util.cc', |
| 39 'command_line.cc', | 39 'command_line.cc', |
| 40 'debug_util.cc', | 40 'debug_util.cc', |
| 41 'event_recorder.cc', | 41 'event_recorder.cc', |
| 42 'field_trial.cc', |
| 42 'file_path.cc', | 43 'file_path.cc', |
| 43 'file_util.cc', | 44 'file_util.cc', |
| 44 'file_version_info.cc', | 45 'file_version_info.cc', |
| 45 'histogram.cc', | 46 'histogram.cc', |
| 46 'icu_util.cc', | 47 'icu_util.cc', |
| 47 'idle_timer.cc', | 48 'idle_timer.cc', |
| 48 'json_reader.cc', | 49 'json_reader.cc', |
| 49 'json_writer.cc', | 50 'json_writer.cc', |
| 50 'lazy_instance.cc', | 51 'lazy_instance.cc', |
| 51 'lock.cc', | 52 'lock.cc', |
| (...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 181 'message_pump_glib.cc', | 182 'message_pump_glib.cc', |
| 182 'nss_init.cc', | 183 'nss_init.cc', |
| 183 'process_posix.cc', | 184 'process_posix.cc', |
| 184 'process_util_linux.cc', | 185 'process_util_linux.cc', |
| 185 'sys_string_conversions_linux.cc', | 186 'sys_string_conversions_linux.cc', |
| 186 'worker_pool.cc', | 187 'worker_pool.cc', |
| 187 ]) | 188 ]) |
| 188 | 189 |
| 189 base_lib = env.ChromeStaticLibrary('base', input_files) | 190 base_lib = env.ChromeStaticLibrary('base', input_files) |
| 190 env.Alias('base', base_lib) | 191 env.Alias('base', base_lib) |
| OLD | NEW |