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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 'common/debug_flags.cc', | 65 'common/debug_flags.cc', |
66 'common/debug_flags.h', | 66 'common/debug_flags.h', |
67 'common/desktop_notification_messages.h', | 67 'common/desktop_notification_messages.h', |
68 'common/device_orientation_messages.h', | 68 'common/device_orientation_messages.h', |
69 'common/dom_storage_common.h', | 69 'common/dom_storage_common.h', |
70 'common/dom_storage_messages.h', | 70 'common/dom_storage_messages.h', |
71 'common/drag_messages.h', | 71 'common/drag_messages.h', |
72 'common/dx_diag_node.cc', | 72 'common/dx_diag_node.cc', |
73 'common/dx_diag_node.h', | 73 'common/dx_diag_node.h', |
74 'common/edit_command.h', | 74 'common/edit_command.h', |
75 'common/file_path_watcher/file_path_watcher.cc', | |
76 'common/file_path_watcher/file_path_watcher.h', | |
77 'common/file_path_watcher/file_path_watcher_inotify.cc', | |
78 'common/file_path_watcher/file_path_watcher_mac.cc', | |
79 'common/file_path_watcher/file_path_watcher_win.cc', | |
80 'common/file_system/file_system_dispatcher.cc', | 75 'common/file_system/file_system_dispatcher.cc', |
81 'common/file_system/file_system_dispatcher.h', | 76 'common/file_system/file_system_dispatcher.h', |
82 'common/file_system/webfilesystem_callback_dispatcher.cc', | 77 'common/file_system/webfilesystem_callback_dispatcher.cc', |
83 'common/file_system/webfilesystem_callback_dispatcher.h', | 78 'common/file_system/webfilesystem_callback_dispatcher.h', |
84 'common/file_system/webfilesystem_impl.cc', | 79 'common/file_system/webfilesystem_impl.cc', |
85 'common/file_system/webfilesystem_impl.h', | 80 'common/file_system/webfilesystem_impl.h', |
86 'common/file_system/webfilewriter_impl.cc', | 81 'common/file_system/webfilewriter_impl.cc', |
87 'common/file_system/webfilewriter_impl.h', | 82 'common/file_system/webfilewriter_impl.h', |
88 'common/file_system_messages.h', | 83 'common/file_system_messages.h', |
89 'common/file_utilities_messages.h', | 84 'common/file_utilities_messages.h', |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 'common/webmessageportchannel_impl.cc', | 183 'common/webmessageportchannel_impl.cc', |
189 'common/webmessageportchannel_impl.h', | 184 'common/webmessageportchannel_impl.h', |
190 'common/window_container_type.cc', | 185 'common/window_container_type.cc', |
191 'common/window_container_type.h', | 186 'common/window_container_type.h', |
192 'common/worker_messages.h', | 187 'common/worker_messages.h', |
193 ], | 188 ], |
194 'conditions': [ | 189 'conditions': [ |
195 ['OS=="win"', { | 190 ['OS=="win"', { |
196 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', | 191 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', |
197 }], | 192 }], |
198 ['OS!="linux"', { | |
199 'sources!': [ | |
200 'common/file_path_watcher/file_path_watcher_inotify.cc', | |
201 ], | |
202 }], | |
203 ['OS=="freebsd" or OS=="openbsd"', { | |
204 'sources': [ | |
205 'common/file_path_watcher/file_path_watcher_stub.cc', | |
206 ], | |
207 }], | |
208 ['OS=="mac"', { | 193 ['OS=="mac"', { |
209 'sources!': [ | 194 'sources!': [ |
210 'common/process_watcher_posix.cc', | 195 'common/process_watcher_posix.cc', |
211 ], | 196 ], |
212 'link_settings': { | 197 'link_settings': { |
213 'mac_bundle_resources': [ | 198 'mac_bundle_resources': [ |
214 'common/common.sb', | 199 'common/common.sb', |
215 ], | 200 ], |
216 }, | 201 }, |
217 }], | 202 }], |
218 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 203 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
219 'dependencies': [ | 204 'dependencies': [ |
220 '../build/linux/system.gyp:gtk', | 205 '../build/linux/system.gyp:gtk', |
221 ], | 206 ], |
222 }], | 207 }], |
223 ['toolkit_views==1', { | 208 ['toolkit_views==1', { |
224 'sources': [ | 209 'sources': [ |
225 'common/native_web_keyboard_event_views.cc', | 210 'common/native_web_keyboard_event_views.cc', |
226 ], | 211 ], |
227 }], | 212 }], |
228 ], | 213 ], |
229 }, | 214 }, |
230 ], | 215 ], |
231 } | 216 } |
OLD | NEW |