Changeset 38238 in webkit for trunk/JavaScriptCore


Ignore:
Timestamp:
Nov 8, 2008, 6:35:45 PM (17 years ago)
Author:
[email protected]
Message:

wx build fixes after addition of JSCore parser and bycompiler dirs.

Location:
trunk/JavaScriptCore
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/JavaScriptCore/ChangeLog

    r38230 r38238  
     12008-11-08  Kevin Ollivier  <[email protected]>
     2       
     3        wx build fixes after addition of JSCore parser and bycompiler dirs. Also cleanup
     4        the JSCore Bakefile's group names to be consistent.
     5
     6        * JavaScriptCoreSources.bkl:
     7        * jscore.bkl:
     8
    192008-11-07  Cameron Zwarich  <[email protected]>
    210
  • trunk/JavaScriptCore/JavaScriptCoreSources.bkl

    r38226 r38238  
    3030-->
    3131<makefile>
    32     <set append="1" var="JSCORE_SOURCES_API">
     32    <set append="1" var="JSCORE_API_SOURCES">
    3333        API/JSBase.cpp
    3434        API/JSCallbackConstructor.cpp
     
    4242        API/OpaqueJSString.cpp
    4343    </set>
     44    <set append="1" var="JSCORE_BYTECOMPILER_SOURCES">
     45        bytecompiler/CodeGenerator.cpp
     46    </set>
    4447    <set append="1" var="JSCORE_DEBUGGER_SOURCES">
    4548        debugger/Debugger.cpp
    4649        debugger/DebuggerCallFrame.cpp
    4750    </set>
    48     <set append="1" var="JSCORE_SOURCES_KJS">
     51    <set append="1" var="JSCORE_KJS_SOURCES">
    4952        DerivedSources/JavaScriptCore/Grammar.cpp
    5053        wtf/dtoa.cpp
    5154    </set>
    52     <set append="1" var="JSCORE_SOURCES_PCRE">
     55    <set append="1" var="JSCORE_PCRE_SOURCES">
    5356        pcre/pcre_compile.cpp
    5457        pcre/pcre_exec.cpp
     
    5659        pcre/pcre_ucp_searchfuncs.cpp
    5760        pcre/pcre_xclass.cpp
    58     </set>
    59     <set append="1" var="JSCORE_BYTECOMPILER_SOURCES">
    60         bytecompiler/CodeGenerator.cpp
    6161    </set>
    6262    <set append="1" var="JSCORE_PARSER_SOURCES">
  • trunk/JavaScriptCore/jscore.bkl

    r38205 r38238  
    3838    <template id="jscore_base" template="icu,pthreads,wxwk_build_settings">
    3939        <sources>
    40             $(JSCORE_SOURCES_API)
     40            $(JSCORE_API_SOURCES)
     41            $(JSCORE_BYTECOMPILER_SOURCES)
    4142            $(JSCORE_DEBUGGER_SOURCES)
    42             $(JSCORE_SOURCES_KJS)
    43             $(JSCORE_SOURCES_PCRE)
     43            $(JSCORE_KJS_SOURCES)
     44            $(JSCORE_PCRE_SOURCES)
     45            $(JSCORE_PARSER_SOURCES)
    4446            $(JSCORE_PROFILER_SOURCES)
    4547            $(JSCORE_RUNTIME_SOURCES)
     
    5456        <include>$(SRCDIR)/..</include>
    5557        <include>$(SRCDIR)/API</include>
     58        <include>$(SRCDIR)/bytecompiler</include>
    5659        <include>$(SRCDIR)/DerivedSources/JavaScriptCore</include>
    5760        <include>$(SRCDIR)/ForwardingHeaders</include>
Note: See TracChangeset for help on using the changeset viewer.