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