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