blob: 2c55bb9eac92e50a63701c1314c91124b9de32cc [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 "database/database_connections.cc",
13 "database/database_connections.h",
14 "database/database_identifier.cc",
15 "database/database_identifier.h",
16 "fileapi/directory_entry.cc",
17 "fileapi/directory_entry.h",
18 "fileapi/file_system_info.cc",
19 "fileapi/file_system_info.h",
20 "fileapi/file_system_mount_option.h",
21 "fileapi/file_system_types.h",
22 "fileapi/file_system_util.cc",
23 "fileapi/file_system_util.h",
24 "quota/quota_status_code.cc",
25 "quota/quota_status_code.h",
26 "quota/quota_types.h",
27 ]
28
brettwd1c719a2015-02-19 23:17:0429 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
30 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
31
pilgrim0e4d1cb32014-08-30 01:16:1132 defines = [ "STORAGE_COMMON_IMPLEMENTATION" ]
[email protected]44a5a362014-05-30 20:01:5133
34 deps = [
[email protected]44a5a362014-05-30 20:01:5135 "//base",
36 "//base/third_party/dynamic_annotations",
37 "//net",
38 "//url",
39 ]
40}