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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
346 '$WEBCORE_DIR/bindings/v8/V8WorkerContextEventListener.cpp', | 346 '$WEBCORE_DIR/bindings/v8/V8WorkerContextEventListener.cpp', |
347 '$PORT_DIR/bindings/v8/v8_binding.cpp', | 347 '$PORT_DIR/bindings/v8/v8_binding.cpp', |
348 '$PORT_DIR/bindings/v8/v8_custom.cpp', | 348 '$PORT_DIR/bindings/v8/v8_custom.cpp', |
349 '$PORT_DIR/bindings/v8/v8_helpers.cpp', | 349 '$PORT_DIR/bindings/v8/v8_helpers.cpp', |
350 '$PORT_DIR/bindings/v8/v8_index.cpp', | 350 '$PORT_DIR/bindings/v8/v8_index.cpp', |
351 '$PORT_DIR/bindings/v8/v8_nodefilter.cpp', | 351 '$PORT_DIR/bindings/v8/v8_nodefilter.cpp', |
352 '$PORT_DIR/bindings/v8/V8NPUtils.cpp', | 352 '$PORT_DIR/bindings/v8/V8NPUtils.cpp', |
353 '$PORT_DIR/bindings/v8/V8NPObject.cpp', | 353 '$PORT_DIR/bindings/v8/V8NPObject.cpp', |
354 '$PORT_DIR/bindings/v8/v8_proxy.cpp', | 354 '$PORT_DIR/bindings/v8/v8_proxy.cpp', |
355 '$PORT_DIR/bindings/v8/V8CanvasPixelArrayCustom.cpp', | 355 '$PORT_DIR/bindings/v8/V8CanvasPixelArrayCustom.cpp', |
356 '$PORT_DIR/bindings/v8/V8DOMMap.cpp', | |
357 '$PORT_DIR/bindings/v8/V8MessagePortCustom.cpp', | 356 '$PORT_DIR/bindings/v8/V8MessagePortCustom.cpp', |
358 '$PORT_DIR/bindings/v8/V8WorkerContextCustom.cpp', | 357 '$PORT_DIR/bindings/v8/V8WorkerContextCustom.cpp', |
359 '$PORT_DIR/bindings/v8/V8WorkerCustom.cpp', | 358 '$PORT_DIR/bindings/v8/V8WorkerCustom.cpp', |
360 '$PORT_DIR/bindings/v8/V8XMLHttpRequestConstructor.cpp', | 359 '$PORT_DIR/bindings/v8/V8XMLHttpRequestConstructor.cpp', |
361 '$PORT_DIR/bindings/v8/V8XMLHttpRequestCustom.cpp', | 360 '$PORT_DIR/bindings/v8/V8XMLHttpRequestCustom.cpp', |
362 '$PORT_DIR/bindings/v8/V8XMLHttpRequestUploadCustom.cpp', | 361 '$PORT_DIR/bindings/v8/V8XMLHttpRequestUploadCustom.cpp', |
363 '$PORT_DIR/bindings/v8/V8XMLHttpRequestUtilities.cpp', | 362 '$PORT_DIR/bindings/v8/V8XMLHttpRequestUtilities.cpp', |
364 '$WEBCORE_DIR/bindings/v8/WorkerContextExecutionProxy.cpp', | 363 '$WEBCORE_DIR/bindings/v8/WorkerContextExecutionProxy.cpp', |
365 '$WEBCORE_DIR/bindings/v8/WorkerScriptController.cpp', | 364 '$WEBCORE_DIR/bindings/v8/WorkerScriptController.cpp', |
366 | 365 |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
424 | 423 |
425 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', | 424 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', |
426 dependencies = [ | 425 dependencies = [ |
427 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', | 426 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', |
428 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 427 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
429 ], | 428 ], |
430 guid='{625A8F11-2B4E-45B4-BD99-C6D629C606C0}') | 429 guid='{625A8F11-2B4E-45B4-BD99-C6D629C606C0}') |
431 | 430 |
432 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', | 431 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', |
433 guid='{2F7EDFA2-EE27-4D83-8454-9EFBD5779203}') | 432 guid='{2F7EDFA2-EE27-4D83-8454-9EFBD5779203}') |
OLD | NEW |