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

Side by Side Diff: content/content_common.gypi

Issue 6793020: Move FilePathWatcher to base/files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use ::operator<< Created 9 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « content/common/file_path_watcher/file_path_watcher_win.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 'common/debug_flags.cc', 66 'common/debug_flags.cc',
67 'common/debug_flags.h', 67 'common/debug_flags.h',
68 'common/desktop_notification_messages.h', 68 'common/desktop_notification_messages.h',
69 'common/device_orientation_messages.h', 69 'common/device_orientation_messages.h',
70 'common/dom_storage_common.h', 70 'common/dom_storage_common.h',
71 'common/dom_storage_messages.h', 71 'common/dom_storage_messages.h',
72 'common/drag_messages.h', 72 'common/drag_messages.h',
73 'common/dx_diag_node.cc', 73 'common/dx_diag_node.cc',
74 'common/dx_diag_node.h', 74 'common/dx_diag_node.h',
75 'common/edit_command.h', 75 'common/edit_command.h',
76 'common/file_path_watcher/file_path_watcher.cc',
77 'common/file_path_watcher/file_path_watcher.h',
78 'common/file_path_watcher/file_path_watcher_inotify.cc',
79 'common/file_path_watcher/file_path_watcher_mac.cc',
80 'common/file_path_watcher/file_path_watcher_win.cc',
81 'common/file_system/file_system_dispatcher.cc', 76 'common/file_system/file_system_dispatcher.cc',
82 'common/file_system/file_system_dispatcher.h', 77 'common/file_system/file_system_dispatcher.h',
83 'common/file_system/webfilesystem_callback_dispatcher.cc', 78 'common/file_system/webfilesystem_callback_dispatcher.cc',
84 'common/file_system/webfilesystem_callback_dispatcher.h', 79 'common/file_system/webfilesystem_callback_dispatcher.h',
85 'common/file_system/webfilesystem_impl.cc', 80 'common/file_system/webfilesystem_impl.cc',
86 'common/file_system/webfilesystem_impl.h', 81 'common/file_system/webfilesystem_impl.h',
87 'common/file_system/webfilewriter_impl.cc', 82 'common/file_system/webfilewriter_impl.cc',
88 'common/file_system/webfilewriter_impl.h', 83 'common/file_system/webfilewriter_impl.h',
89 'common/file_system_messages.h', 84 'common/file_system_messages.h',
90 'common/file_utilities_messages.h', 85 'common/file_utilities_messages.h',
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
221 '<(DEPTH)/third_party/angle/include', 216 '<(DEPTH)/third_party/angle/include',
222 '<(DEPTH)/third_party/angle/src', 217 '<(DEPTH)/third_party/angle/src',
223 '<(DEPTH)/third_party/wtl/include', 218 '<(DEPTH)/third_party/wtl/include',
224 '$(DXSDK_DIR)/include', 219 '$(DXSDK_DIR)/include',
225 ], 220 ],
226 'dependencies': [ 221 'dependencies': [
227 '../third_party/angle/src/build_angle.gyp:libEGL', 222 '../third_party/angle/src/build_angle.gyp:libEGL',
228 '../third_party/angle/src/build_angle.gyp:libGLESv2', 223 '../third_party/angle/src/build_angle.gyp:libGLESv2',
229 ], 224 ],
230 }], 225 }],
231 ['OS!="linux"', {
232 'sources!': [
233 'common/file_path_watcher/file_path_watcher_inotify.cc',
234 ],
235 }],
236 ['OS=="freebsd" or OS=="openbsd"', {
237 'sources': [
238 'common/file_path_watcher/file_path_watcher_stub.cc',
239 ],
240 }],
241 ['OS=="mac"', { 226 ['OS=="mac"', {
242 'sources!': [ 227 'sources!': [
243 'common/process_watcher_posix.cc', 228 'common/process_watcher_posix.cc',
244 ], 229 ],
245 'link_settings': { 230 'link_settings': {
246 'mac_bundle_resources': [ 231 'mac_bundle_resources': [
247 'common/common.sb', 232 'common/common.sb',
248 ], 233 ],
249 }, 234 },
250 }], 235 }],
(...skipping 15 matching lines...) Expand all
266 }], 251 }],
267 ['enable_gpu==1', { 252 ['enable_gpu==1', {
268 'dependencies': [ 253 'dependencies': [
269 '../gpu/gpu.gyp:command_buffer_service', 254 '../gpu/gpu.gyp:command_buffer_service',
270 ], 255 ],
271 }], 256 }],
272 ], 257 ],
273 }, 258 },
274 ], 259 ],
275 } 260 }
OLDNEW
« 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