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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 'common/webmessageportchannel_impl.cc', | 184 'common/webmessageportchannel_impl.cc', |
190 'common/webmessageportchannel_impl.h', | 185 'common/webmessageportchannel_impl.h', |
191 'common/window_container_type.cc', | 186 'common/window_container_type.cc', |
192 'common/window_container_type.h', | 187 'common/window_container_type.h', |
193 'common/worker_messages.h', | 188 'common/worker_messages.h', |
194 ], | 189 ], |
195 'conditions': [ | 190 'conditions': [ |
196 ['OS=="win"', { | 191 ['OS=="win"', { |
197 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', | 192 'msvs_guid': '062E9260-304A-4657-A74C-0D3AA1A0A0A4', |
198 }], | 193 }], |
199 ['OS!="linux"', { | |
200 'sources!': [ | |
201 'common/file_path_watcher/file_path_watcher_inotify.cc', | |
202 ], | |
203 }], | |
204 ['OS=="freebsd" or OS=="openbsd"', { | |
205 'sources': [ | |
206 'common/file_path_watcher/file_path_watcher_stub.cc', | |
207 ], | |
208 }], | |
209 ['OS=="mac"', { | 194 ['OS=="mac"', { |
210 'sources!': [ | 195 'sources!': [ |
211 'common/process_watcher_posix.cc', | 196 'common/process_watcher_posix.cc', |
212 ], | 197 ], |
213 'link_settings': { | 198 'link_settings': { |
214 'mac_bundle_resources': [ | 199 'mac_bundle_resources': [ |
215 'common/common.sb', | 200 'common/common.sb', |
216 ], | 201 ], |
217 }, | 202 }, |
218 }], | 203 }], |
219 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 204 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { |
220 'dependencies': [ | 205 'dependencies': [ |
221 '../build/linux/system.gyp:gtk', | 206 '../build/linux/system.gyp:gtk', |
222 ], | 207 ], |
223 }], | 208 }], |
224 ['toolkit_views==1', { | 209 ['toolkit_views==1', { |
225 'sources': [ | 210 'sources': [ |
226 'common/native_web_keyboard_event_views.cc', | 211 'common/native_web_keyboard_event_views.cc', |
227 ], | 212 ], |
228 }], | 213 }], |
229 ], | 214 ], |
230 }, | 215 }, |
231 ], | 216 ], |
232 } | 217 } |
OLD | NEW |