diff options
author | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-04 18:46:02 +0000 |
---|---|---|
committer | sgk@google.com <sgk@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-04 18:46:02 +0000 |
commit | 113736ca60dff0d00fe7ae03eeb095ac50af48c5 (patch) | |
tree | e22ec778bdc601bbdfcee42d45f507e6a6da9de5 /build/SConscript.v8 | |
parent | 968e56aeb9ac7c51f7b1cb36cd7a5586fd13e966 (diff) | |
download | chromium_src-113736ca60dff0d00fe7ae03eeb095ac50af48c5.zip chromium_src-113736ca60dff0d00fe7ae03eeb095ac50af48c5.tar.gz chromium_src-113736ca60dff0d00fe7ae03eeb095ac50af48c5.tar.bz2 |
Checking in the rest of the .lib changes, previous commit was only done from chrome/ and only got those SConscript files.
R=evanm,bradnelson
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@331 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/SConscript.v8')
-rw-r--r-- | build/SConscript.v8 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/build/SConscript.v8 b/build/SConscript.v8 index 7a8f406..2144509 100644 --- a/build/SConscript.v8 +++ b/build/SConscript.v8 @@ -44,10 +44,11 @@ env.AppendENVPath('PATH', env['MSVS_ENV']['PATH']) mksnapshot_exe = File('#/../v8/bin/debug/mksnapshot.exe')
v8_exe = File('#/../v8/Debug/v8_shell.exe')
+v8_lib = File('#/../v8/bin/debug/v8.lib'),
v8_scons_targets = [
mksnapshot_exe,
- File('#/../v8/bin/debug/v8.lib'),
+ v8_lib,
File('#/../v8/bin/debug/snapshot-empty.obj'),
File('#/../v8/vc80.pdb')
]
@@ -63,6 +64,9 @@ env.Install('$V8_DIR', v8) i = env.Install('$TARGET_ROOT', mksnapshot_exe)
env.Alias('webkit', i)
+i = env.Install('$LIBS_DIR', v8_lib)
+env.Alias('webkit', i)
+
v8_shell = env.Command(v8_exe,
[],
|