| 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('env') | 5 Import('env') |
| 6 | 6 |
| 7 env = env.Clone() | 7 env = env.Clone() |
| 8 | 8 |
| 9 if env.Bit('windows'): | 9 if env.Bit('windows'): |
| 10 env.Prepend( | 10 env.Prepend( |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 # leave them here as stark reminders of our past. | 47 # leave them here as stark reminders of our past. |
| 48 input_files.extend([ | 48 input_files.extend([ |
| 49 '$PORT_DIR/bridge/KJSBridge.cpp', | 49 '$PORT_DIR/bridge/KJSBridge.cpp', |
| 50 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', | 50 '$PORT_DIR/bridge/ScriptControllerKJS.cpp', |
| 51 ]) | 51 ]) |
| 52 else: | 52 else: |
| 53 input_files.extend([ | 53 input_files.extend([ |
| 54 '$PORT_DIR/bindings/v8/ScriptController.cpp', | 54 '$PORT_DIR/bindings/v8/ScriptController.cpp', |
| 55 ]) | 55 ]) |
| 56 | 56 |
| 57 env.ChromeStaticLibrary("port", input_files) | 57 env.ChromeLibrary("port", input_files) |
| 58 | 58 |
| 59 env.ChromeMSVSProject('$WEBKIT_DIR/build/port/port.vcproj', | 59 env.ChromeMSVSProject('$WEBKIT_DIR/build/port/port.vcproj', |
| 60 name = 'Port', | 60 name = 'Port', |
| 61 dependencies = [ | 61 dependencies = [ |
| 62 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 62 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
| 63 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 63 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
| 64 ], | 64 ], |
| 65 guid='{5597AD47-3494-4750-A235-4F9C2F864700}') | 65 guid='{5597AD47-3494-4750-A235-4F9C2F864700}') |
| OLD | NEW |