source: webkit/trunk/JavaScriptCore/JavaScriptCoreSources.bkl@ 40056

Last change on this file since 40056 was 40056, checked in by [email protected], 16 years ago

Whoops, remove runtime/ByteArray references from .pri and .scons builds, update .bkl

Build fix.

  • Property svn:eol-style set to native
File size: 6.1 KB
Line 
1<?xml version="1.0" ?>
2<!--
3Copyright (C) 2006, 2007 Kevin Ollivier. All rights reserved.
4
5Redistribution and use in source and binary forms, with or without
6modification, are permitted provided that the following conditions
7are met:
8
91. Redistributions of source code must retain the above copyright
10 notice, this list of conditions and the following disclaimer.
112. Redistributions in binary form must reproduce the above copyright
12 notice, this list of conditions and the following disclaimer in the
13 documentation and/or other materials provided with the distribution.
143. Neither the name of Apple Computer, Inc. ("Apple") nor the names of
15 its contributors may be used to endorse or promote products derived
16 from this software without specific prior written permission.
17
18THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
19EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
20WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
21DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
22DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
24LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
25ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
27THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28
29Source files for JSCore.
30-->
31<makefile>
32 <set append="1" var="JSCORE_API_SOURCES">
33 API/JSBase.cpp
34 API/JSCallbackConstructor.cpp
35 API/JSCallbackFunction.cpp
36 API/JSCallbackObject.cpp
37 API/JSClassRef.cpp
38 API/JSContextRef.cpp
39 API/JSObjectRef.cpp
40 API/JSStringRef.cpp
41 API/JSValueRef.cpp
42 API/OpaqueJSString.cpp
43 </set>
44 <set append="1" var="JSCORE_BYTECOMPILER_SOURCES">
45 bytecompiler/BytecodeGenerator.cpp
46 </set>
47 <set append="1" var="JSCORE_DEBUGGER_SOURCES">
48 debugger/Debugger.cpp
49 debugger/DebuggerCallFrame.cpp
50 </set>
51 <set append="1" var="JSCORE_JSC_SOURCES">
52 DerivedSources/JavaScriptCore/Grammar.cpp
53 wtf/dtoa.cpp
54 </set>
55 <set append="1" var="JSCORE_PCRE_SOURCES">
56 pcre/pcre_compile.cpp
57 pcre/pcre_exec.cpp
58 pcre/pcre_tables.cpp
59 pcre/pcre_ucp_searchfuncs.cpp
60 pcre/pcre_xclass.cpp
61 </set>
62 <set append="1" var="JSCORE_PARSER_SOURCES">
63 parser/Lexer.cpp
64 parser/Nodes.cpp
65 parser/Parser.cpp
66 </set>
67 <set append="1" var="JSCORE_PROFILER_SOURCES">
68 profiler/HeavyProfile.cpp
69 profiler/ProfileGenerator.cpp
70 profiler/ProfileNode.cpp
71 profiler/Profile.cpp
72 profiler/Profiler.cpp
73 profiler/TreeProfile.cpp
74 </set>
75 <set append="1" var="JSCORE_RUNTIME_SOURCES">
76 runtime/ArgList.cpp
77 runtime/Arguments.cpp
78 runtime/ArrayConstructor.cpp
79 runtime/ArrayPrototype.cpp
80 runtime/BooleanConstructor.cpp
81 runtime/BooleanObject.cpp
82 runtime/BooleanPrototype.cpp
83 runtime/CallData.cpp
84 runtime/Collector.cpp
85 runtime/CommonIdentifiers.cpp
86 runtime/ConstructData.cpp
87 runtime/DateConstructor.cpp
88 runtime/DateInstance.cpp
89 runtime/DateMath.cpp
90 runtime/DatePrototype.cpp
91 runtime/Error.cpp
92 runtime/ErrorConstructor.cpp
93 runtime/ErrorInstance.cpp
94 runtime/ErrorPrototype.cpp
95 interpreter/CallFrame.cpp
96 runtime/FunctionConstructor.cpp
97 runtime/FunctionPrototype.cpp
98 runtime/GetterSetter.cpp
99 runtime/GlobalEvalFunction.cpp
100 runtime/Identifier.cpp
101 runtime/InitializeThreading.cpp
102 runtime/InternalFunction.cpp
103 runtime/Completion.cpp
104 runtime/JSActivation.cpp
105 runtime/JSArray.cpp
106 runtime/JSByteArray.cpp
107 runtime/JSCell.cpp
108 runtime/JSFunction.cpp
109 runtime/JSGlobalData.cpp
110 runtime/JSGlobalObject.cpp
111 runtime/JSGlobalObjectFunctions.cpp
112 runtime/JSImmediate.cpp
113 runtime/JSLock.cpp
114 runtime/JSNotAnObject.cpp
115 runtime/JSNumberCell.cpp
116 runtime/JSObject.cpp
117 runtime/JSPropertyNameIterator.cpp
118 runtime/JSStaticScopeObject.cpp
119 runtime/JSString.cpp
120 runtime/JSValue.cpp
121 runtime/JSVariableObject.cpp
122 runtime/JSWrapperObject.cpp
123 runtime/Lookup.cpp
124 runtime/MathObject.cpp
125 runtime/NativeErrorConstructor.cpp
126 runtime/NativeErrorPrototype.cpp
127 runtime/NumberConstructor.cpp
128 runtime/NumberObject.cpp
129 runtime/NumberPrototype.cpp
130 runtime/ObjectConstructor.cpp
131 runtime/ObjectPrototype.cpp
132 runtime/Operations.cpp
133 runtime/PropertyNameArray.cpp
134 runtime/PropertySlot.cpp
135 runtime/PrototypeFunction.cpp
136 runtime/RegExp.cpp
137 runtime/RegExpConstructor.cpp
138 runtime/RegExpObject.cpp
139 runtime/RegExpPrototype.cpp
140 runtime/ScopeChain.cpp
141 runtime/SmallStrings.cpp
142 runtime/StringConstructor.cpp
143 runtime/StringObject.cpp
144 runtime/StringPrototype.cpp
145 runtime/Structure.cpp
146 runtime/StructureChain.cpp
147 runtime/UString.cpp
148 </set>
149 <set append="1" var="JSCORE_VM_SOURCES">
150 bytecode/CodeBlock.cpp
151 bytecode/StructureStubInfo.cpp
152 bytecode/JumpTable.cpp
153 runtime/ExceptionHelpers.cpp
154 interpreter/Interpreter.cpp
155 bytecode/Opcode.cpp
156 bytecode/SamplingTool.cpp
157 interpreter/RegisterFile.cpp
158 </set>
159 <set append="1" var="JSCORE_WTF_SOURCES">
160 wtf/Assertions.cpp
161 wtf/ByteArray.cpp
162 wtf/CurrentTime.cpp
163 wtf/FastMalloc.cpp
164 wtf/HashTable.cpp
165 wtf/MainThread.cpp
166 wtf/RandomNumber.cpp
167 wtf/RefCountedLeakCounter.cpp
168 wtf/TCSystemAlloc.cpp
169 wtf/Threading.cpp
170 wtf/ThreadingNone.cpp
171 wtf/wx/MainThreadWx.cpp
172 wtf/unicode/CollatorDefault.cpp
173 wtf/unicode/icu/CollatorICU.cpp
174 wtf/unicode/UTF8.cpp
175 </set>
176
177</makefile>
Note: See TracBrowser for help on using the repository browser.