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 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
339 '$PORT_DIR/bindings/v8/v8_npobject.cpp', | 339 '$PORT_DIR/bindings/v8/v8_npobject.cpp', |
340 '$PORT_DIR/bindings/v8/v8_proxy.cpp', | 340 '$PORT_DIR/bindings/v8/v8_proxy.cpp', |
341 '$PORT_DIR/bindings/v8/v8_vectornodelist.cpp', | 341 '$PORT_DIR/bindings/v8/v8_vectornodelist.cpp', |
342 '$PORT_DIR/bindings/v8/V8MessagePortCustom.cpp', | 342 '$PORT_DIR/bindings/v8/V8MessagePortCustom.cpp', |
343 '$PORT_DIR/bindings/v8/V8XMLHttpRequestCustom.cpp', | 343 '$PORT_DIR/bindings/v8/V8XMLHttpRequestCustom.cpp', |
344 ] | 344 ] |
345 | 345 |
346 if env.Bit('windows'): | 346 if env.Bit('windows'): |
347 inputs.append('precompiled_v8bindings.cpp') | 347 inputs.append('precompiled_v8bindings.cpp') |
348 | 348 |
349 env.ChromeStaticLibrary('V8Bindings', inputs) | 349 env.ChromeLibrary('V8Bindings', inputs) |
350 | 350 |
351 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', | 351 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', |
352 dependencies = [ | 352 dependencies = [ |
353 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 353 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
354 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 354 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
355 ], | 355 ], |
356 guid='{625A8F11-2B4E-45B4-BD99-C6D629C606C0}') | 356 guid='{625A8F11-2B4E-45B4-BD99-C6D629C606C0}') |
357 | 357 |
358 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 358 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
359 guid='{2F7EDFA2-EE27-4D83-8454-9EFBD5779203}') | 359 guid='{2F7EDFA2-EE27-4D83-8454-9EFBD5779203}') |
OLD | NEW |