summaryrefslogtreecommitdiffstats
path: root/chrome/SConscript
diff options
context:
space:
mode:
authorsgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-30 21:57:59 +0000
committersgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-09-30 21:57:59 +0000
commiteed46c091b85924b097a5d506b3da6371b93007f (patch)
treee1240fd236064ef31aca51862f335b1d95195f8b /chrome/SConscript
parent70f93adced47da66f231a182607252ac32a8fa30 (diff)
downloadchromium_src-eed46c091b85924b097a5d506b3da6371b93007f.zip
chromium_src-eed46c091b85924b097a5d506b3da6371b93007f.tar.gz
chromium_src-eed46c091b85924b097a5d506b3da6371b93007f.tar.bz2
Catch up the SCons webkit build:
* Use the configuration options of the webkit SCons build itself to build a v8.lib with snapshot=off. * Move the build of v8_snapshot.lib (renamed from snapshotv8.lib) from chrome\SConscript to build\SConscript.v8. * Use the libraries{,-empty}.obj and snapshot{,-empty}.obj files from the v8 build itself instead of rolling our own. * Re-order thing in build/SConscript.v8 for readability (I hope). Review URL: http://codereview.chromium.org/5615 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@2734 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/SConscript')
-rw-r--r--chrome/SConscript24
1 files changed, 0 insertions, 24 deletions
diff --git a/chrome/SConscript b/chrome/SConscript
index e3c40b9..79de549 100644
--- a/chrome/SConscript
+++ b/chrome/SConscript
@@ -359,30 +359,6 @@ if env['PLATFORM'] == 'win32':
# '$PYTHON tools/build/win/dependencies.py $(TargetPath) chrome.exe.deps')
- env_snapshot = env.Clone()
-
- env_snapshot.Prepend(
- CPPPATH = [
- '$V8_DIR/src',
- '$V8_DIR/src/pcre/jscre',
- '..',
- ],
- CPPDEFINES = [
- 'ENABLE_DISASSEMBLER',
- ],
- CCFLAGS = [
- '/wd4099',
- '/wd4355',
- '/wd4800',
- ],
- )
-
- env_snapshot.ChromeStaticLibrary('snapshotv8', 'snapshot.cc')
-
- env_snapshot.Command('snapshot.cc', '#/../v8/bin/debug/mksnapshot.exe',
- '$SOURCE $TARGET')
-
-
env_flat = env.Clone(
BROWSER_RESOURCES = Dir('browser_resources'),