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

Unified Diff: webkit/dom_storage/webkit_dom_storage.gypi

Issue 9146025: Framing for a DOMStorage backend that does not depend on in-process-webkit. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 8 years, 11 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
Index: webkit/dom_storage/webkit_dom_storage.gypi
===================================================================
--- webkit/dom_storage/webkit_dom_storage.gypi (revision 0)
+++ webkit/dom_storage/webkit_dom_storage.gypi (revision 0)
@@ -0,0 +1,40 @@
+# Copyright (c) 2012 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': 'dom_storage',
+ 'type': 'static_library',
+ 'variables': { 'enable_wexit_time_destructors': 1, },
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/sql/sql.gyp:sql',
+ '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
+ '<(DEPTH)/webkit/support/webkit_support.gyp:quota',
+ ],
+ 'sources': [
+ 'dom_storage_area.cc',
+ 'dom_storage_area.h',
+ 'dom_storage_context.cc',
+ 'dom_storage_context.h',
+ 'dom_storage_host.cc',
+ 'dom_storage_host.h',
+ 'dom_storage_namespace.cc',
+ 'dom_storage_namespace.h',
+ 'dom_storage_session.cc',
+ 'dom_storage_session.h',
+ 'dom_storage_task_runner.cc',
+ 'dom_storage_task_runner.h',
+ ],
+ 'conditions': [
+ ['inside_chromium_build==0', {
+ 'dependencies': [
+ '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers',
+ ],
+ }],
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698