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

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

Issue 1098853003: [BlobAsync] Patch 4: Browser Classes & Logic. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Non C++11 fixes, added nodisk logic and test Created 5 years, 7 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 "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_storage_context.cc", 17 "blob/blob_storage_context.cc",
18 "blob/blob_storage_context.h", 18 "blob/blob_storage_context.h",
19 "blob/blob_transport_strategy.cc",
20 "blob/blob_transport_strategy.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",
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
200 sources = [ 202 sources = [
201 "fileapi/dump_file_system.cc", 203 "fileapi/dump_file_system.cc",
202 ] 204 ]
203 205
204 deps = [ 206 deps = [
205 ":browser", 207 ":browser",
206 "//base", 208 "//base",
207 "//storage/common", 209 "//storage/common",
208 ] 210 ]
209 } 211 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698