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

Side by Side Diff: webkit/fileapi/webkit_fileapi.gypi

Issue 15859007: Move browser-specific FileAPI code from webkit/fileapi to webkit/browser/fileapi (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: dump_file_system build fix Created 7 years, 6 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 'variables': { 6 'variables': {
7 'webkit_fileapi_sources': [ 7 'webkit_fileapi_sources': [
8 '../fileapi/async_file_util.h',
9 '../fileapi/async_file_util_adapter.cc',
10 '../fileapi/async_file_util_adapter.h',
11 '../fileapi/directory_entry.h', 8 '../fileapi/directory_entry.h',
12 '../fileapi/file_permission_policy.cc',
13 '../fileapi/file_permission_policy.h',
14 '../fileapi/file_stream_writer.h',
15 '../fileapi/file_system_context.cc',
16 '../fileapi/file_system_context.h',
17 '../fileapi/file_system_file_stream_reader.cc',
18 '../fileapi/file_system_file_stream_reader.h',
19 '../fileapi/file_system_operation.h',
20 '../fileapi/file_system_operation_context.cc',
21 '../fileapi/file_system_operation_context.h',
22 '../fileapi/file_system_options.cc',
23 '../fileapi/file_system_options.h',
24 '../fileapi/file_system_types.h', 9 '../fileapi/file_system_types.h',
25 '../fileapi/file_system_url.cc',
26 '../fileapi/file_system_url.h',
27 '../fileapi/file_system_util.cc', 10 '../fileapi/file_system_util.cc',
28 '../fileapi/file_system_util.h', 11 '../fileapi/file_system_util.h',
29 '../fileapi/file_writer_delegate.cc',
30 '../fileapi/file_writer_delegate.h',
31 '../fileapi/local_file_stream_writer.cc',
32 '../fileapi/local_file_stream_writer.h',
33 '../fileapi/remote_file_system_proxy.h',
34 '../fileapi/remove_operation_delegate.cc',
35 '../fileapi/remove_operation_delegate.h',
36 '../fileapi/syncable/file_change.cc', 12 '../fileapi/syncable/file_change.cc',
37 '../fileapi/syncable/file_change.h', 13 '../fileapi/syncable/file_change.h',
38 '../fileapi/syncable/local_file_change_tracker.cc', 14 '../fileapi/syncable/local_file_change_tracker.cc',
39 '../fileapi/syncable/local_file_change_tracker.h', 15 '../fileapi/syncable/local_file_change_tracker.h',
40 '../fileapi/syncable/local_file_sync_context.cc', 16 '../fileapi/syncable/local_file_sync_context.cc',
41 '../fileapi/syncable/local_file_sync_context.h', 17 '../fileapi/syncable/local_file_sync_context.h',
42 '../fileapi/syncable/local_file_sync_status.cc', 18 '../fileapi/syncable/local_file_sync_status.cc',
43 '../fileapi/syncable/local_file_sync_status.h', 19 '../fileapi/syncable/local_file_sync_status.h',
44 '../fileapi/syncable/local_origin_change_observer.h', 20 '../fileapi/syncable/local_origin_change_observer.h',
45 '../fileapi/syncable/sync_callbacks.h', 21 '../fileapi/syncable/sync_callbacks.h',
46 '../fileapi/syncable/sync_file_metadata.cc', 22 '../fileapi/syncable/sync_file_metadata.cc',
47 '../fileapi/syncable/sync_file_metadata.h', 23 '../fileapi/syncable/sync_file_metadata.h',
48 '../fileapi/syncable/sync_file_status.h', 24 '../fileapi/syncable/sync_file_status.h',
49 '../fileapi/syncable/sync_file_type.h', 25 '../fileapi/syncable/sync_file_type.h',
50 '../fileapi/syncable/sync_action.h', 26 '../fileapi/syncable/sync_action.h',
51 '../fileapi/syncable/sync_direction.h', 27 '../fileapi/syncable/sync_direction.h',
52 '../fileapi/syncable/sync_status_code.cc', 28 '../fileapi/syncable/sync_status_code.cc',
53 '../fileapi/syncable/sync_status_code.h', 29 '../fileapi/syncable/sync_status_code.h',
54 '../fileapi/syncable/syncable_file_operation_runner.cc', 30 '../fileapi/syncable/syncable_file_operation_runner.cc',
55 '../fileapi/syncable/syncable_file_operation_runner.h', 31 '../fileapi/syncable/syncable_file_operation_runner.h',
56 '../fileapi/syncable/syncable_file_system_operation.cc', 32 '../fileapi/syncable/syncable_file_system_operation.cc',
57 '../fileapi/syncable/syncable_file_system_operation.h', 33 '../fileapi/syncable/syncable_file_system_operation.h',
58 '../fileapi/syncable/syncable_file_system_util.cc', 34 '../fileapi/syncable/syncable_file_system_util.cc',
59 '../fileapi/syncable/syncable_file_system_util.h', 35 '../fileapi/syncable/syncable_file_system_util.h',
60 '../fileapi/test_mount_point_provider.cc',
61 '../fileapi/test_mount_point_provider.h',
62 '../fileapi/upload_file_system_file_element_reader.cc',
63 '../fileapi/upload_file_system_file_element_reader.h',
64 '../fileapi/webfilewriter_base.cc', 36 '../fileapi/webfilewriter_base.cc',
65 '../fileapi/webfilewriter_base.h', 37 '../fileapi/webfilewriter_base.h',
66 ], 38 ],
67 'webkit_fileapi_chromeos_sources': [ 39 'webkit_fileapi_chromeos_sources': [
68 '../chromeos/fileapi/async_file_stream.h', 40 '../chromeos/fileapi/async_file_stream.h',
69 '../chromeos/fileapi/cros_mount_point_provider.cc', 41 '../chromeos/fileapi/cros_mount_point_provider.cc',
70 '../chromeos/fileapi/cros_mount_point_provider.h', 42 '../chromeos/fileapi/cros_mount_point_provider.h',
71 '../chromeos/fileapi/file_access_permissions.cc', 43 '../chromeos/fileapi/file_access_permissions.cc',
72 '../chromeos/fileapi/file_access_permissions.h', 44 '../chromeos/fileapi/file_access_permissions.h',
73 '../chromeos/fileapi/file_util_async.h', 45 '../chromeos/fileapi/file_util_async.h',
74 '../chromeos/fileapi/remote_file_system_operation.cc', 46 '../chromeos/fileapi/remote_file_system_operation.cc',
75 '../chromeos/fileapi/remote_file_system_operation.h', 47 '../chromeos/fileapi/remote_file_system_operation.h',
76 '../chromeos/fileapi/remote_file_stream_writer.cc', 48 '../chromeos/fileapi/remote_file_stream_writer.cc',
77 '../chromeos/fileapi/remote_file_stream_writer.h', 49 '../chromeos/fileapi/remote_file_stream_writer.h',
78 ], 50 ],
79 }, 51 },
80 'targets': [
81 {
82 'target_name': 'dump_file_system',
83 'type': 'executable',
84 'sources': [
85 '../fileapi/dump_file_system.cc',
86 ],
87 'dependencies': [
88 '../../base/base.gyp:base',
89 '../support/webkit_support.gyp:webkit_storage',
90 ],
91 },
92 ],
93 } 52 }
OLDNEW
« no previous file with comments | « webkit/fileapi/upload_file_system_file_element_reader_unittest.cc ('k') | webkit/glue/resource_request_body.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698