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 'variables': { | 6 'variables': { |
7 'conditions': [ | 7 'conditions': [ |
8 ['inside_chromium_build==0', { | 8 ['inside_chromium_build==0', { |
9 'webkit_src_dir': '../../../../..', | 9 'webkit_src_dir': '../../../../..', |
10 },{ | 10 },{ |
(...skipping 11 matching lines...) Expand all Loading... |
22 ], | 22 ], |
23 'targets': [ | 23 'targets': [ |
24 { | 24 { |
25 'target_name': 'webkit_storage', | 25 'target_name': 'webkit_storage', |
26 'type': '<(component)', | 26 'type': '<(component)', |
27 'variables': { 'enable_wexit_time_destructors': 1, }, | 27 'variables': { 'enable_wexit_time_destructors': 1, }, |
28 'dependencies': [ | 28 'dependencies': [ |
29 '<(DEPTH)/base/base.gyp:base', | 29 '<(DEPTH)/base/base.gyp:base', |
30 '<(DEPTH)/base/base.gyp:base_i18n', | 30 '<(DEPTH)/base/base.gyp:base_i18n', |
31 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 31 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
32 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl', | |
33 '<(DEPTH)/net/net.gyp:net', | 32 '<(DEPTH)/net/net.gyp:net', |
34 '<(DEPTH)/sql/sql.gyp:sql', | 33 '<(DEPTH)/sql/sql.gyp:sql', |
35 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', | 34 '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase', |
36 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', | 35 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', |
| 36 '<(DEPTH)/url/url.gyp:url', |
37 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base', | 37 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base', |
38 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 38 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
39 ], | 39 ], |
40 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'], | 40 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'], |
41 'sources': [ | 41 'sources': [ |
42 '../storage/webkit_storage_export.h', | 42 '../storage/webkit_storage_export.h', |
43 '<@(webkit_appcache_sources)', | 43 '<@(webkit_appcache_sources)', |
44 '<@(webkit_blob_sources)', | 44 '<@(webkit_blob_sources)', |
45 '<@(webkit_database_sources)', | 45 '<@(webkit_database_sources)', |
46 '<@(webkit_dom_storage_sources)', | 46 '<@(webkit_dom_storage_sources)', |
(...skipping 15 matching lines...) Expand all Loading... |
62 'sources': [ | 62 'sources': [ |
63 '<@(webkit_fileapi_media_sources)', | 63 '<@(webkit_fileapi_media_sources)', |
64 ], | 64 ], |
65 }], | 65 }], |
66 ], | 66 ], |
67 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 67 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
68 'msvs_disabled_warnings': [ 4267, ], | 68 'msvs_disabled_warnings': [ 4267, ], |
69 }, | 69 }, |
70 ], | 70 ], |
71 } | 71 } |
OLD | NEW |