| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # GYP version: storage/storage_browser.gyp:storage | 5 # GYP version: storage/storage_browser.gyp:storage |
| 6 component("browser") { | 6 component("browser") { |
| 7 output_name = "storage_browser" | 7 output_name = "storage_browser" |
| 8 sources = [ | 8 sources = [ |
| 9 "blob/blob_data_builder.cc", | 9 "blob/blob_data_builder.cc", |
| 10 "blob/blob_data_builder.h", | 10 "blob/blob_data_builder.h", |
| 11 "blob/blob_data_handle.cc", | 11 "blob/blob_data_handle.cc", |
| 12 "blob/blob_data_handle.h", | 12 "blob/blob_data_handle.h", |
| 13 "blob/blob_data_item.cc", | 13 "blob/blob_data_item.cc", |
| 14 "blob/blob_data_item.h", | 14 "blob/blob_data_item.h", |
| 15 "blob/blob_data_snapshot.cc", | 15 "blob/blob_data_snapshot.cc", |
| 16 "blob/blob_data_snapshot.h", | 16 "blob/blob_data_snapshot.h", |
| 17 "blob/blob_reader.cc", |
| 18 "blob/blob_reader.h", |
| 17 "blob/blob_storage_context.cc", | 19 "blob/blob_storage_context.cc", |
| 18 "blob/blob_storage_context.h", | 20 "blob/blob_storage_context.h", |
| 19 "blob/blob_url_request_job.cc", | 21 "blob/blob_url_request_job.cc", |
| 20 "blob/blob_url_request_job.h", | 22 "blob/blob_url_request_job.h", |
| 21 "blob/blob_url_request_job_factory.cc", | 23 "blob/blob_url_request_job_factory.cc", |
| 22 "blob/blob_url_request_job_factory.h", | 24 "blob/blob_url_request_job_factory.h", |
| 23 "blob/internal_blob_data.cc", | 25 "blob/internal_blob_data.cc", |
| 24 "blob/internal_blob_data.h", | 26 "blob/internal_blob_data.h", |
| 25 "blob/scoped_file.cc", | 27 "blob/scoped_file.cc", |
| 26 "blob/scoped_file.h", | 28 "blob/scoped_file.h", |
| 27 "blob/shareable_blob_data_item.cc", | 29 "blob/shareable_blob_data_item.cc", |
| 28 "blob/shareable_blob_data_item.h", | 30 "blob/shareable_blob_data_item.h", |
| 29 "blob/shareable_file_reference.cc", | 31 "blob/shareable_file_reference.cc", |
| 30 "blob/shareable_file_reference.h", | 32 "blob/shareable_file_reference.h", |
| 33 "blob/upload_blob_element_reader.cc", |
| 34 "blob/upload_blob_element_reader.h", |
| 31 "blob/view_blob_internals_job.cc", | 35 "blob/view_blob_internals_job.cc", |
| 32 "blob/view_blob_internals_job.h", | 36 "blob/view_blob_internals_job.h", |
| 33 "database/database_quota_client.cc", | 37 "database/database_quota_client.cc", |
| 34 "database/database_quota_client.h", | 38 "database/database_quota_client.h", |
| 35 "database/database_tracker.cc", | 39 "database/database_tracker.cc", |
| 36 "database/database_tracker.h", | 40 "database/database_tracker.h", |
| 37 "database/database_util.cc", | 41 "database/database_util.cc", |
| 38 "database/database_util.h", | 42 "database/database_util.h", |
| 39 "database/databases_table.cc", | 43 "database/databases_table.cc", |
| 40 "database/databases_table.h", | 44 "database/databases_table.h", |
| (...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 "fileapi/dump_file_system.cc", | 207 "fileapi/dump_file_system.cc", |
| 204 ] | 208 ] |
| 205 | 209 |
| 206 deps = [ | 210 deps = [ |
| 207 ":browser", | 211 ":browser", |
| 208 "//base", | 212 "//base", |
| 209 "//build/config/sanitizers:deps", | 213 "//build/config/sanitizers:deps", |
| 210 "//storage/common", | 214 "//storage/common", |
| 211 ] | 215 ] |
| 212 } | 216 } |
| OLD | NEW |