| 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 17 matching lines...) Expand all Loading... |
| 28 ], | 28 ], |
| 29 ) | 29 ) |
| 30 | 30 |
| 31 # These base files work on *all* platforms; files that don't work | 31 # These base files work on *all* platforms; files that don't work |
| 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.cc', |
| 38 'clipboard_util.cc', | 39 'clipboard_util.cc', |
| 39 'command_line.cc', | 40 'command_line.cc', |
| 40 'debug_util.cc', | 41 'debug_util.cc', |
| 41 'event_recorder.cc', | 42 'event_recorder.cc', |
| 42 'field_trial.cc', | 43 'field_trial.cc', |
| 43 'file_path.cc', | 44 'file_path.cc', |
| 44 'file_util.cc', | 45 'file_util.cc', |
| 45 'file_version_info.cc', | 46 'file_version_info.cc', |
| 46 'histogram.cc', | 47 'histogram.cc', |
| 47 'icu_util.cc', | 48 'icu_util.cc', |
| 48 'idle_timer.cc', | 49 'idle_timer.cc', |
| 49 'json_reader.cc', | 50 'json_reader.cc', |
| 50 'json_writer.cc', | 51 'json_writer.cc', |
| 51 'lazy_instance.cc', | 52 'lazy_instance.cc', |
| 52 'lock.cc', | 53 'lock.cc', |
| 53 'logging.cc', | 54 'logging.cc', |
| 54 'md5.cc', | 55 'md5.cc', |
| 55 'memory_debug.cc', | 56 'memory_debug.cc', |
| 56 'message_loop.cc', | 57 'message_loop.cc', |
| 57 'message_pump_default.cc', | 58 'message_pump_default.cc', |
| 58 'non_thread_safe.cc', | 59 'non_thread_safe.cc', |
| 59 'object_watcher.cc', | 60 'object_watcher.cc', |
| 60 'path_service.cc', | 61 'path_service.cc', |
| 61 'pickle.cc', | 62 'pickle.cc', |
| 62 'rand_util.cc', | 63 'rand_util.cc', |
| 63 'ref_counted.cc', | 64 'ref_counted.cc', |
| 64 'resource_util.cc', | 65 'resource_util.cc', |
| 65 'revocable_store.cc', | 66 'revocable_store.cc', |
| 67 'scoped_clipboard_writer.cc', |
| 66 'sha2.cc', | 68 'sha2.cc', |
| 67 'simple_thread.cc', | 69 'simple_thread.cc', |
| 68 'stats_table.cc', | 70 'stats_table.cc', |
| 69 'string_escape.cc', | 71 'string_escape.cc', |
| 70 'string_piece.cc', | 72 'string_piece.cc', |
| 71 'string_util.cc', | 73 'string_util.cc', |
| 72 'string_util_icu.cc', | 74 'string_util_icu.cc', |
| 73 'system_monitor.cc', | 75 'system_monitor.cc', |
| 74 'third_party/nspr/prtime.cc', | 76 'third_party/nspr/prtime.cc', |
| 75 'third_party/nss/sha512.cc', | 77 'third_party/nss/sha512.cc', |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 183 'message_pump_glib.cc', | 185 'message_pump_glib.cc', |
| 184 'nss_init.cc', | 186 'nss_init.cc', |
| 185 'process_posix.cc', | 187 'process_posix.cc', |
| 186 'process_util_linux.cc', | 188 'process_util_linux.cc', |
| 187 'sys_string_conversions_linux.cc', | 189 'sys_string_conversions_linux.cc', |
| 188 'worker_pool.cc', | 190 'worker_pool.cc', |
| 189 ]) | 191 ]) |
| 190 | 192 |
| 191 base_lib = env.ChromeStaticLibrary('base', input_files) | 193 base_lib = env.ChromeStaticLibrary('base', input_files) |
| 192 env.Alias('base', base_lib) | 194 env.Alias('base', base_lib) |
| OLD | NEW |