Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(291)

Side by Side Diff: build/SConscript.v8

Issue 9259: Adding visual studio solution files.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 12 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import os 5 import os
6 6
7 Import('env') 7 Import('env')
8 8
9 # Grab the -j flag from the outer environment, if available. 9 # Grab the -j flag from the outer environment, if available.
10 try: 10 try:
(...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 69
70 env.Install('$TARGET_ROOT', v8[0]) 70 env.Install('$TARGET_ROOT', v8[0])
71 env.Install('$LIBS_DIR', v8[1]) 71 env.Install('$LIBS_DIR', v8[1])
72 env.Install('$V8_DIR', '$V8_MODE_DIR/snapshot-empty${OBJSUFFIX}') 72 env.Install('$V8_DIR', '$V8_MODE_DIR/snapshot-empty${OBJSUFFIX}')
73 73
74 # To satisfy tests expecting the following .exe name. 74 # To satisfy tests expecting the following .exe name.
75 if env['PLATFORM'] == 'win32': 75 if env['PLATFORM'] == 'win32':
76 # TODO(evanm): this may be necessary on other platforms(?) 76 # TODO(evanm): this may be necessary on other platforms(?)
77 i = env.InstallAs('$TARGET_ROOT/v8_shell_sample${PROGSUFFIX}', v8[0]) 77 i = env.InstallAs('$TARGET_ROOT/v8_shell_sample${PROGSUFFIX}', v8[0])
78 78
79 env.ChromeStaticLibrary('$V8_DIR/v8_snapshot', 79 env.ChromeStaticLibrary('v8_snapshot',
80 ['$V8_MODE_DIR/libraries-empty${OBJSUFFIX}', 80 ['$V8_MODE_DIR/libraries-empty${OBJSUFFIX}',
81 '$V8_MODE_DIR/snapshot${OBJSUFFIX}']) 81 '$V8_MODE_DIR/snapshot${OBJSUFFIX}'])
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698