| OLD | NEW |
| 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 Loading... |
| 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}']) |
| OLD | NEW |