blob: 5212a92eb2492ff327181abd6b9c1f7406283ab6 [file] [log] [blame]
[email protected]44a5a362014-05-30 20:01:511# Copyright 2014 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
pilgrimf55d19fc2014-09-04 00:05:245# GYP version: storage/storage_common.gyp:storage_common
[email protected]44a5a362014-05-30 20:01:516component("common") {
pilgrimf55d19fc2014-09-04 00:05:247 output_name = "storage_common"
[email protected]44a5a362014-05-30 20:01:518 sources = [
9 "data_element.cc",
10 "data_element.h",
pilgrim0e4d1cb32014-08-30 01:16:1111 "storage_common_export.h",
[email protected]44a5a362014-05-30 20:01:5112 "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",
19 "database/database_connections.h",
20 "database/database_identifier.cc",
21 "database/database_identifier.h",
22 "fileapi/directory_entry.cc",
23 "fileapi/directory_entry.h",
24 "fileapi/file_system_info.cc",
25 "fileapi/file_system_info.h",
26 "fileapi/file_system_mount_option.h",
27 "fileapi/file_system_types.h",
28 "fileapi/file_system_util.cc",
29 "fileapi/file_system_util.h",
30 "quota/quota_status_code.cc",
31 "quota/quota_status_code.h",
32 "quota/quota_types.h",
33 ]
34
pilgrim0e4d1cb32014-08-30 01:16:1135 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ]
[email protected]44a5a362014-05-30 20:01:5136 if (is_win) {
37 cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations.
38 }
39
40 deps = [
[email protected]44a5a362014-05-30 20:01:5141 "//base",
42 "//base/third_party/dynamic_annotations",
43 "//net",
44 "//url",
45 ]
46}