Index: webkit/dom_storage/webkit_dom_storage.gypi |
diff --git a/webkit/dom_storage/webkit_dom_storage.gypi b/webkit/dom_storage/webkit_dom_storage.gypi |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4ecaf7792eca9c0a867beb2751af8e739ce77d1b |
--- /dev/null |
+++ b/webkit/dom_storage/webkit_dom_storage.gypi |
@@ -0,0 +1,30 @@ |
+# 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_database.h', |
+ 'dom_storage_database.cc', |
+ ], |
+ 'conditions': [ |
+ ['inside_chromium_build==0', { |
+ 'dependencies': [ |
+ '<(DEPTH)/webkit/support/setup_third_party.gyp:third_party_headers', |
+ ], |
+ }], |
+ ], |
+ }, |
+ ], |
+} |