OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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_browser_fileapi_sources': [ | 7 'webkit_browser_fileapi_sources': [ |
8 '../browser/fileapi/async_file_util.h', | 8 '../browser/fileapi/async_file_util.h', |
9 '../browser/fileapi/async_file_util_adapter.cc', | 9 '../browser/fileapi/async_file_util_adapter.cc', |
10 '../browser/fileapi/async_file_util_adapter.h', | 10 '../browser/fileapi/async_file_util_adapter.h', |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
72 '../browser/fileapi/sandbox_directory_database.cc', | 72 '../browser/fileapi/sandbox_directory_database.cc', |
73 '../browser/fileapi/sandbox_directory_database.h', | 73 '../browser/fileapi/sandbox_directory_database.h', |
74 '../browser/fileapi/sandbox_file_stream_writer.cc', | 74 '../browser/fileapi/sandbox_file_stream_writer.cc', |
75 '../browser/fileapi/sandbox_file_stream_writer.h', | 75 '../browser/fileapi/sandbox_file_stream_writer.h', |
76 '../browser/fileapi/sandbox_mount_point_provider.cc', | 76 '../browser/fileapi/sandbox_mount_point_provider.cc', |
77 '../browser/fileapi/sandbox_mount_point_provider.h', | 77 '../browser/fileapi/sandbox_mount_point_provider.h', |
78 '../browser/fileapi/sandbox_origin_database.cc', | 78 '../browser/fileapi/sandbox_origin_database.cc', |
79 '../browser/fileapi/sandbox_origin_database.h', | 79 '../browser/fileapi/sandbox_origin_database.h', |
80 '../browser/fileapi/sandbox_quota_observer.cc', | 80 '../browser/fileapi/sandbox_quota_observer.cc', |
81 '../browser/fileapi/sandbox_quota_observer.h', | 81 '../browser/fileapi/sandbox_quota_observer.h', |
| 82 '../browser/fileapi/syncable/file_change.cc', |
| 83 '../browser/fileapi/syncable/file_change.h', |
| 84 '../browser/fileapi/syncable/local_file_change_tracker.cc', |
| 85 '../browser/fileapi/syncable/local_file_change_tracker.h', |
| 86 '../browser/fileapi/syncable/local_file_sync_context.cc', |
| 87 '../browser/fileapi/syncable/local_file_sync_context.h', |
| 88 '../browser/fileapi/syncable/local_file_sync_status.cc', |
| 89 '../browser/fileapi/syncable/local_file_sync_status.h', |
| 90 '../browser/fileapi/syncable/local_origin_change_observer.h', |
| 91 '../browser/fileapi/syncable/sync_action.h', |
| 92 '../browser/fileapi/syncable/sync_callbacks.h', |
| 93 '../browser/fileapi/syncable/sync_direction.h', |
| 94 '../browser/fileapi/syncable/sync_file_metadata.cc', |
| 95 '../browser/fileapi/syncable/sync_file_metadata.h', |
| 96 '../browser/fileapi/syncable/sync_file_status.h', |
| 97 '../browser/fileapi/syncable/sync_file_type.h', |
| 98 '../browser/fileapi/syncable/sync_status_code.cc', |
| 99 '../browser/fileapi/syncable/sync_status_code.h', |
| 100 '../browser/fileapi/syncable/syncable_file_operation_runner.cc', |
| 101 '../browser/fileapi/syncable/syncable_file_operation_runner.h', |
| 102 '../browser/fileapi/syncable/syncable_file_system_operation.cc', |
| 103 '../browser/fileapi/syncable/syncable_file_system_operation.h', |
| 104 '../browser/fileapi/syncable/syncable_file_system_util.cc', |
| 105 '../browser/fileapi/syncable/syncable_file_system_util.h', |
82 '../browser/fileapi/task_runner_bound_observer_list.h', | 106 '../browser/fileapi/task_runner_bound_observer_list.h', |
83 '../browser/fileapi/test_mount_point_provider.cc', | 107 '../browser/fileapi/test_mount_point_provider.cc', |
84 '../browser/fileapi/test_mount_point_provider.h', | 108 '../browser/fileapi/test_mount_point_provider.h', |
85 '../browser/fileapi/transient_file_util.cc', | 109 '../browser/fileapi/transient_file_util.cc', |
86 '../browser/fileapi/transient_file_util.h', | 110 '../browser/fileapi/transient_file_util.h', |
87 '../browser/fileapi/upload_file_system_file_element_reader.cc', | 111 '../browser/fileapi/upload_file_system_file_element_reader.cc', |
88 '../browser/fileapi/upload_file_system_file_element_reader.h', | 112 '../browser/fileapi/upload_file_system_file_element_reader.h', |
89 ], | 113 ], |
90 }, | 114 }, |
91 'targets': [ | 115 'targets': [ |
92 { | 116 { |
93 'target_name': 'dump_file_system', | 117 'target_name': 'dump_file_system', |
94 'type': 'executable', | 118 'type': 'executable', |
95 'sources': [ | 119 'sources': [ |
96 'dump_file_system.cc', | 120 'dump_file_system.cc', |
97 ], | 121 ], |
98 'dependencies': [ | 122 'dependencies': [ |
99 '<(DEPTH)/base/base.gyp:base', | 123 '<(DEPTH)/base/base.gyp:base', |
100 '../support/webkit_support.gyp:webkit_storage', | 124 '../support/webkit_support.gyp:webkit_storage', |
101 ], | 125 ], |
102 }, | 126 }, |
103 ], | 127 ], |
104 } | 128 } |
OLD | NEW |