summaryrefslogtreecommitdiffstats
path: root/webkit/database
diff options
context:
space:
mode:
authortony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-15 05:21:40 +0000
committertony@chromium.org <tony@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-15 05:21:40 +0000
commit9d61e1fa8f0eabc93d2f68158045a6e33baf3dc8 (patch)
treec8dd74e5bbf8a30828feb112963a9d2524083fc6 /webkit/database
parent12339e980e83376927f001eb7b696c9a1d3fb495 (diff)
downloadchromium_src-9d61e1fa8f0eabc93d2f68158045a6e33baf3dc8.zip
chromium_src-9d61e1fa8f0eabc93d2f68158045a6e33baf3dc8.tar.gz
chromium_src-9d61e1fa8f0eabc93d2f68158045a6e33baf3dc8.tar.bz2
Move glue, appcache, and database targets out of webkit into gypi files.
We include these new gypi files from webkit.gyp (used when building within a chromium checkout) and from webkit_support.gyp (used when building from within a webkit checkout). TEST=everything still compiles Review URL: http://codereview.chromium.org/840003 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41563 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/database')
-rw-r--r--webkit/database/webkit_database.gypi32
1 files changed, 32 insertions, 0 deletions
diff --git a/webkit/database/webkit_database.gypi b/webkit/database/webkit_database.gypi
new file mode 100644
index 0000000..4936a14
--- /dev/null
+++ b/webkit/database/webkit_database.gypi
@@ -0,0 +1,32 @@
+# Copyright (c) 2010 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': 'database',
+ 'type': '<(library)',
+ 'msvs_guid': '1DA00DDD-44E5-4C56-B2CC-414FB0164492',
+ 'dependencies': [
+ '<(DEPTH)/app/app.gyp:app_base',
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
+ ],
+ 'sources': [
+ 'databases_table.cc',
+ 'databases_table.h',
+ 'database_connections.cc',
+ 'database_connections.h',
+ 'database_tracker.cc',
+ 'database_tracker.h',
+ 'database_util.cc',
+ 'database_util.h',
+ 'quota_table.cc',
+ 'quota_table.h',
+ 'vfs_backend.cc',
+ 'vfs_backend.h',
+ ],
+ },
+ ],
+}