diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-25 22:46:59 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-11-25 22:46:59 +0000 |
commit | 95ab1553ce02175cf23278d80b8440b27740159c (patch) | |
tree | 56fc9eb4c803368b24b191c108f143c8009eb03c /base/base_lib.scons | |
parent | d8375fdbe8d32ad3562152ecd53378383e393971 (diff) | |
download | chromium_src-95ab1553ce02175cf23278d80b8440b27740159c.zip chromium_src-95ab1553ce02175cf23278d80b8440b27740159c.tar.gz chromium_src-95ab1553ce02175cf23278d80b8440b27740159c.tar.bz2 |
Port base/watchdog to Linux.
BUG=4632
Review URL: http://codereview.chromium.org/11326
Patch from Pawel Hajdan Jr.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@6004 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base_lib.scons')
-rw-r--r-- | base/base_lib.scons | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/base/base_lib.scons b/base/base_lib.scons index b2caa8b..b84d1c1 100644 --- a/base/base_lib.scons +++ b/base/base_lib.scons @@ -21,8 +21,8 @@ if env['PLATFORM'] == 'win32': ], ) -# These base files work on *all* platforms; files that don't work -# cross-platform live below. +# Some files from this list are not yet ported. They are removed from +# the list, see code below. input_files = [ 'at_exit.cc', 'base_paths.cc', @@ -109,14 +109,11 @@ if env['PLATFORM'] in ('posix', 'darwin'): 'event_recorder.cc', 'file_version_info.cc', - # This group all depends on MessageLoop. - # We have an implementation of idle_timer, but it's unclear if we want it # yet, so it's commented out for now. Leave this 'unported'. 'idle_timer.cc', 'object_watcher.cc', - 'watchdog.cc', 'resource_util.cc', # Uses HMODULE, but may be abstractable. ] |