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

Unified Diff: webkit/webkit.gyp

Issue 159059: Enable DOM_STORAGE in our build. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 5 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/glue/webview_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/webkit.gyp
===================================================================
--- webkit/webkit.gyp (revision 21124)
+++ webkit/webkit.gyp (working copy)
@@ -9,6 +9,7 @@
'ENABLE_DATABASE=1',
'ENABLE_DATAGRID=1',
'ENABLE_DASHBOARD_SUPPORT=0',
+ 'ENABLE_DOM_STORAGE=1',
'ENABLE_JAVASCRIPT_DEBUGGER=0',
'ENABLE_JSC_MULTIPLE_THREADS=0',
'ENABLE_ICONDATABASE=0',
@@ -594,9 +595,6 @@
# Exclude JSC custom bindings.
['exclude', '/third_party/WebKit/WebCore/bindings/js'],
- # Don't build bindings for storage.
- ['exclude', '/third_party/WebKit/WebCore/storage/Storage[^/]*\\.idl$'],
-
# SVG_FILTERS only.
['exclude', '/third_party/WebKit/WebCore/svg/SVG(FE|Filter)[^/]*\\.idl$'],
@@ -619,9 +617,6 @@
['exclude', '/third_party/WebKit/WebCore/svg/Filter[^/]*\\.cpp$'],
['exclude', '/third_party/WebKit/WebCore/svg/SVG(FE|Filter)[^/]*\\.cpp$'],
- # Exclude some, but not all, of storage.
- ['exclude', '/third_party/WebKit/WebCore/storage/(Local|Session)Storage[^/]*\\.cpp$'],
-
# Exclude PluginDebug.cpp since it doesn't compile properly without the
# correct npapi.h inclusion (http://crbug.com/17127
['exclude', '/third_party/WebKit/WebCore/plugins/PluginDebug.cpp'],
@@ -671,9 +666,7 @@
# A few things can't be excluded by patterns. List them individually.
- # Do not build StorageArea or StorageNamespace for Chromium. We (will)
- # have our own implementation.
- '../third_party/WebKit/WebCore/storage/StorageArea.cpp',
+ # Don't build StorageNamespace. We have our own implementation.
'../third_party/WebKit/WebCore/storage/StorageNamespace.cpp',
# Use history/BackForwardListChromium.cpp instead.
@@ -1044,6 +1037,8 @@
'api/src/LocalizedStrings.cpp',
'api/src/MediaPlayerPrivateChromium.cpp',
'api/src/ResourceHandle.cpp',
+ 'api/src/StorageNamespaceProxy.cpp',
+ 'api/src/StorageNamespaceProxy.h',
'api/src/TemporaryGlue.h',
'api/src/WebCache.cpp',
'api/src/WebCString.cpp',
« no previous file with comments | « webkit/glue/webview_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698