diff options
author | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-15 01:57:07 +0000 |
---|---|---|
committer | tony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-15 01:57:07 +0000 |
commit | d6f9c9e2adb5c36fe4091f70ecda64e69dc031b4 (patch) | |
tree | 9f4e6d8d010a33244e2acfc2f20de26ded8a375e /base/base.gypi | |
parent | e0fc2f1f81f13440af3bb4cf5e56a031f91fc163 (diff) | |
download | chromium_src-d6f9c9e2adb5c36fe4091f70ecda64e69dc031b4.zip chromium_src-d6f9c9e2adb5c36fe4091f70ecda64e69dc031b4.tar.gz chromium_src-d6f9c9e2adb5c36fe4091f70ecda64e69dc031b4.tar.bz2 |
Move FileWatcher from src/base/ to src/chrome/browser/ and switch
it from using MessageLoop to post tasks to using
ChromeThread::PostTask, which is safer.
Review URL: http://codereview.chromium.org/864001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41560 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/base.gypi')
-rw-r--r-- | base/base.gypi | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/base/base.gypi b/base/base.gypi index a251641..72ce24d 100644 --- a/base/base.gypi +++ b/base/base.gypi @@ -293,7 +293,6 @@ 'sources!': [ 'atomicops_internals_x86_gcc.cc', 'base_paths_posix.cc', - 'file_watcher_inotify.cc', 'linux_util.cc', 'message_pump_glib.cc', ], @@ -316,17 +315,6 @@ 'sources/': [ ['exclude', '_openbsd\\.cc$'] ], }, ], - [ 'GENERATOR == "quentin"', { - # Quentin builds don't have a recent enough glibc to include the - # inotify headers - 'sources!': [ - 'file_watcher_inotify.cc', - ], - 'sources': [ - 'file_watcher_stub.cc', - ], - }, - ], [ 'OS == "mac"', { 'sources!': [ # TODO(wtc): Remove nss_util.{cc,h} when http://crbug.com/30689 @@ -421,12 +409,6 @@ ], },], [ 'OS == "freebsd" or OS == "openbsd"', { - 'sources!': [ - 'file_watcher_inotify.cc', - ], - 'sources': [ - 'file_watcher_stub.cc', - ], 'link_settings': { 'libraries': [ '-L/usr/local/lib -lexecinfo', @@ -506,10 +488,6 @@ 'base_drop_target.cc', 'base_drop_target.h', 'data_pack.cc', - 'file_watcher.h', - 'file_watcher_inotify.cc', - 'file_watcher_mac.cc', - 'file_watcher_win.cc', 'dynamic_annotations.h', 'dynamic_annotations.cc', 'event_recorder.cc', |