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

Unified Diff: chrome/chrome_common.gypi

Issue 6670081: Move FilePathWatcher class from browser/... to common/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 9 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
Index: chrome/chrome_common.gypi
diff --git a/chrome/chrome_common.gypi b/chrome/chrome_common.gypi
index 93e08d85d708b9facea92e63431bb30b9e9db185..646904a06907c926645e4043ce445411a09d9ddb 100644
--- a/chrome/chrome_common.gypi
+++ b/chrome/chrome_common.gypi
@@ -18,6 +18,16 @@
'<(DEPTH)/third_party/wtl/include',
],
}],
+ ['OS!="linux"', {
+ 'sources!': [
+ 'common/file_path_watcher/file_path_watcher_inotify.cc',
+ ],
+ }],
+ ['OS=="freebsd" or OS=="openbsd"', {
+ 'sources': [
+ 'common/file_path_watcher/file_path_watcher_stub.cc',
+ ],
+ }],
],
'sources': [
# .cc, .h, and .mm files under chrome/common that are used on all
@@ -54,6 +64,11 @@
'common/devtools_messages.h',
'common/dom_storage_messages.cc',
'common/dom_storage_messages.h',
+ 'common/file_path_watcher/file_path_watcher.cc',
+ 'common/file_path_watcher/file_path_watcher.h',
+ 'common/file_path_watcher/file_path_watcher_inotify.cc',
+ 'common/file_path_watcher/file_path_watcher_mac.cc',
+ 'common/file_path_watcher/file_path_watcher_win.cc',
'common/font_config_ipc_linux.cc',
'common/font_config_ipc_linux.h',
'common/geoposition.cc',

Powered by Google App Engine
This is Rietveld 408576698