OLD | NEW |
| (Empty) |
1 # Copyright (c) 2012 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 'includes': [ | |
7 # TODO(kinuko): Deprecate this when we have a new target for | |
8 # webkit_browser. crbug.com/239710 | |
9 '../browser/webkit_browser.gypi', | |
10 '../common/webkit_common.gypi', | |
11 ], | |
12 'targets': [ | |
13 { | |
14 'target_name': 'webkit_storage', | |
15 'type': '<(component)', | |
16 'variables': { 'enable_wexit_time_destructors': 1, }, | |
17 'dependencies': [ | |
18 '<(DEPTH)/base/base.gyp:base', | |
19 '<(DEPTH)/base/base.gyp:base_i18n', | |
20 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | |
21 '<(DEPTH)/net/net.gyp:net', | |
22 '<(DEPTH)/sql/sql.gyp:sql', | |
23 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | |
24 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | |
25 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | |
26 '<(DEPTH)/url/url.gyp:url_lib', | |
27 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base', | |
28 ], | |
29 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'], | |
30 'sources': [ | |
31 '../storage/webkit_storage_export.h', | |
32 | |
33 # TODO(kinuko): Deprecate them when we have new targets for | |
34 # browser|common|renderer. crbug.com/239710 | |
35 '<@(webkit_browser_storage_sources)', | |
36 '<@(webkit_common_storage_sources)', | |
37 '../renderer/appcache/appcache_frontend_impl.cc', | |
38 '../renderer/appcache/appcache_frontend_impl.h', | |
39 '../renderer/appcache/web_application_cache_host_impl.cc', | |
40 '../renderer/appcache/web_application_cache_host_impl.h', | |
41 '../renderer/dom_storage/dom_storage_cached_area.cc', | |
42 '../renderer/dom_storage/dom_storage_cached_area.h', | |
43 '../renderer/dom_storage/dom_storage_proxy.h', | |
44 '../renderer/fileapi/webfilewriter_base.cc', | |
45 '../renderer/fileapi/webfilewriter_base.h', | |
46 ], | |
47 'conditions': [ | |
48 ['chromeos==1', { | |
49 'sources': [ | |
50 '<@(webkit_browser_fileapi_chromeos_sources)', | |
51 ], | |
52 }], | |
53 ], | |
54 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | |
55 'msvs_disabled_warnings': [ 4267, ], | |
56 }, | |
57 ], | |
58 } | |
OLD | NEW |