Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(202)

Unified Diff: webkit/storage_common.gyp

Issue 15716007: Split webkit_storage target into webkit_storage_{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: char* -> char[] Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « webkit/storage_browser.gyp ('k') | webkit/storage_renderer.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/storage_common.gyp
diff --git a/webkit/storage_common.gyp b/webkit/storage_common.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..b95b8361eb1d64cc7c8c69c8a1f295b3bc92a3db
--- /dev/null
+++ b/webkit/storage_common.gyp
@@ -0,0 +1,48 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'webkit_storage_common',
+ 'type': '<(component)',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
+ '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
+ '<(DEPTH)/net/net.gyp:net',
+ '<(DEPTH)/third_party/WebKit/Source/WebKit/chromium/WebKit.gyp:webkit',
+ '<(DEPTH)/webkit/base/webkit_base.gyp:webkit_base',
+ ],
+ 'defines': ['WEBKIT_COMMON_IMPLEMENTATION'],
+ 'sources': [
+ 'common/webkit_common_export.h',
+ 'common/appcache/appcache_interfaces.cc',
+ 'common/appcache/appcache_interfaces.h',
+ 'common/blob/blob_data.cc',
+ 'common/blob/blob_data.h',
+ 'common/blob/scoped_file.cc',
+ 'common/blob/scoped_file.h',
+ 'common/blob/shareable_file_reference.cc',
+ 'common/blob/shareable_file_reference.h',
+ 'common/database/database_connections.cc',
+ 'common/database/database_connections.h',
+ 'common/dom_storage/dom_storage_map.cc',
+ 'common/dom_storage/dom_storage_map.h',
+ 'common/dom_storage/dom_storage_types.cc',
+ 'common/dom_storage/dom_storage_types.h',
+ 'common/fileapi/directory_entry.h',
+ 'common/fileapi/file_system_types.h',
+ 'common/fileapi/file_system_util.cc',
+ 'common/fileapi/file_system_util.h',
+ 'common/quota/quota_status_code.cc',
+ 'common/quota/quota_status_code.h',
+ 'common/quota/quota_types.h',
+ ],
+ # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
+ 'msvs_disabled_warnings': [ 4267, ],
+ },
+ ],
+}
« no previous file with comments | « webkit/storage_browser.gyp ('k') | webkit/storage_renderer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698