diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-27 23:19:27 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-01-27 23:19:27 +0000 |
commit | fb16375636b4ed6e0ef8f14963989f43298b395e (patch) | |
tree | 3bc23d6698cf55dc2e1eb3e5598b7491d97c8527 /build/SConscript.v8 | |
parent | e60a409457cdc45aeca477d3e86156cfa485a9c8 (diff) | |
download | chromium_src-fb16375636b4ed6e0ef8f14963989f43298b395e.zip chromium_src-fb16375636b4ed6e0ef8f14963989f43298b395e.tar.gz chromium_src-fb16375636b4ed6e0ef8f14963989f43298b395e.tar.bz2 |
Allow "hammer Hammer SHARED=1" to build cleanly.
This change is just disabling the targets that don't currently work. This is
needed for the debug linux webkit builder that is coming online real soon now.
Review URL: http://codereview.chromium.org/19041
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@8767 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/SConscript.v8')
-rw-r--r-- | build/SConscript.v8 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/SConscript.v8 b/build/SConscript.v8 index ec0bd83..fc7fa81 100644 --- a/build/SConscript.v8 +++ b/build/SConscript.v8 @@ -15,6 +15,10 @@ mode = 'release' if env['TARGET_DEBUG']: mode = 'debug' +# Don't build V8 as a shared object because the v8 scons file doesn't support +# it. +env.Replace(COMPONENT_STATIC=True) + env = env.Clone( V8_MODE = mode, V8_MODE_DIR = '$V8_DIR/obj/$V8_MODE', |