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 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 '$WEBCORE_DIR/bindings/v8/custom/V8TreeWalkerCustom.cpp', | 384 '$WEBCORE_DIR/bindings/v8/custom/V8TreeWalkerCustom.cpp', |
385 '$WEBCORE_DIR/bindings/v8/custom/V8WebKitCSSMatrixConstructor.cpp', | 385 '$WEBCORE_DIR/bindings/v8/custom/V8WebKitCSSMatrixConstructor.cpp', |
386 '$WEBCORE_DIR/bindings/v8/custom/V8XMLSerializerConstructor.cpp', | 386 '$WEBCORE_DIR/bindings/v8/custom/V8XMLSerializerConstructor.cpp', |
387 '$WEBCORE_DIR/bindings/v8/custom/V8XPathEvaluatorConstructor.cpp', | 387 '$WEBCORE_DIR/bindings/v8/custom/V8XPathEvaluatorConstructor.cpp', |
388 '$WEBCORE_DIR/bindings/v8/custom/V8XSLTProcessorCustom.cpp', | 388 '$WEBCORE_DIR/bindings/v8/custom/V8XSLTProcessorCustom.cpp', |
389 | 389 |
390 '$WEBKIT_DIR/extensions/v8/gc_extension.cc', | 390 '$WEBKIT_DIR/extensions/v8/gc_extension.cc', |
391 '$WEBKIT_DIR/extensions/v8/gears_extension.cc', | 391 '$WEBKIT_DIR/extensions/v8/gears_extension.cc', |
392 '$WEBKIT_DIR/extensions/v8/interval_extension.cc', | 392 '$WEBKIT_DIR/extensions/v8/interval_extension.cc', |
393 '$WEBKIT_DIR/extensions/v8/playback_extension.cc', | 393 '$WEBKIT_DIR/extensions/v8/playback_extension.cc', |
| 394 '$WEBKIT_DIR/extensions/v8/profiler_extension.cc', |
394 ] | 395 ] |
395 | 396 |
396 if env.Bit('windows'): | 397 if env.Bit('windows'): |
397 inputs.append('precompiled_v8bindings.cpp') | 398 inputs.append('precompiled_v8bindings.cpp') |
398 | 399 |
399 env.ChromeLibrary('V8Bindings', inputs) | 400 env.ChromeLibrary('V8Bindings', inputs) |
400 | 401 |
401 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', | 402 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', |
402 dependencies = [ | 403 dependencies = [ |
403 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 404 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
404 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 405 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
405 ], | 406 ], |
406 guid='{625A8F11-2B4E-45B4-BD99-C6D629C606C0}') | 407 guid='{625A8F11-2B4E-45B4-BD99-C6D629C606C0}') |
407 | 408 |
408 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 409 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
409 guid='{2F7EDFA2-EE27-4D83-8454-9EFBD5779203}') | 410 guid='{2F7EDFA2-EE27-4D83-8454-9EFBD5779203}') |
OLD | NEW |