Changeset 53757 in webkit for trunk/JavaScriptCore/JavaScriptCoreSources.bkl
- Timestamp:
- Jan 22, 2010, 8:42:37 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/JavaScriptCoreSources.bkl
r52264 r53757 1 <?xml version="1.0" ?>2 <!--3 Copyright (C) 2006, 2007 Kevin Ollivier. All rights reserved.4 5 Redistribution and use in source and binary forms, with or without6 modification, are permitted provided that the following conditions7 are met:8 9 1. Redistributions of source code must retain the above copyright10 notice, this list of conditions and the following disclaimer.11 2. Redistributions in binary form must reproduce the above copyright12 notice, this list of conditions and the following disclaimer in the13 documentation and/or other materials provided with the distribution.14 3. Neither the name of Apple Computer, Inc. ("Apple") nor the names of15 its contributors may be used to endorse or promote products derived16 from this software without specific prior written permission.17 18 THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY19 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED20 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE21 DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY22 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES23 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;24 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND25 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT26 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF27 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.28 29 Source files for JSCore.30 -->31 <makefile>32 <set append="1" var="JSCORE_API_SOURCES">33 API/JSBase.cpp34 API/JSCallbackConstructor.cpp35 API/JSCallbackFunction.cpp36 API/JSCallbackObject.cpp37 API/JSClassRef.cpp38 API/JSContextRef.cpp39 API/JSObjectRef.cpp40 API/JSStringRef.cpp41 API/JSValueRef.cpp42 API/OpaqueJSString.cpp43 </set>44 <set append="1" var="JSCORE_BYTECOMPILER_SOURCES">45 bytecompiler/BytecodeGenerator.cpp46 bytecompiler/NodesCodegen.cpp47 </set>48 <set append="1" var="JSCORE_DEBUGGER_SOURCES">49 debugger/Debugger.cpp50 debugger/DebuggerActivation.cpp51 debugger/DebuggerCallFrame.cpp52 </set>53 <set append="1" var="JSCORE_JSC_SOURCES">54 DerivedSources/JavaScriptCore/Grammar.cpp55 wtf/dtoa.cpp56 </set>57 <set append="1" var="JSCORE_PCRE_SOURCES">58 pcre/pcre_compile.cpp59 pcre/pcre_exec.cpp60 pcre/pcre_tables.cpp61 pcre/pcre_ucp_searchfuncs.cpp62 pcre/pcre_xclass.cpp63 </set>64 <set append="1" var="JSCORE_PARSER_SOURCES">65 parser/Lexer.cpp66 parser/Nodes.cpp67 parser/Parser.cpp68 parser/ParserArena.cpp69 </set>70 <set append="1" var="JSCORE_PROFILER_SOURCES">71 profiler/ProfileGenerator.cpp72 profiler/ProfileNode.cpp73 profiler/Profile.cpp74 profiler/Profiler.cpp75 </set>76 <set append="1" var="JSCORE_RUNTIME_SOURCES">77 runtime/ArgList.cpp78 runtime/Arguments.cpp79 runtime/ArrayConstructor.cpp80 runtime/ArrayPrototype.cpp81 runtime/BooleanConstructor.cpp82 runtime/BooleanObject.cpp83 runtime/BooleanPrototype.cpp84 runtime/CallData.cpp85 runtime/Collector.cpp86 runtime/CommonIdentifiers.cpp87 runtime/ConstructData.cpp88 runtime/DateConstructor.cpp89 runtime/DateConversion.cpp90 runtime/DateInstance.cpp91 wtf/DateMath.cpp92 runtime/DatePrototype.cpp93 runtime/Error.cpp94 runtime/ErrorConstructor.cpp95 runtime/ErrorInstance.cpp96 runtime/ErrorPrototype.cpp97 interpreter/CallFrame.cpp98 runtime/FunctionConstructor.cpp99 runtime/FunctionPrototype.cpp100 runtime/GetterSetter.cpp101 runtime/GlobalEvalFunction.cpp102 runtime/Identifier.cpp103 runtime/InitializeThreading.cpp104 runtime/InternalFunction.cpp105 runtime/Completion.cpp106 runtime/JSActivation.cpp107 runtime/JSArray.cpp108 runtime/JSByteArray.cpp109 runtime/JSCell.cpp110 runtime/JSFunction.cpp111 runtime/JSGlobalData.cpp112 runtime/JSGlobalObject.cpp113 runtime/JSGlobalObjectFunctions.cpp114 runtime/JSImmediate.cpp115 runtime/JSLock.cpp116 runtime/JSNotAnObject.cpp117 runtime/JSNumberCell.cpp118 runtime/JSObject.cpp119 runtime/JSONObject.cpp120 runtime/JSPropertyNameIterator.cpp121 runtime/JSStaticScopeObject.cpp122 runtime/JSString.cpp123 runtime/JSValue.cpp124 runtime/JSVariableObject.cpp125 runtime/JSWrapperObject.cpp126 runtime/LiteralParser.cpp127 runtime/Lookup.cpp128 runtime/MathObject.cpp129 runtime/NativeErrorConstructor.cpp130 runtime/NativeErrorPrototype.cpp131 runtime/NumberConstructor.cpp132 runtime/NumberObject.cpp133 runtime/NumberPrototype.cpp134 runtime/ObjectConstructor.cpp135 runtime/ObjectPrototype.cpp136 runtime/Operations.cpp137 runtime/PropertyDescriptor.cpp138 runtime/PropertyNameArray.cpp139 runtime/PropertySlot.cpp140 runtime/PrototypeFunction.cpp141 runtime/RegExp.cpp142 runtime/RegExpConstructor.cpp143 runtime/RegExpObject.cpp144 runtime/RegExpPrototype.cpp145 runtime/ScopeChain.cpp146 runtime/SmallStrings.cpp147 runtime/StringConstructor.cpp148 runtime/StringObject.cpp149 runtime/StringPrototype.cpp150 runtime/Structure.cpp151 runtime/StructureChain.cpp152 runtime/UString.cpp153 </set>154 <set append="1" var="JSCORE_VM_SOURCES">155 bytecode/CodeBlock.cpp156 bytecode/StructureStubInfo.cpp157 bytecode/JumpTable.cpp158 runtime/ExceptionHelpers.cpp159 runtime/TimeoutChecker.cpp160 interpreter/Interpreter.cpp161 bytecode/Opcode.cpp162 bytecode/SamplingTool.cpp163 interpreter/RegisterFile.cpp164 jit/ExecutableAllocator.cpp165 </set>166 <set append="1" var="JSCORE_VM_SOURCES_WIN">167 jit/ExecutableAllocatorWin.cpp168 </set>169 <set append="1" var="JSCORE_VM_SOURCES_POSIX">170 jit/ExecutableAllocatorPosix.cpp171 </set>172 <set append="1" var="JSCORE_WTF_SOURCES">173 wtf/Assertions.cpp174 wtf/ByteArray.cpp175 wtf/CurrentTime.cpp176 wtf/FastMalloc.cpp177 wtf/HashTable.cpp178 wtf/MainThread.cpp179 wtf/RandomNumber.cpp180 wtf/RefCountedLeakCounter.cpp181 wtf/TCSystemAlloc.cpp182 wtf/Threading.cpp183 wtf/ThreadingNone.cpp184 wtf/TypeTraits.cpp185 wtf/wx/MainThreadWx.cpp186 wtf/unicode/CollatorDefault.cpp187 wtf/unicode/icu/CollatorICU.cpp188 wtf/unicode/UTF8.cpp189 </set>190 191 </makefile>
Note:
See TracChangeset
for help on using the changeset viewer.