diff options
Diffstat (limited to 'base/base_lib.scons')
-rw-r--r-- | base/base_lib.scons | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/base/base_lib.scons b/base/base_lib.scons index afb82ea..ac27c3c 100644 --- a/base/base_lib.scons +++ b/base/base_lib.scons @@ -277,8 +277,9 @@ if env.Bit('posix'): 'event_recorder.cc', 'file_version_info.cc', - # 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'. + # We have an implementation of idle_timer that depends on XScreenSaver, + # 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', @@ -286,6 +287,11 @@ if env.Bit('posix'): 'resource_util.cc', # Uses HMODULE, but may be abstractable. ) + input_files.Append( + # See above note about idle_timer.cc. + 'idle_timer_none.cc', + ) + if not env.Bit('windows'): # Remove windows-specific files on non-Windows platforms. # TODO(sgk): |