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

Unified Diff: content/content_common.gypi

Issue 6670081: Move FilePathWatcher class from browser/... to common/... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix up linux clang issue, and clean up bad commented block 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
« no previous file with comments | « content/common/file_path_watcher/file_path_watcher_win.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/content_common.gypi
diff --git a/content/content_common.gypi b/content/content_common.gypi
index 57299ee6b46632e05e52a074aca0ae123ba76a8b..3f2ab5a628167137b1309fa7fd0f6fc05dc0f3a0 100644
--- a/content/content_common.gypi
+++ b/content/content_common.gypi
@@ -58,10 +58,15 @@
'common/db_message_filter.h',
'common/debug_flags.cc',
'common/debug_flags.h',
- 'common/dx_diag_node.cc',
- 'common/dx_diag_node.h',
'common/dom_storage_common.h',
'common/dom_storage_messages.h',
+ 'common/dx_diag_node.cc',
+ 'common/dx_diag_node.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/file_system/file_system_dispatcher.cc',
'common/file_system/file_system_dispatcher.h',
'common/file_system/webfilesystem_callback_dispatcher.cc',
@@ -93,7 +98,7 @@
'common/indexed_db_messages.h',
'common/indexed_db_param_traits.cc',
'common/indexed_db_param_traits.h',
- 'common/main_function_params.h',
+ 'common/main_function_params.h',
'common/message_router.cc',
'common/message_router.h',
'common/mime_registry_messages.h',
@@ -174,6 +179,16 @@
['OS=="win"', {
'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4',
}],
+ ['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',
+ ],
+ }],
['OS=="mac"', {
'sources!': [
'common/process_watcher_posix.cc',
« no previous file with comments | « content/common/file_path_watcher/file_path_watcher_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698