| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 'simple_thread.cc', | 66 'simple_thread.cc', |
| 67 'stats_table.cc', | 67 'stats_table.cc', |
| 68 'string_escape.cc', | 68 'string_escape.cc', |
| 69 'string_piece.cc', | 69 'string_piece.cc', |
| 70 'string_util.cc', | 70 'string_util.cc', |
| 71 'string_util_icu.cc', | 71 'string_util_icu.cc', |
| 72 'system_monitor.cc', | 72 'system_monitor.cc', |
| 73 'third_party/nspr/prtime.cc', | 73 'third_party/nspr/prtime.cc', |
| 74 'third_party/nss/sha512.cc', | 74 'third_party/nss/sha512.cc', |
| 75 'thread.cc', | 75 'thread.cc', |
| 76 'thread_collision_warner.cc', |
| 76 'time.cc', | 77 'time.cc', |
| 77 'time_format.cc', | 78 'time_format.cc', |
| 78 'timer.cc', | 79 'timer.cc', |
| 79 'trace_event.cc', | 80 'trace_event.cc', |
| 80 'tracked.cc', | 81 'tracked.cc', |
| 81 'tracked_objects.cc', | 82 'tracked_objects.cc', |
| 82 'values.cc', | 83 'values.cc', |
| 83 'watchdog.cc', | 84 'watchdog.cc', |
| 84 'word_iterator.cc', | 85 'word_iterator.cc', |
| 85 ] | 86 ] |
| (...skipping 95 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 |