Changeset 51302 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Nov 22, 2009, 7:45:25 PM (16 years ago)
Author:
Laszlo Gombos
Message:

2009-11-22 Laszlo Gombos <Laszlo Gombos>

Unreviewed.

[Qt] Sort source lists and remove obsolete comments
from the build system.

Location:
trunk/JavaScriptCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r51288 r51302  
     12009-11-22  Laszlo Gombos  <[email protected]>
     2
     3        Unreviewed.
     4
     5        [Qt] Sort source lists and remove obsolete comments
     6        from the build system.
     7
     8        * JavaScriptCore.pri:
     9
    1102009-11-21  Laszlo Gombos  <[email protected]>
    211
  • trunk/JavaScriptCore/JavaScriptCore.pri

    r51110 r51302  
    7575
    7676LUT_FILES += \
     77    runtime/ArrayPrototype.cpp \
    7778    runtime/DatePrototype.cpp \
    7879    runtime/JSONObject.cpp \
     80    runtime/MathObject.cpp \
    7981    runtime/NumberConstructor.cpp \
    80     runtime/StringPrototype.cpp \
    81     runtime/ArrayPrototype.cpp \
    82     runtime/MathObject.cpp \
    8382    runtime/RegExpConstructor.cpp \
    84     runtime/RegExpObject.cpp
     83    runtime/RegExpObject.cpp \
     84    runtime/StringPrototype.cpp
    8585
    8686KEYWORDLUT_FILES += \
     
    9191
    9292SOURCES += \
    93     wtf/Assertions.cpp \
    94     wtf/ByteArray.cpp \
    95     wtf/HashTable.cpp \
    96     wtf/MainThread.cpp \
    97     wtf/RandomNumber.cpp \
    98     wtf/RefCountedLeakCounter.cpp \
    99     wtf/TypeTraits.cpp \
    100     wtf/unicode/CollatorDefault.cpp \
    101     wtf/unicode/icu/CollatorICU.cpp \
    102     wtf/unicode/UTF8.cpp \
    10393    API/JSBase.cpp \
    10494    API/JSCallbackConstructor.cpp \
     
    111101    API/JSValueRef.cpp \
    112102    API/OpaqueJSString.cpp \
     103    assembler/ARMAssembler.cpp \
     104    assembler/MacroAssemblerARM.cpp \
     105    bytecode/CodeBlock.cpp \
     106    bytecode/JumpTable.cpp \
     107    bytecode/Opcode.cpp \
     108    bytecode/SamplingTool.cpp \
     109    bytecode/StructureStubInfo.cpp \
     110    bytecompiler/BytecodeGenerator.cpp \
     111    debugger/DebuggerActivation.cpp \
     112    debugger/DebuggerCallFrame.cpp \
     113    debugger/Debugger.cpp \
     114    interpreter/CallFrame.cpp \
     115    interpreter/Interpreter.cpp \
     116    interpreter/RegisterFile.cpp \
     117    jit/ExecutableAllocator.cpp \
     118    jit/JITArithmetic.cpp \
     119    jit/JITCall.cpp \
     120    jit/JIT.cpp \
     121    jit/JITOpcodes.cpp \
     122    jit/JITPropertyAccess.cpp \
     123    jit/JITStubs.cpp \
     124    parser/Lexer.cpp \
     125    parser/Nodes.cpp \
     126    parser/ParserArena.cpp \
     127    parser/Parser.cpp \
     128    profiler/HeavyProfile.cpp \
     129    profiler/Profile.cpp \
     130    profiler/ProfileGenerator.cpp \
     131    profiler/ProfileNode.cpp \
     132    profiler/Profiler.cpp \
     133    profiler/TreeProfile.cpp \
     134    runtime/ArgList.cpp \
     135    runtime/Arguments.cpp \
     136    runtime/ArrayConstructor.cpp \
     137    runtime/ArrayPrototype.cpp \
     138    runtime/BooleanConstructor.cpp \
     139    runtime/BooleanObject.cpp \
     140    runtime/BooleanPrototype.cpp \
     141    runtime/CallData.cpp \
     142    runtime/Collector.cpp \
     143    runtime/CommonIdentifiers.cpp \
     144    runtime/Completion.cpp \
     145    runtime/ConstructData.cpp \
     146    runtime/DateConstructor.cpp \
     147    runtime/DateConversion.cpp \
     148    runtime/DateInstance.cpp \
     149    runtime/DatePrototype.cpp \
     150    runtime/ErrorConstructor.cpp \
     151    runtime/Error.cpp \
     152    runtime/ErrorInstance.cpp \
     153    runtime/ErrorPrototype.cpp \
     154    runtime/ExceptionHelpers.cpp \
     155    runtime/Executable.cpp \
     156    runtime/FunctionConstructor.cpp \
     157    runtime/FunctionPrototype.cpp \
     158    runtime/GetterSetter.cpp \
     159    runtime/GlobalEvalFunction.cpp \
     160    runtime/Identifier.cpp \
    113161    runtime/InitializeThreading.cpp \
     162    runtime/InternalFunction.cpp \
     163    runtime/JSActivation.cpp \
     164    runtime/JSAPIValueWrapper.cpp \
     165    runtime/JSArray.cpp \
     166    runtime/JSByteArray.cpp \
     167    runtime/JSCell.cpp \
     168    runtime/JSFunction.cpp \
    114169    runtime/JSGlobalData.cpp \
    115170    runtime/JSGlobalObject.cpp \
     171    runtime/JSGlobalObjectFunctions.cpp \
     172    runtime/JSImmediate.cpp \
     173    runtime/JSLock.cpp \
     174    runtime/JSNotAnObject.cpp \
     175    runtime/JSNumberCell.cpp \
     176    runtime/JSObject.cpp \
     177    runtime/JSONObject.cpp \
     178    runtime/JSPropertyNameIterator.cpp \
    116179    runtime/JSStaticScopeObject.cpp \
     180    runtime/JSString.cpp \
     181    runtime/JSValue.cpp \
    117182    runtime/JSVariableObject.cpp \
    118     runtime/JSActivation.cpp \
    119     runtime/JSNotAnObject.cpp \
    120     runtime/JSONObject.cpp \
     183    runtime/JSWrapperObject.cpp \
    121184    runtime/LiteralParser.cpp \
     185    runtime/Lookup.cpp \
    122186    runtime/MarkStack.cpp \
     187    runtime/MathObject.cpp \
     188    runtime/NativeErrorConstructor.cpp \
     189    runtime/NativeErrorPrototype.cpp \
     190    runtime/NumberConstructor.cpp \
     191    runtime/NumberObject.cpp \
     192    runtime/NumberPrototype.cpp \
     193    runtime/ObjectConstructor.cpp \
     194    runtime/ObjectPrototype.cpp \
     195    runtime/Operations.cpp \
     196    runtime/PropertyDescriptor.cpp \
     197    runtime/PropertyNameArray.cpp \
     198    runtime/PropertySlot.cpp \
     199    runtime/PrototypeFunction.cpp \
     200    runtime/RegExpConstructor.cpp \
     201    runtime/RegExp.cpp \
     202    runtime/RegExpObject.cpp \
     203    runtime/RegExpPrototype.cpp \
     204    runtime/ScopeChain.cpp \
     205    runtime/SmallStrings.cpp \
     206    runtime/StringConstructor.cpp \
     207    runtime/StringObject.cpp \
     208    runtime/StringPrototype.cpp \
     209    runtime/StructureChain.cpp \
     210    runtime/Structure.cpp \
    123211    runtime/TimeoutChecker.cpp \
    124     bytecode/CodeBlock.cpp \
    125     bytecode/StructureStubInfo.cpp \
    126     bytecode/JumpTable.cpp \
    127     assembler/ARMAssembler.cpp \
    128     assembler/MacroAssemblerARM.cpp \
    129     jit/JIT.cpp \
    130     jit/JITCall.cpp \
    131     jit/JITArithmetic.cpp \
    132     jit/JITOpcodes.cpp \
    133     jit/JITPropertyAccess.cpp \
    134     jit/ExecutableAllocator.cpp \
    135     jit/JITStubs.cpp \
    136     bytecompiler/BytecodeGenerator.cpp \
    137     runtime/ExceptionHelpers.cpp \
    138     runtime/JSPropertyNameIterator.cpp \
    139     interpreter/Interpreter.cpp \
    140     bytecode/Opcode.cpp \
    141     bytecode/SamplingTool.cpp \
     212    runtime/UString.cpp \
     213    wtf/Assertions.cpp \
     214    wtf/ByteArray.cpp \
     215    wtf/CurrentTime.cpp \
     216    wtf/DateMath.cpp \
     217    wtf/dtoa.cpp \
     218    wtf/FastMalloc.cpp \
     219    wtf/HashTable.cpp \
     220    wtf/MainThread.cpp \
     221    wtf/qt/MainThreadQt.cpp \
     222    wtf/RandomNumber.cpp \
     223    wtf/RefCountedLeakCounter.cpp \
     224    wtf/Threading.cpp \
     225    wtf/TypeTraits.cpp \
     226    wtf/unicode/CollatorDefault.cpp \
     227    wtf/unicode/icu/CollatorICU.cpp \
     228    wtf/unicode/UTF8.cpp \
    142229    yarr/RegexCompiler.cpp \
    143230    yarr/RegexInterpreter.cpp \
    144     yarr/RegexJIT.cpp \
    145     interpreter/RegisterFile.cpp
     231    yarr/RegexJIT.cpp
    146232
    147233symbian {
     
    162248}
    163249
    164 # AllInOneFile.cpp helps gcc analize and optimize code
    165 # Other compilers may be able to do this at link time
    166 SOURCES += \
    167     runtime/ArgList.cpp \
    168     runtime/Arguments.cpp \
    169     runtime/ArrayConstructor.cpp \
    170     runtime/ArrayPrototype.cpp \
    171     runtime/BooleanConstructor.cpp \
    172     runtime/BooleanObject.cpp \
    173     runtime/BooleanPrototype.cpp \
    174     runtime/CallData.cpp \
    175     runtime/Collector.cpp \
    176     runtime/CommonIdentifiers.cpp \
    177     runtime/ConstructData.cpp \
    178     wtf/CurrentTime.cpp \
    179     runtime/DateConstructor.cpp \
    180     runtime/DateConversion.cpp \
    181     runtime/DateInstance.cpp \
    182     runtime/DatePrototype.cpp \
    183     debugger/Debugger.cpp \
    184     debugger/DebuggerCallFrame.cpp \
    185     debugger/DebuggerActivation.cpp \
    186     wtf/dtoa.cpp \
    187     runtime/Error.cpp \
    188     runtime/ErrorConstructor.cpp \
    189     runtime/ErrorInstance.cpp \
    190     runtime/ErrorPrototype.cpp \
    191     interpreter/CallFrame.cpp \
    192     runtime/Executable.cpp \
    193     runtime/FunctionConstructor.cpp \
    194     runtime/FunctionPrototype.cpp \
    195     runtime/GetterSetter.cpp \
    196     runtime/GlobalEvalFunction.cpp \
    197     runtime/Identifier.cpp \
    198     runtime/InternalFunction.cpp \
    199     runtime/Completion.cpp \
    200     runtime/JSArray.cpp \
    201     runtime/JSAPIValueWrapper.cpp \
    202     runtime/JSByteArray.cpp \
    203     runtime/JSCell.cpp \
    204     runtime/JSFunction.cpp \
    205     runtime/JSGlobalObjectFunctions.cpp \
    206     runtime/JSImmediate.cpp \
    207     runtime/JSLock.cpp \
    208     runtime/JSNumberCell.cpp \
    209     runtime/JSObject.cpp \
    210     runtime/JSString.cpp \
    211     runtime/JSValue.cpp \
    212     runtime/JSWrapperObject.cpp \
    213     parser/Lexer.cpp \
    214     runtime/Lookup.cpp \
    215     runtime/MathObject.cpp \
    216     runtime/NativeErrorConstructor.cpp \
    217     runtime/NativeErrorPrototype.cpp \
    218     parser/Nodes.cpp \
    219     runtime/NumberConstructor.cpp \
    220     runtime/NumberObject.cpp \
    221     runtime/NumberPrototype.cpp \
    222     runtime/ObjectConstructor.cpp \
    223     runtime/ObjectPrototype.cpp \
    224     runtime/Operations.cpp \
    225     parser/Parser.cpp \
    226     parser/ParserArena.cpp \
    227     runtime/PropertyDescriptor.cpp \
    228     runtime/PropertyNameArray.cpp \
    229     runtime/PropertySlot.cpp \
    230     runtime/PrototypeFunction.cpp \
    231     runtime/RegExp.cpp \
    232     runtime/RegExpConstructor.cpp \
    233     runtime/RegExpObject.cpp \
    234     runtime/RegExpPrototype.cpp \
    235     runtime/ScopeChain.cpp \
    236     runtime/SmallStrings.cpp \
    237     runtime/StringConstructor.cpp \
    238     runtime/StringObject.cpp \
    239     runtime/StringPrototype.cpp \
    240     runtime/Structure.cpp \
    241     runtime/StructureChain.cpp \
    242     runtime/UString.cpp \
    243     profiler/HeavyProfile.cpp \
    244     profiler/Profile.cpp \
    245     profiler/ProfileGenerator.cpp \
    246     profiler/ProfileNode.cpp \
    247     profiler/Profiler.cpp \
    248     profiler/TreeProfile.cpp \
    249     wtf/DateMath.cpp \
    250     wtf/FastMalloc.cpp \
    251     wtf/Threading.cpp \
    252     wtf/qt/MainThreadQt.cpp
    253 
    254250!contains(DEFINES, ENABLE_SINGLE_THREADED=1) {
    255251    SOURCES += wtf/qt/ThreadingQt.cpp
Note: See TracChangeset for help on using the changeset viewer.