Changeset 846 for trunk/src/3rdparty/webkit/JavaScriptCore/wscript
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/3rdparty/webkit/JavaScriptCore/wscript
r561 r846 30 30 from settings import * 31 31 32 jscore_excludes = ['jsc.cpp', 'ucptable.cpp' , 'GOwnPtr.cpp']33 jscore_excludes.extend(get_excludes(jscore_dir, ['* CF.cpp', '*Symbian.cpp']))32 jscore_excludes = ['jsc.cpp', 'ucptable.cpp'] 33 jscore_excludes.extend(get_excludes(jscore_dir, ['*CF.cpp', '*Symbian.cpp'])) 34 34 35 35 sources = [] 36 36 37 jscore_excludes.extend(get_excludes(jscore_dir, ['* Win.cpp', '*None.cpp']))37 jscore_excludes.extend(get_excludes(jscore_dir, ['*None.cpp'])) 38 38 39 39 if building_on_win32: 40 jscore_excludes += ['ExecutableAllocatorPosix.cpp', 'MarkStackPosix.cpp' ]40 jscore_excludes += ['ExecutableAllocatorPosix.cpp', 'MarkStackPosix.cpp'] 41 41 sources += ['jit/ExecutableAllocatorWin.cpp', 'runtime/MarkStackWin.cpp'] 42 42 else: 43 43 jscore_excludes.append('JSStringRefBSTR.cpp') 44 44 45 45 46 def generate_jscore_derived_sources(): … … 72 73 73 74 includes = common_includes + full_dirs 75 76 74 77 75 78 # 1. A simple program 76 79 jscore = bld.new_task_gen( 77 80 features = 'cxx cstaticlib', 78 includes = '. .. assembler wrecDerivedSources ForwardingHeaders ' + ' '.join(includes),81 includes = '. .. assembler DerivedSources ForwardingHeaders ' + ' '.join(includes), 79 82 source = sources, 80 83 target = 'jscore', … … 87 90 obj = bld.new_task_gen( 88 91 features = 'cxx cprogram', 89 includes = '. .. assembler wrecDerivedSources ForwardingHeaders ' + ' '.join(includes),92 includes = '. .. assembler DerivedSources ForwardingHeaders ' + ' '.join(includes), 90 93 source = 'jsc.cpp', 91 94 target = 'jsc',
Note:
See TracChangeset
for help on using the changeset viewer.