summaryrefslogtreecommitdiffstats
path: root/webkit/glue
diff options
context:
space:
mode:
authormmoss@chromium.org <mmoss@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-23 23:58:00 +0000
committermmoss@chromium.org <mmoss@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-02-23 23:58:00 +0000
commita7791cf2c1c1f565c43a8cb0e337ea0b7ab72b9e (patch)
tree297c4aa3c00586ddd894ed320b667d8a17d565ab /webkit/glue
parenta07cbae73ef54a6c5c8877cffd3e80a581ea7d8d (diff)
downloadchromium_src-a7791cf2c1c1f565c43a8cb0e337ea0b7ab72b9e.zip
chromium_src-a7791cf2c1c1f565c43a8cb0e337ea0b7ab72b9e.tar.gz
chromium_src-a7791cf2c1c1f565c43a8cb0e337ea0b7ab72b9e.tar.bz2
Multiple fixes for broken Linux SHARED=1 build. This gets things building, but the resulting 'chrome' binary crashes on start-up (test_shell seems to work better).
Review URL: http://codereview.chromium.org/27054 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@10228 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue')
-rw-r--r--webkit/glue/SConscript9
1 files changed, 8 insertions, 1 deletions
diff --git a/webkit/glue/SConscript b/webkit/glue/SConscript
index ba4c351..3d9b3e6 100644
--- a/webkit/glue/SConscript
+++ b/webkit/glue/SConscript
@@ -9,7 +9,14 @@ env = env.Clone()
env.Append(
CPPPATH = [
'$WEBKIT_DIR/build/WebCore',
- ]
+ ],
+ LIBS = [
+ 'port',
+ 'renderer',
+ 'V8Bindings',
+ 'WebCore',
+ 'WTF',
+ ],
)
if env.Bit('windows'):