Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Side by Side Diff: webkit/build/V8Bindings/SConscript

Issue 17246: Add V8 bindings for Worker (Part I). (Closed) Base URL: http://src.chromium.org/svn/trunk/src/
Patch Set: '' Created 11 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/build/JavaScriptCore/WTF.vcproj ('k') | webkit/build/V8Bindings/V8Bindings.vcproj » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
304 '$DERIVED_DIR/V8TreeWalker.cpp', 304 '$DERIVED_DIR/V8TreeWalker.cpp',
305 '$DERIVED_DIR/V8UIEvent.cpp', 305 '$DERIVED_DIR/V8UIEvent.cpp',
306 '$DERIVED_DIR/V8UndetectableHTMLCollection.cpp', 306 '$DERIVED_DIR/V8UndetectableHTMLCollection.cpp',
307 '$DERIVED_DIR/V8WebKitAnimationEvent.cpp', 307 '$DERIVED_DIR/V8WebKitAnimationEvent.cpp',
308 '$DERIVED_DIR/V8WebKitCSSKeyframeRule.cpp', 308 '$DERIVED_DIR/V8WebKitCSSKeyframeRule.cpp',
309 '$DERIVED_DIR/V8WebKitCSSKeyframesRule.cpp', 309 '$DERIVED_DIR/V8WebKitCSSKeyframesRule.cpp',
310 '$DERIVED_DIR/V8WebKitCSSMatrix.cpp', 310 '$DERIVED_DIR/V8WebKitCSSMatrix.cpp',
311 '$DERIVED_DIR/V8WebKitCSSTransformValue.cpp', 311 '$DERIVED_DIR/V8WebKitCSSTransformValue.cpp',
312 '$DERIVED_DIR/V8WebKitTransitionEvent.cpp', 312 '$DERIVED_DIR/V8WebKitTransitionEvent.cpp',
313 '$DERIVED_DIR/V8WheelEvent.cpp', 313 '$DERIVED_DIR/V8WheelEvent.cpp',
314 '$DERIVED_DIR/V8Worker.cpp',
315 '$DERIVED_DIR/V8WorkerLocation.cpp',
314 '$DERIVED_DIR/V8XMLHttpRequest.cpp', 316 '$DERIVED_DIR/V8XMLHttpRequest.cpp',
315 '$DERIVED_DIR/V8XMLHttpRequestException.cpp', 317 '$DERIVED_DIR/V8XMLHttpRequestException.cpp',
316 '$DERIVED_DIR/V8XMLHttpRequestProgressEvent.cpp', 318 '$DERIVED_DIR/V8XMLHttpRequestProgressEvent.cpp',
317 '$DERIVED_DIR/V8XMLHttpRequestUpload.cpp', 319 '$DERIVED_DIR/V8XMLHttpRequestUpload.cpp',
318 '$DERIVED_DIR/V8XMLSerializer.cpp', 320 '$DERIVED_DIR/V8XMLSerializer.cpp',
319 '$DERIVED_DIR/V8XPathEvaluator.cpp', 321 '$DERIVED_DIR/V8XPathEvaluator.cpp',
320 '$DERIVED_DIR/V8XPathException.cpp', 322 '$DERIVED_DIR/V8XPathException.cpp',
321 '$DERIVED_DIR/V8XPathExpression.cpp', 323 '$DERIVED_DIR/V8XPathExpression.cpp',
322 '$DERIVED_DIR/V8XPathNSResolver.cpp', 324 '$DERIVED_DIR/V8XPathNSResolver.cpp',
323 '$DERIVED_DIR/V8XPathResult.cpp', 325 '$DERIVED_DIR/V8XPathResult.cpp',
(...skipping 13 matching lines...) Expand all
337 '$PORT_DIR/bindings/v8/v8_events.cpp', 339 '$PORT_DIR/bindings/v8/v8_events.cpp',
338 '$PORT_DIR/bindings/v8/v8_helpers.cpp', 340 '$PORT_DIR/bindings/v8/v8_helpers.cpp',
339 '$PORT_DIR/bindings/v8/v8_index.cpp', 341 '$PORT_DIR/bindings/v8/v8_index.cpp',
340 '$PORT_DIR/bindings/v8/v8_nodefilter.cpp', 342 '$PORT_DIR/bindings/v8/v8_nodefilter.cpp',
341 '$PORT_DIR/bindings/v8/v8_np_utils.cpp', 343 '$PORT_DIR/bindings/v8/v8_np_utils.cpp',
342 '$PORT_DIR/bindings/v8/v8_npobject.cpp', 344 '$PORT_DIR/bindings/v8/v8_npobject.cpp',
343 '$PORT_DIR/bindings/v8/v8_proxy.cpp', 345 '$PORT_DIR/bindings/v8/v8_proxy.cpp',
344 '$PORT_DIR/bindings/v8/v8_vectornodelist.cpp', 346 '$PORT_DIR/bindings/v8/v8_vectornodelist.cpp',
345 '$PORT_DIR/bindings/v8/V8CanvasPixelArrayCustom.cpp', 347 '$PORT_DIR/bindings/v8/V8CanvasPixelArrayCustom.cpp',
346 '$PORT_DIR/bindings/v8/V8MessagePortCustom.cpp', 348 '$PORT_DIR/bindings/v8/V8MessagePortCustom.cpp',
349 '$PORT_DIR/bindings/v8/V8WorkerCustom.cpp',
347 '$PORT_DIR/bindings/v8/V8XMLHttpRequestCustom.cpp', 350 '$PORT_DIR/bindings/v8/V8XMLHttpRequestCustom.cpp',
351 '$PORT_DIR/bindings/v8/WorkerScriptController.cpp',
348 ] 352 ]
349 353
350 if env.Bit('windows'): 354 if env.Bit('windows'):
351 inputs.append('precompiled_v8bindings.cpp') 355 inputs.append('precompiled_v8bindings.cpp')
352 356
353 env.ChromeLibrary('V8Bindings', inputs) 357 env.ChromeLibrary('V8Bindings', inputs)
354 358
355 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', 359 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj',
356 dependencies = [ 360 dependencies = [
357 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', 361 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj',
358 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', 362 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj',
359 ], 363 ],
360 guid='{625A8F11-2B4E-45B4-BD99-C6D629C606C0}') 364 guid='{625A8F11-2B4E-45B4-BD99-C6D629C606C0}')
361 365
362 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', 366 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj',
363 guid='{2F7EDFA2-EE27-4D83-8454-9EFBD5779203}') 367 guid='{2F7EDFA2-EE27-4D83-8454-9EFBD5779203}')
OLDNEW
« no previous file with comments | « webkit/build/JavaScriptCore/WTF.vcproj ('k') | webkit/build/V8Bindings/V8Bindings.vcproj » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698