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

Side by Side Diff: storage/common/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_common.gyp:storage_common 5 # GYP version: storage/storage_common.gyp:storage_common
6 component("common") { 6 component("common") {
7 output_name = "storage_common" 7 output_name = "storage_common"
8 sources = [ 8 sources = [
9 "data_element.cc", 9 "data_element.cc",
10 "data_element.h", 10 "data_element.h",
11 "storage_common_export.h", 11 "storage_common_export.h",
12 "blob/blob_data.cc",
13 "blob/blob_data.h",
14 "blob/scoped_file.cc",
15 "blob/scoped_file.h",
16 "blob/shareable_file_reference.cc",
17 "blob/shareable_file_reference.h",
18 "database/database_connections.cc", 12 "database/database_connections.cc",
19 "database/database_connections.h", 13 "database/database_connections.h",
20 "database/database_identifier.cc", 14 "database/database_identifier.cc",
21 "database/database_identifier.h", 15 "database/database_identifier.h",
22 "fileapi/directory_entry.cc", 16 "fileapi/directory_entry.cc",
23 "fileapi/directory_entry.h", 17 "fileapi/directory_entry.h",
24 "fileapi/file_system_info.cc", 18 "fileapi/file_system_info.cc",
25 "fileapi/file_system_info.h", 19 "fileapi/file_system_info.h",
26 "fileapi/file_system_mount_option.h", 20 "fileapi/file_system_mount_option.h",
27 "fileapi/file_system_types.h", 21 "fileapi/file_system_types.h",
28 "fileapi/file_system_util.cc", 22 "fileapi/file_system_util.cc",
29 "fileapi/file_system_util.h", 23 "fileapi/file_system_util.h",
30 "quota/quota_status_code.cc", 24 "quota/quota_status_code.cc",
31 "quota/quota_status_code.h", 25 "quota/quota_status_code.h",
32 "quota/quota_types.h", 26 "quota/quota_types.h",
33 ] 27 ]
34 28
35 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ] 29 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ]
36 if (is_win) { 30 if (is_win) {
37 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations. 31 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations.
38 } 32 }
39 33
40 deps = [ 34 deps = [
41 "//base", 35 "//base",
42 "//base/third_party/dynamic_annotations", 36 "//base/third_party/dynamic_annotations",
43 "//net", 37 "//net",
44 "//url", 38 "//url",
45 ] 39 ]
46 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698