Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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 | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 { | |
| 6 'variables': { | |
| 7 'conditions': [ | |
| 8 ['inside_chromium_build==0', { | |
| 9 'webkit_src_dir': '../../../../..', | |
| 10 },{ | |
| 11 'webkit_src_dir': '../../third_party/WebKit', | |
| 12 }], | |
| 13 ], | |
| 14 }, | |
| 15 'targets': [ | |
| 16 { | |
| 17 'target_name': 'storage', | |
|
kinuko
2012/10/11 12:36:51
I think we'd better name this 'webkit_storage'
hashimoto
2012/10/12 06:45:27
Done.
| |
| 18 'type': '<(component)', | |
| 19 'variables': { 'enable_wexit_time_destructors': 1, }, | |
| 20 'dependencies': [ | |
| 21 '<(DEPTH)/base/base.gyp:base', | |
| 22 '<(DEPTH)/base/base.gyp:base_i18n', | |
| 23 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations', | |
| 24 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | |
| 25 '<(DEPTH)/net/net.gyp:net', | |
| 26 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | |
| 27 '<(DEPTH)/webkit/support/webkit_support.gyp:quota', | |
| 28 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base', | |
| 29 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | |
| 30 ], | |
| 31 'defines': ['STORAGE_IMPLEMENTATION'], | |
| 32 'sources': [ | |
|
kinuko
2012/10/11 12:36:51
Can we add a TODO comment to note we're importing
hashimoto
2012/10/12 06:45:27
Done.
| |
| 33 '../blob/blob_data.cc', | |
| 34 '../blob/blob_data.h', | |
| 35 '../blob/blob_storage_controller.cc', | |
| 36 '../blob/blob_storage_controller.h', | |
| 37 '../blob/blob_url_request_job.cc', | |
| 38 '../blob/blob_url_request_job.h', | |
| 39 '../blob/blob_url_request_job_factory.cc', | |
| 40 '../blob/blob_url_request_job_factory.h', | |
| 41 '../blob/local_file_stream_reader.cc', | |
| 42 '../blob/local_file_stream_reader.h', | |
| 43 '../blob/shareable_file_reference.cc', | |
| 44 '../blob/shareable_file_reference.h', | |
| 45 '../blob/view_blob_internals_job.cc', | |
| 46 '../blob/view_blob_internals_job.h', | |
| 47 '../fileapi/file_observers.h', | |
| 48 '../fileapi/file_stream_writer.h', | |
| 49 '../fileapi/file_system_callback_dispatcher.cc', | |
| 50 '../fileapi/file_system_callback_dispatcher.h', | |
| 51 '../fileapi/file_system_context.cc', | |
| 52 '../fileapi/file_system_context.h', | |
| 53 '../fileapi/file_system_dir_url_request_job.cc', | |
| 54 '../fileapi/file_system_dir_url_request_job.h', | |
| 55 '../fileapi/file_system_directory_database.cc', | |
| 56 '../fileapi/file_system_directory_database.h', | |
| 57 '../fileapi/file_system_file_stream_reader.cc', | |
| 58 '../fileapi/file_system_file_stream_reader.h', | |
| 59 '../fileapi/file_system_file_util.cc', | |
| 60 '../fileapi/file_system_file_util.h', | |
| 61 '../fileapi/file_system_file_util_proxy.cc', | |
| 62 '../fileapi/file_system_file_util_proxy.h', | |
| 63 '../fileapi/file_system_mount_point_provider.h', | |
| 64 '../fileapi/file_system_operation.h', | |
| 65 '../fileapi/file_system_operation_context.cc', | |
| 66 '../fileapi/file_system_operation_context.h', | |
| 67 '../fileapi/file_system_options.cc', | |
| 68 '../fileapi/file_system_options.h', | |
| 69 '../fileapi/file_system_origin_database.cc', | |
| 70 '../fileapi/file_system_origin_database.h', | |
| 71 '../fileapi/file_system_quota_client.cc', | |
| 72 '../fileapi/file_system_quota_client.h', | |
| 73 '../fileapi/file_system_quota_util.h', | |
| 74 '../fileapi/file_system_task_runners.cc', | |
| 75 '../fileapi/file_system_task_runners.h', | |
| 76 '../fileapi/file_system_types.h', | |
| 77 '../fileapi/file_system_url.cc', | |
| 78 '../fileapi/file_system_url.h', | |
| 79 '../fileapi/file_system_url_request_job.cc', | |
| 80 '../fileapi/file_system_url_request_job.h', | |
| 81 '../fileapi/file_system_url_request_job_factory.cc', | |
| 82 '../fileapi/file_system_url_request_job_factory.h', | |
| 83 '../fileapi/file_system_usage_cache.cc', | |
| 84 '../fileapi/file_system_usage_cache.h', | |
| 85 '../fileapi/file_system_util.cc', | |
| 86 '../fileapi/file_system_util.h', | |
| 87 '../fileapi/file_util_helper.cc', | |
| 88 '../fileapi/file_util_helper.h', | |
| 89 '../fileapi/file_writer_delegate.cc', | |
| 90 '../fileapi/file_writer_delegate.h', | |
| 91 '../fileapi/isolated_context.cc', | |
| 92 '../fileapi/isolated_context.h', | |
| 93 '../fileapi/isolated_file_util.cc', | |
| 94 '../fileapi/isolated_file_util.h', | |
| 95 '../fileapi/isolated_mount_point_provider.cc', | |
| 96 '../fileapi/isolated_mount_point_provider.h', | |
| 97 '../fileapi/local_file_util.cc', | |
| 98 '../fileapi/local_file_util.h', | |
| 99 '../fileapi/local_file_stream_writer.cc', | |
| 100 '../fileapi/local_file_stream_writer.h', | |
| 101 '../fileapi/local_file_system_operation.cc', | |
| 102 '../fileapi/local_file_system_operation.h', | |
| 103 '../fileapi/media/filtering_file_enumerator.cc', | |
| 104 '../fileapi/media/filtering_file_enumerator.h', | |
| 105 '../fileapi/media/media_path_filter.cc', | |
| 106 '../fileapi/media/media_path_filter.h', | |
| 107 '../fileapi/media/mtp_device_file_system_config.h', | |
| 108 '../fileapi/media/native_media_file_util.cc', | |
| 109 '../fileapi/media/native_media_file_util.h', | |
| 110 '../fileapi/native_file_util.cc', | |
| 111 '../fileapi/native_file_util.h', | |
| 112 '../fileapi/obfuscated_file_util.cc', | |
| 113 '../fileapi/obfuscated_file_util.h', | |
| 114 '../fileapi/sandbox_file_stream_writer.cc', | |
| 115 '../fileapi/sandbox_file_stream_writer.h', | |
| 116 '../fileapi/sandbox_mount_point_provider.cc', | |
| 117 '../fileapi/sandbox_mount_point_provider.h', | |
| 118 '../fileapi/sandbox_quota_observer.cc', | |
| 119 '../fileapi/sandbox_quota_observer.h', | |
| 120 '../fileapi/syncable/file_change.cc', | |
| 121 '../fileapi/syncable/file_change.h', | |
| 122 '../fileapi/syncable/local_file_change_tracker.cc', | |
| 123 '../fileapi/syncable/local_file_change_tracker.h', | |
| 124 '../fileapi/syncable/local_file_sync_status.cc', | |
| 125 '../fileapi/syncable/local_file_sync_status.h', | |
| 126 '../fileapi/syncable/sync_status_code.cc', | |
| 127 '../fileapi/syncable/sync_status_code.h', | |
| 128 '../fileapi/syncable/syncable_file_system_util.cc', | |
| 129 '../fileapi/syncable/syncable_file_system_util.h', | |
| 130 '../fileapi/task_runner_bound_observer_list.h', | |
| 131 '../fileapi/test_mount_point_provider.cc', | |
| 132 '../fileapi/test_mount_point_provider.h', | |
| 133 '../fileapi/webfilewriter_base.cc', | |
| 134 '../fileapi/webfilewriter_base.h', | |
| 135 '../storage/storage_export.h', | |
| 136 ], | |
| 137 'conditions': [ | |
| 138 ['inside_chromium_build==0', { | |
| 139 'dependencies': [ | |
| 140 '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', | |
| 141 ], | |
| 142 }], | |
| 143 ['chromeos==1', { | |
| 144 'sources': [ | |
| 145 '../chromeos/fileapi/async_file_stream.h', | |
| 146 '../chromeos/fileapi/cros_mount_point_provider.cc', | |
| 147 '../chromeos/fileapi/cros_mount_point_provider.h', | |
| 148 '../chromeos/fileapi/file_access_permissions.cc', | |
| 149 '../chromeos/fileapi/file_access_permissions.h', | |
| 150 '../chromeos/fileapi/file_util_async.h', | |
| 151 '../chromeos/fileapi/remote_file_system_operation.cc', | |
| 152 '../chromeos/fileapi/remote_file_system_operation.h', | |
| 153 '../chromeos/fileapi/remote_file_system_proxy.h', | |
| 154 '../chromeos/fileapi/remote_file_stream_writer.cc', | |
| 155 '../chromeos/fileapi/remote_file_stream_writer.h', | |
| 156 '../fileapi/media/device_media_file_util.cc', | |
| 157 '../fileapi/media/device_media_file_util.h', | |
| 158 '../fileapi/media/mtp_device_delegate.h', | |
| 159 '../fileapi/media/mtp_device_map_service.cc', | |
| 160 '../fileapi/media/mtp_device_map_service.h', | |
| 161 ], | |
| 162 }], | |
| 163 ], | |
| 164 }, | |
| 165 ], | |
| 166 } | |
| OLD | NEW |