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

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

Issue 21282: Fix Linux shared build breakage. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 10 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 | « no previous file | no next file » | 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 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
346 '$PORT_DIR/bindings/v8/WorkerContextExecutionProxy.cpp', 346 '$PORT_DIR/bindings/v8/WorkerContextExecutionProxy.cpp',
347 '$PORT_DIR/bindings/v8/WorkerScriptController.cpp', 347 '$PORT_DIR/bindings/v8/WorkerScriptController.cpp',
348 '$PORT_DIR/bindings/v8/extensions/GCController.cpp', 348 '$PORT_DIR/bindings/v8/extensions/GCController.cpp',
349 '$PORT_DIR/bindings/v8/extensions/Interval.cpp', 349 '$PORT_DIR/bindings/v8/extensions/Interval.cpp',
350 '$PORT_DIR/bindings/v8/extensions/Playback.cpp', 350 '$PORT_DIR/bindings/v8/extensions/Playback.cpp',
351 351
352 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLCollectionCustom.cpp', 352 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLCollectionCustom.cpp',
353 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLFormElementCustom.cpp', 353 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLFormElementCustom.cpp',
354 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLInputElementCustom.cpp', 354 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLInputElementCustom.cpp',
355 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp', 355 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp',
356 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLInputElementCustom.cpp',
357 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLOptionsCollectionCustom.cpp',
358 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLSelectElementCustom.cpp', 356 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLSelectElementCustom.cpp',
359 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLSelectElementCustom.h', 357 '$WEBCORE_DIR/bindings/v8/custom/V8HTMLSelectElementCustom.h',
360 '$WEBCORE_DIR/bindings/v8/custom/V8NamedNodesCollection.cpp', 358 '$WEBCORE_DIR/bindings/v8/custom/V8NamedNodesCollection.cpp',
361 '$WEBCORE_DIR/bindings/v8/custom/V8NamedNodesCollection.h', 359 '$WEBCORE_DIR/bindings/v8/custom/V8NamedNodesCollection.h',
362 '$WEBCORE_DIR/bindings/v8/custom/V8SVGElementInstanceCustom.cpp', 360 '$WEBCORE_DIR/bindings/v8/custom/V8SVGElementInstanceCustom.cpp',
363 '$WEBCORE_DIR/bindings/v8/custom/V8SVGLengthCustom.cpp', 361 '$WEBCORE_DIR/bindings/v8/custom/V8SVGLengthCustom.cpp',
364 '$WEBCORE_DIR/bindings/v8/custom/V8SVGMatrixCustom.cpp', 362 '$WEBCORE_DIR/bindings/v8/custom/V8SVGMatrixCustom.cpp',
365 ] 363 ]
366 364
367 if env.Bit('windows'): 365 if env.Bit('windows'):
368 inputs.append('precompiled_v8bindings.cpp') 366 inputs.append('precompiled_v8bindings.cpp')
369 367
370 env.ChromeLibrary('V8Bindings', inputs) 368 env.ChromeLibrary('V8Bindings', inputs)
371 369
372 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj', 370 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings.vcproj',
373 dependencies = [ 371 dependencies = [
374 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj', 372 '$WEBKIT_DIR/build/JSConfig/V8Config.vcproj',
375 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', 373 '$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj',
376 ], 374 ],
377 guid='{625A8F11-2B4E-45B4-BD99-C6D629C606C0}') 375 guid='{625A8F11-2B4E-45B4-BD99-C6D629C606C0}')
378 376
379 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj', 377 env.ChromeMSVSProject('$WEBKIT_DIR/build/V8Bindings/V8Bindings_prebuild.vcproj',
380 guid='{2F7EDFA2-EE27-4D83-8454-9EFBD5779203}') 378 guid='{2F7EDFA2-EE27-4D83-8454-9EFBD5779203}')
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698