blob: 01e8f23eee010434994946296d1de8bd56972c91 [file] [log] [blame]
Torne (Richard Coles)5e3f23d2013-06-11 16:24:11 +01001# Copyright 2013 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
5{
6 'targets': [
7 {
8 'target_name': 'webkit_storage_common',
9 'type': '<(component)',
10 'variables': { 'enable_wexit_time_destructors': 1, },
11 'dependencies': [
12 '<(DEPTH)/base/base.gyp:base',
13 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
Torne (Richard Coles)5e3f23d2013-06-11 16:24:11 +010014 '<(DEPTH)/net/net.gyp:net',
Ben Murdocheb525c52013-07-10 11:40:50 +010015 '<(DEPTH)/url/url.gyp:url_lib',
Ben Murdoch7dbb3d52013-07-17 14:55:54 +010016 '<(DEPTH)/webkit/common/webkit_common.gyp:webkit_common',
Torne (Richard Coles)5e3f23d2013-06-11 16:24:11 +010017 ],
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010018 'defines': ['WEBKIT_STORAGE_COMMON_IMPLEMENTATION'],
Torne (Richard Coles)5e3f23d2013-06-11 16:24:11 +010019 'sources': [
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010020 'common/webkit_storage_common_export.h',
Torne (Richard Coles)5e3f23d2013-06-11 16:24:11 +010021 'common/appcache/appcache_interfaces.cc',
22 'common/appcache/appcache_interfaces.h',
23 'common/blob/blob_data.cc',
24 'common/blob/blob_data.h',
25 'common/blob/scoped_file.cc',
26 'common/blob/scoped_file.h',
27 'common/blob/shareable_file_reference.cc',
28 'common/blob/shareable_file_reference.h',
29 'common/database/database_connections.cc',
30 'common/database/database_connections.h',
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010031 'common/database/database_identifier.cc',
32 'common/database/database_identifier.cc',
Torne (Richard Coles)7d4cd472013-06-19 11:58:07 +010033 'common/fileapi/directory_entry.cc',
Torne (Richard Coles)5e3f23d2013-06-11 16:24:11 +010034 'common/fileapi/directory_entry.h',
35 'common/fileapi/file_system_types.h',
36 'common/fileapi/file_system_util.cc',
37 'common/fileapi/file_system_util.h',
38 'common/quota/quota_status_code.cc',
39 'common/quota/quota_status_code.h',
40 'common/quota/quota_types.h',
41 ],
42 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
43 'msvs_disabled_warnings': [ 4267, ],
44 },
45 ],
46}