Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(507)

Side by Side Diff: storage/browser/BUILD.gn

Issue 810403004: [Storage] Blob Storage Refactoring pt 1 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed copyright Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "storage_browser_export.h", 9 "storage_browser_export.h",
10 "blob/blob_data_builder.cc",
11 "blob/blob_data_builder.h",
10 "blob/blob_data_handle.cc", 12 "blob/blob_data_handle.cc",
11 "blob/blob_data_handle.h", 13 "blob/blob_data_handle.h",
14 "blob/blob_data_item.cc",
15 "blob/blob_data_item.h",
16 "blob/blob_data_snapshot.cc",
17 "blob/blob_data_snapshot.h",
12 "blob/blob_storage_context.cc", 18 "blob/blob_storage_context.cc",
13 "blob/blob_storage_context.h", 19 "blob/blob_storage_context.h",
14 "blob/blob_url_request_job.cc", 20 "blob/blob_url_request_job.cc",
15 "blob/blob_url_request_job.h", 21 "blob/blob_url_request_job.h",
16 "blob/blob_url_request_job_factory.cc", 22 "blob/blob_url_request_job_factory.cc",
17 "blob/blob_url_request_job_factory.h", 23 "blob/blob_url_request_job_factory.h",
18 "blob/file_stream_reader.cc", 24 "blob/file_stream_reader.cc",
19 "blob/file_stream_reader.h", 25 "blob/file_stream_reader.h",
20 "blob/local_file_stream_reader.cc", 26 "blob/local_file_stream_reader.cc",
21 "blob/local_file_stream_reader.h", 27 "blob/local_file_stream_reader.h",
28 "blob/scoped_file.cc",
29 "blob/scoped_file.h",
30 "blob/shareable_file_reference.cc",
31 "blob/shareable_file_reference.h",
22 "blob/view_blob_internals_job.cc", 32 "blob/view_blob_internals_job.cc",
23 "blob/view_blob_internals_job.h", 33 "blob/view_blob_internals_job.h",
24 "database/database_quota_client.cc", 34 "database/database_quota_client.cc",
25 "database/database_quota_client.h", 35 "database/database_quota_client.h",
26 "database/database_tracker.cc", 36 "database/database_tracker.cc",
27 "database/database_tracker.h", 37 "database/database_tracker.h",
28 "database/database_util.cc", 38 "database/database_util.cc",
29 "database/database_util.h", 39 "database/database_util.h",
30 "database/databases_table.cc", 40 "database/databases_table.cc",
31 "database/databases_table.h", 41 "database/databases_table.h",
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 sources = [ 195 sources = [
186 "fileapi/dump_file_system.cc", 196 "fileapi/dump_file_system.cc",
187 ] 197 ]
188 198
189 deps = [ 199 deps = [
190 ":browser", 200 ":browser",
191 "//base", 201 "//base",
192 "//storage/common", 202 "//storage/common",
193 ] 203 ]
194 } 204 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698