OLD | NEW |
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', | 8 '../fileapi/async_file_util.h', |
9 '../fileapi/async_file_util_adapter.cc', | 9 '../fileapi/async_file_util_adapter.cc', |
10 '../fileapi/async_file_util_adapter.h', | 10 '../fileapi/async_file_util_adapter.h', |
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
141 '../chromeos/fileapi/remote_file_stream_writer.h', | 141 '../chromeos/fileapi/remote_file_stream_writer.h', |
142 ], | 142 ], |
143 'webkit_fileapi_media_sources': [ | 143 'webkit_fileapi_media_sources': [ |
144 '../fileapi/media/device_media_async_file_util.cc', | 144 '../fileapi/media/device_media_async_file_util.cc', |
145 '../fileapi/media/device_media_async_file_util.h', | 145 '../fileapi/media/device_media_async_file_util.h', |
146 '../fileapi/media/mtp_device_async_delegate.h', | 146 '../fileapi/media/mtp_device_async_delegate.h', |
147 '../fileapi/media/mtp_device_map_service.cc', | 147 '../fileapi/media/mtp_device_map_service.cc', |
148 '../fileapi/media/mtp_device_map_service.h', | 148 '../fileapi/media/mtp_device_map_service.h', |
149 ], | 149 ], |
150 }, | 150 }, |
| 151 'targets': [ |
| 152 { |
| 153 'target_name': 'dump_file_system', |
| 154 'type': 'executable', |
| 155 'sources': [ |
| 156 '../fileapi/dump_file_system.cc', |
| 157 ], |
| 158 'dependencies': [ |
| 159 '../../base/base.gyp:base', |
| 160 '../support/webkit_support.gyp:webkit_storage', |
| 161 ], |
| 162 }, |
| 163 ], |
151 } | 164 } |
OLD | NEW |