Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(235)

Unified Diff: base/base_lib.scons

Issue 19683: Create a stub chrome executable that crashes when run. (Closed)
Patch Set: rebase Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/idle_timer_none.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/base_lib.scons
diff --git a/base/base_lib.scons b/base/base_lib.scons
index afb82eae0a55d10d93bc3e03563a79a2c9d155c6..ac27c3c03d6a4e0a7d9174621c539feb357e9ebf 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):
« no previous file with comments | « no previous file | base/idle_timer_none.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698