Changeset 38497 in webkit for trunk/JavaScriptCore
- Timestamp:
- Nov 17, 2008, 8:24:01 AM (17 years ago)
- Location:
- trunk/JavaScriptCore
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/ChangeLog
r38496 r38497 1 2008-11-17 Geoffrey Garen <[email protected]> 2 3 Not reviewed. 4 5 Try to fix a few more builds. 6 7 * GNUmakefile.am: 8 * JavaScriptCore.pri: 9 * JavaScriptCore.scons: 10 * JavaScriptCoreSources.bkl: 11 1 12 2008-11-17 Geoffrey Garen <[email protected]> 2 13 -
trunk/JavaScriptCore/GNUmakefile.am
r38496 r38497 85 85 JavaScriptCore/VM/Opcode.h \ 86 86 JavaScriptCore/VM/Register.h \ 87 JavaScriptCore/ VM/RegisterID.h \87 JavaScriptCore/bytecompiler/RegisterID.h \ 88 88 JavaScriptCore/VM/SamplingTool.cpp \ 89 89 JavaScriptCore/VM/SamplingTool.h \ 90 JavaScriptCore/ VM/SegmentedVector.h \90 JavaScriptCore/bytecompiler/SegmentedVector.h \ 91 91 JavaScriptCore/config.h \ 92 92 JavaScriptCore/debugger/DebuggerCallFrame.cpp \ … … 231 231 JavaScriptCore/VM/RegisterFile.cpp \ 232 232 JavaScriptCore/VM/RegisterFile.h \ 233 JavaScriptCore/bytecompiler/ CodeGenerator.cpp \234 JavaScriptCore/bytecompiler/ CodeGenerator.h \233 JavaScriptCore/bytecompiler/BytecodeGenerator.cpp \ 234 JavaScriptCore/bytecompiler/BytecodeGenerator.h \ 235 235 JavaScriptCore/bytecompiler/LabelScope.h \ 236 236 JavaScriptCore/debugger/Debugger.cpp \ -
trunk/JavaScriptCore/JavaScriptCore.pri
r38468 r38497 56 56 runtime/JSNotAnObject.cpp \ 57 57 VM/CodeBlock.cpp \ 58 bytecompiler/ CodeGenerator.cpp \58 bytecompiler/BytecodeGenerator.cpp \ 59 59 VM/ExceptionHelpers.cpp \ 60 60 runtime/JSPropertyNameIterator.cpp \ -
trunk/JavaScriptCore/JavaScriptCore.scons
r38440 r38497 20 20 ] 21 21 sources['bytecompiler'] = [ 22 'bytecompiler/ CodeGenerator.cpp',22 'bytecompiler/BytecodeGenerator.cpp', 23 23 ] 24 24 sources['debugger'] = [ -
trunk/JavaScriptCore/JavaScriptCoreSources.bkl
r38440 r38497 43 43 </set> 44 44 <set append="1" var="JSCORE_BYTECOMPILER_SOURCES"> 45 bytecompiler/ CodeGenerator.cpp45 bytecompiler/BytecodeGenerator.cpp 46 46 </set> 47 47 <set append="1" var="JSCORE_DEBUGGER_SOURCES">
Note:
See TracChangeset
for help on using the changeset viewer.