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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 '../browser/fileapi/syncable/syncable_file_system_util.cc', | 104 '../browser/fileapi/syncable/syncable_file_system_util.cc', |
105 '../browser/fileapi/syncable/syncable_file_system_util.h', | 105 '../browser/fileapi/syncable/syncable_file_system_util.h', |
106 '../browser/fileapi/task_runner_bound_observer_list.h', | 106 '../browser/fileapi/task_runner_bound_observer_list.h', |
107 '../browser/fileapi/test_mount_point_provider.cc', | 107 '../browser/fileapi/test_mount_point_provider.cc', |
108 '../browser/fileapi/test_mount_point_provider.h', | 108 '../browser/fileapi/test_mount_point_provider.h', |
109 '../browser/fileapi/transient_file_util.cc', | 109 '../browser/fileapi/transient_file_util.cc', |
110 '../browser/fileapi/transient_file_util.h', | 110 '../browser/fileapi/transient_file_util.h', |
111 '../browser/fileapi/upload_file_system_file_element_reader.cc', | 111 '../browser/fileapi/upload_file_system_file_element_reader.cc', |
112 '../browser/fileapi/upload_file_system_file_element_reader.h', | 112 '../browser/fileapi/upload_file_system_file_element_reader.h', |
113 ], | 113 ], |
| 114 'webkit_browser_fileapi_chromeos_sources': [ |
| 115 '../browser/chromeos/fileapi/async_file_stream.h', |
| 116 '../browser/chromeos/fileapi/cros_mount_point_provider.cc', |
| 117 '../browser/chromeos/fileapi/cros_mount_point_provider.h', |
| 118 '../browser/chromeos/fileapi/file_access_permissions.cc', |
| 119 '../browser/chromeos/fileapi/file_access_permissions.h', |
| 120 '../browser/chromeos/fileapi/file_util_async.h', |
| 121 '../browser/chromeos/fileapi/remote_file_system_operation.cc', |
| 122 '../browser/chromeos/fileapi/remote_file_system_operation.h', |
| 123 '../browser/chromeos/fileapi/remote_file_stream_writer.cc', |
| 124 '../browser/chromeos/fileapi/remote_file_stream_writer.h', |
| 125 ], |
114 }, | 126 }, |
115 'targets': [ | 127 'targets': [ |
116 { | 128 { |
117 'target_name': 'dump_file_system', | 129 'target_name': 'dump_file_system', |
118 'type': 'executable', | 130 'type': 'executable', |
119 'sources': [ | 131 'sources': [ |
120 'dump_file_system.cc', | 132 'dump_file_system.cc', |
121 ], | 133 ], |
122 'dependencies': [ | 134 'dependencies': [ |
123 '<(DEPTH)/base/base.gyp:base', | 135 '<(DEPTH)/base/base.gyp:base', |
124 '../support/webkit_support.gyp:webkit_storage', | 136 '../support/webkit_support.gyp:webkit_storage', |
125 ], | 137 ], |
126 }, | 138 }, |
127 ], | 139 ], |
128 } | 140 } |
OLD | NEW |