diff options
author | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-29 22:18:01 +0000 |
---|---|---|
committer | mark@chromium.org <mark@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-09-29 22:18:01 +0000 |
commit | 05f9b688e319fcb092be0e06f7b72d39dd3113b3 (patch) | |
tree | 6d24be7f9b788bbebbff6b2349e51dec49034ce6 /base/SConscript | |
parent | 86ec30d6710923cf1c193eb88b1e6251f831e0ef (diff) | |
download | chromium_src-05f9b688e319fcb092be0e06f7b72d39dd3113b3.zip chromium_src-05f9b688e319fcb092be0e06f7b72d39dd3113b3.tar.gz chromium_src-05f9b688e319fcb092be0e06f7b72d39dd3113b3.tar.bz2 |
Refactoring for portability:
- Move chrome/common/env_util to base/sys_info
- Move chrome/common/rand_util to base/rand_util (new), simplify its public
interface, and fix its implementation
Patch by Paweł Hajdan, Jr. <phajdan.jr@gmail.com>
http://codereview.chromium.org/4079
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2697 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/SConscript')
-rw-r--r-- | base/SConscript | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/base/SConscript b/base/SConscript index 11858d1..939ab6e 100644 --- a/base/SConscript +++ b/base/SConscript @@ -50,6 +50,7 @@ input_files = [ 'non_thread_safe.cc', 'path_service.cc', 'pickle.cc', + 'rand_util.cc', 'ref_counted.cc', 'revocable_store.cc', 'sha2.cc', @@ -113,6 +114,7 @@ if env['PLATFORM'] == 'win32': 'pe_image.cc', 'platform_thread_win.cc', 'process_util_win.cc', + 'rand_util_win.cc', 'registry.cc', 'shared_memory_win.cc', 'sys_info_win.cc', @@ -136,6 +138,7 @@ if env['PLATFORM'] in ('darwin', 'posix'): 'message_pump_libevent.cc', 'platform_thread_posix.cc', 'process_util_posix.cc', + 'rand_util_posix.cc', 'shared_memory_posix.cc', 'string16.cc', 'sys_info_posix.cc', @@ -261,6 +264,7 @@ test_files = [ 'path_service_unittest.cc', 'pickle_unittest.cc', 'pr_time_unittest.cc', + 'rand_util_unittest.cc', 'ref_counted_unittest.cc', 'run_all_unittests.cc', 'scoped_ptr_unittest.cc', |