summaryrefslogtreecommitdiffstats
path: root/webkit/build/WebCore/SConscript
diff options
context:
space:
mode:
authortc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-03 21:54:06 +0000
committertc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-11-03 21:54:06 +0000
commit8c2ebfa123fc39eac8452ad3d8846506c6a96c01 (patch)
treec3885494a2a63b1d97d27519d7a1265402131086 /webkit/build/WebCore/SConscript
parent39f729fe207a9e28b1c5e58f9f2261219fec89ef (diff)
downloadchromium_src-8c2ebfa123fc39eac8452ad3d8846506c6a96c01.zip
chromium_src-8c2ebfa123fc39eac8452ad3d8846506c6a96c01.tar.gz
chromium_src-8c2ebfa123fc39eac8452ad3d8846506c6a96c01.tar.bz2
fix build by adding sql and storage files to webcore SConscript
and adding sqlite to the test_shell dependencies TBR=aa Review URL: http://codereview.chromium.org/9275 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@4497 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/build/WebCore/SConscript')
-rw-r--r--webkit/build/WebCore/SConscript21
1 files changed, 19 insertions, 2 deletions
diff --git a/webkit/build/WebCore/SConscript b/webkit/build/WebCore/SConscript
index 423fee5..72c5f22 100644
--- a/webkit/build/WebCore/SConscript
+++ b/webkit/build/WebCore/SConscript
@@ -397,7 +397,6 @@ input_files = [
'$WEBCORE_DIR/platform/Timer.cpp',
'$WEBCORE_DIR/platform/Widget.cpp',
-
'$WEBCORE_DIR/platform/graphics/AffineTransform.cpp',
'$WEBCORE_DIR/platform/graphics/BitmapImage.cpp',
'$WEBCORE_DIR/platform/graphics/Color.cpp',
@@ -441,6 +440,12 @@ input_files = [
'$WEBCORE_DIR/platform/network/ResourceRequestBase.cpp',
'$WEBCORE_DIR/platform/network/ResourceResponseBase.cpp',
+ '$WEBCORE_DIR/platform/sql/SQLiteAuthorizer.cpp',
+ '$WEBCORE_DIR/platform/sql/SQLiteDatabase.cpp',
+ '$WEBCORE_DIR/platform/sql/SQLiteStatement.cpp',
+ '$WEBCORE_DIR/platform/sql/SQLiteTransaction.cpp',
+ '$WEBCORE_DIR/platform/sql/SQLValue.cpp',
+
'$WEBCORE_DIR/platform/text/AtomicString.cpp',
'$WEBCORE_DIR/platform/text/Base64.cpp',
'$WEBCORE_DIR/platform/text/BidiContext.cpp',
@@ -557,7 +562,6 @@ input_files = [
'$WEBCORE_DIR/rendering/SVGRootInlineBox.cpp',
'$WEBCORE_DIR/rendering/TextControlInnerElements.cpp',
-
'$WEBCORE_DIR/rendering/style/Animation.cpp',
'$WEBCORE_DIR/rendering/style/AnimationList.cpp',
'$WEBCORE_DIR/rendering/style/BindingURI.cpp',
@@ -590,6 +594,19 @@ input_files = [
'$WEBCORE_DIR/rendering/style/TransformOperations.cpp',
'$WEBCORE_DIR/rendering/style/TranslateTransformOperation.cpp',
+ '$WEBCORE_DIR/storage/ChangeVersionWrapper.cpp',
+ '$WEBCORE_DIR/storage/Database.cpp',
+ '$WEBCORE_DIR/storage/DatabaseAuthorizer.cpp',
+ '$WEBCORE_DIR/storage/DatabaseTask.cpp',
+ '$WEBCORE_DIR/storage/DatabaseThread.cpp',
+ '$WEBCORE_DIR/storage/DatabaseTracker.cpp',
+ '$WEBCORE_DIR/storage/OriginQuotaManager.cpp',
+ '$WEBCORE_DIR/storage/OriginUsageRecord.cpp',
+ '$WEBCORE_DIR/storage/SQLResultSet.cpp',
+ '$WEBCORE_DIR/storage/SQLResultSetRowList.cpp',
+ '$WEBCORE_DIR/storage/SQLStatement.cpp',
+ '$WEBCORE_DIR/storage/SQLTransaction.cpp',
+
'$WEBCORE_DIR/svg/ColorDistance.cpp',
'$WEBCORE_DIR/svg/Filter.cpp',
'$WEBCORE_DIR/svg/FilterEffect.cpp',