OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'content_common', | 8 'target_name': 'content_common', |
9 'type': '<(library)', | 9 'type': '<(library)', |
10 'dependencies': [ | 10 'dependencies': [ |
(...skipping 10 matching lines...) Expand all Loading... |
21 'common/child_thread.cc', | 21 'common/child_thread.cc', |
22 'common/child_thread.h', | 22 'common/child_thread.h', |
23 'common/common_param_traits.cc', | 23 'common/common_param_traits.cc', |
24 'common/common_param_traits.h', | 24 'common/common_param_traits.h', |
25 'common/content_message_generator.cc', | 25 'common/content_message_generator.cc', |
26 'common/content_message_generator.h', | 26 'common/content_message_generator.h', |
27 'common/content_constants.cc', | 27 'common/content_constants.cc', |
28 'common/content_constants.h', | 28 'common/content_constants.h', |
29 'common/content_switches.cc', | 29 'common/content_switches.cc', |
30 'common/content_switches.h', | 30 'common/content_switches.h', |
| 31 'common/file_path_watcher/file_path_watcher.cc', |
| 32 'common/file_path_watcher/file_path_watcher.h', |
| 33 'common/file_path_watcher/file_path_watcher_inotify.cc', |
| 34 'common/file_path_watcher/file_path_watcher_mac.cc', |
| 35 'common/file_path_watcher/file_path_watcher_win.cc', |
31 'common/file_system/file_system_dispatcher.cc', | 36 'common/file_system/file_system_dispatcher.cc', |
32 'common/file_system/file_system_dispatcher.h', | 37 'common/file_system/file_system_dispatcher.h', |
33 'common/file_system/webfilesystem_callback_dispatcher.cc', | 38 'common/file_system/webfilesystem_callback_dispatcher.cc', |
34 'common/file_system/webfilesystem_callback_dispatcher.h', | 39 'common/file_system/webfilesystem_callback_dispatcher.h', |
35 'common/file_system/webfilesystem_impl.cc', | 40 'common/file_system/webfilesystem_impl.cc', |
36 'common/file_system/webfilesystem_impl.h', | 41 'common/file_system/webfilesystem_impl.h', |
37 'common/file_system/webfilewriter_impl.cc', | 42 'common/file_system/webfilewriter_impl.cc', |
38 'common/file_system/webfilewriter_impl.h', | 43 'common/file_system/webfilewriter_impl.h', |
39 'common/file_system_messages.h', | 44 'common/file_system_messages.h', |
40 'common/message_router.cc', | 45 'common/message_router.cc', |
(...skipping 18 matching lines...) Expand all Loading... |
59 'common/resource_response.h', | 64 'common/resource_response.h', |
60 'common/socket_stream.h', | 65 'common/socket_stream.h', |
61 'common/socket_stream_dispatcher.cc', | 66 'common/socket_stream_dispatcher.cc', |
62 'common/socket_stream_dispatcher.h', | 67 'common/socket_stream_dispatcher.h', |
63 'common/socket_stream_messages.h', | 68 'common/socket_stream_messages.h', |
64 ], | 69 ], |
65 'conditions': [ | 70 'conditions': [ |
66 ['OS=="win"', { | 71 ['OS=="win"', { |
67 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', | 72 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', |
68 }], | 73 }], |
| 74 ['OS!="linux"', { |
| 75 'sources!': [ |
| 76 'common/file_path_watcher/file_path_watcher_inotify.cc', |
| 77 ], |
| 78 }], |
| 79 ['OS=="freebsd" or OS=="openbsd"', { |
| 80 'sources': [ |
| 81 'common/file_path_watcher/file_path_watcher_stub.cc', |
| 82 ], |
| 83 }], |
69 ], | 84 ], |
70 }, | 85 }, |
71 ], | 86 ], |
72 } | 87 } |
OLD | NEW |