Changeset 34150 in webkit


Ignore:
Timestamp:
May 27, 2008 9:12:45 AM (16 years ago)
Author:
kevino@webkit.org
Message:

wx build fixes after introduction of SquirrelFish and other updates.

Location:
trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r34149 r34150  
     12008-05-27  Kevin Ollivier  <kevino@theolliviers.com>
     2
     3        wx build fixes to catch up with SquirrelFish, etc.
     4
     5        * JavaScriptCoreSources.bkl:
     6        * jscore.bkl:
     7        * wtf/Platform.h:
     8
    192008-05-27  Darin Adler  <darin@apple.com>
    210
  • trunk/JavaScriptCore/JavaScriptCoreSources.bkl

    r33466 r34150  
    5252        kjs/DateMath.cpp
    5353        kjs/debugger.cpp
     54        kjs/DebuggerCallFrame.cpp
    5455        kjs/dtoa.cpp
    5556        kjs/error_object.cpp
     
    6162        kjs/internal.cpp
    6263        kjs/interpreter.cpp
     64        kjs/JSActivation.cpp
    6365        kjs/JSGlobalObject.cpp
    6466        kjs/JSVariableObject.cpp
    6567        kjs/JSImmediate.cpp
    6668        kjs/JSLock.cpp
     69        kjs/JSNotAnObject.cpp
    6770        kjs/JSWrapperObject.cpp
    6871        kjs/lexer.cpp
     
    9598        pcre/pcre_xclass.cpp
    9699    </set>
    97     <set append="1" var="PROFILER_SOURCES">
     100    <set append="1" var="JSCORE_PROFILER_SOURCES">
    98101        profiler/ProfileNode.cpp
    99102        profiler/Profile.cpp
    100103        profiler/Profiler.cpp
    101104    </set>
    102     <set append="1" var="WTF_SOURCES">
     105    <set append="1" var="JSCORE_VM_SOURCES">
     106        VM/CodeBlock.cpp
     107        VM/CodeGenerator.cpp
     108        VM/ExceptionHelpers.cpp
     109        VM/Instruction.cpp
     110        VM/JSPropertyNameIterator.cpp
     111        VM/LabelID.cpp
     112        VM/Machine.cpp
     113        VM/Opcode.cpp
     114        VM/Register.cpp
     115        VM/RegisterFile.cpp
     116        VM/RegisterFileStack.cpp
     117        VM/RegisterID.cpp
     118    </set>
     119    <set append="1" var="JSCORE_WTF_SOURCES">
    103120        wtf/Assertions.cpp
    104121        wtf/FastMalloc.cpp
  • trunk/JavaScriptCore/jscore.bkl

    r32259 r34150  
    4141            $(JSCORE_SOURCES_KJS)
    4242            $(JSCORE_SOURCES_PCRE)
    43             $(PROFILER_SOURCES)
    44             $(WTF_SOURCES)
     43            $(JSCORE_PROFILER_SOURCES)
     44            $(JSCORE_VM_SOURCES)
     45            $(JSCORE_WTF_SOURCES)
    4546        </sources>
    4647        <install-to>$(WKOUTPUTDIR)</install-to>
     
    5455        <include>$(SRCDIR)/kjs</include>
    5556        <include>$(SRCDIR)/pcre</include>
     57        <include>$(SRCDIR)/profiler</include>
     58        <include>$(SRCDIR)/VM</include>
    5659        <include>$(SRCDIR)/wtf</include>
    5760        <include>$(SRCDIR)/wtf/unicode</include>
     
    8487        <include>$(WK_ROOT)/JavaScriptCore/kjs</include>
    8588        <include>$(WK_ROOT)/JavaScriptCore/pcre</include>
     89        <include>$(WK_ROOT)/JavaScriptCore/profiler</include>
     90        <include>$(WK_ROOT)/JavaScriptCore/VM</include>
    8691        <include>$(WK_ROOT)/JavaScriptCore/wtf</include>
    8792        <dirname>$(WKOUTPUTDIR)</dirname>
  • trunk/JavaScriptCore/wtf/Platform.h

    r33979 r34150  
    222222#endif
    223223
    224 #if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(MAC) || PLATFORM(SYMBIAN) || PLATFORM(WIN)
     224#if PLATFORM(MAC) || PLATFORM(GTK) || PLATFORM(SYMBIAN) || PLATFORM(WIN) || PLATFORM(WX)
    225225#define ENABLE_NETSCAPE_PLUGIN_API 1
    226226#endif
  • trunk/WebCore/ChangeLog

    r34148 r34150  
     12008-05-27  Kevin Ollivier  <kevino@theolliviers.com>
     2
     3        wx build fix. Adding JSHTMLElementWrapperFactory.cpp.
     4       
     5        * WebCoreSources.bkl:
     6
    172008-05-27  Ariya Hidayat  <ariya.hidayat@trolltech.com>
    28
  • trunk/WebCore/WebCoreSources.bkl

    r34108 r34150  
    236236        DerivedSources/WebCore/JSHTMLDocument.cpp
    237237        DerivedSources/WebCore/JSHTMLElement.cpp
     238        DerivedSources/WebCore/JSHTMLElementWrapperFactory.cpp
    238239        DerivedSources/WebCore/JSHTMLEmbedElement.cpp
    239240        DerivedSources/WebCore/JSHTMLFieldSetElement.cpp
Note: See TracChangeset for help on using the changeset viewer.