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

Last change on this file since 35226 was 35150, checked in by [email protected], 17 years ago

2008-07-12 Jan Michael Alonzo <[email protected]>

Gtk, Qt and Wx build fix: Add wtf/RefCountedLeakCounter in the
build scripts

  • Property svn:eol-style set to native
File size: 5.3 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_SOURCES_API">
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 </set>
43
44 <set append="1" var="JSCORE_SOURCES_KJS">
45 DerivedSources/JavaScriptCore/grammar.cpp
46 kjs/ArgList.cpp
47 kjs/Arguments.cpp
48 kjs/ArrayConstructor.cpp
49 kjs/ArrayPrototype.cpp
50 kjs/BooleanConstructor.cpp
51 kjs/BooleanObject.cpp
52 kjs/BooleanPrototype.cpp
53 kjs/CallData.cpp
54 kjs/collector.cpp
55 kjs/CommonIdentifiers.cpp
56 kjs/ConstructData.cpp
57 kjs/DateConstructor.cpp
58 kjs/DateInstance.cpp
59 kjs/DateMath.cpp
60 kjs/DatePrototype.cpp
61 kjs/debugger.cpp
62 kjs/DebuggerCallFrame.cpp
63 kjs/dtoa.cpp
64 kjs/Error.cpp
65 kjs/ErrorConstructor.cpp
66 kjs/ErrorInstance.cpp
67 kjs/ErrorPrototype.cpp
68 kjs/ExecState.cpp
69 kjs/FunctionConstructor.cpp
70 kjs/FunctionPrototype.cpp
71 kjs/GetterSetter.cpp
72 kjs/GlobalEvalFunction.cpp
73 kjs/identifier.cpp
74 kjs/IndexToNameMap.cpp
75 kjs/InitializeThreading.cpp
76 kjs/InternalFunction.cpp
77 kjs/interpreter.cpp
78 kjs/JSActivation.cpp
79 kjs/JSArray.cpp
80 kjs/JSCell.cpp
81 kjs/JSFunction.cpp
82 kjs/JSGlobalData.cpp
83 kjs/JSGlobalObject.cpp
84 kjs/JSGlobalObjectFunctions.cpp
85 kjs/JSImmediate.cpp
86 kjs/JSLock.cpp
87 kjs/JSNotAnObject.cpp
88 kjs/JSNumberCell.cpp
89 kjs/JSObject.cpp
90 kjs/JSString.cpp
91 kjs/JSValue.cpp
92 kjs/JSVariableObject.cpp
93 kjs/JSWrapperObject.cpp
94 kjs/LabelStack.cpp
95 kjs/lexer.cpp
96 kjs/lookup.cpp
97 kjs/MathObject.cpp
98 kjs/NativeErrorConstructor.cpp
99 kjs/NativeErrorPrototype.cpp
100 kjs/nodes.cpp
101 kjs/nodes2string.cpp
102 kjs/NumberConstructor.cpp
103 kjs/NumberObject.cpp
104 kjs/NumberPrototype.cpp
105 kjs/ObjectConstructor.cpp
106 kjs/ObjectPrototype.cpp
107 kjs/operations.cpp
108 kjs/Parser.cpp
109 kjs/PropertyMap.cpp
110 kjs/PropertyNameArray.cpp
111 kjs/PropertySlot.cpp
112 kjs/PrototypeFunction.cpp
113 kjs/regexp.cpp
114 kjs/RegExpConstructor.cpp
115 kjs/RegExpObject.cpp
116 kjs/RegExpPrototype.cpp
117 kjs/ScopeChain.cpp
118 kjs/StringConstructor.cpp
119 kjs/StringObject.cpp
120 kjs/StringPrototype.cpp
121 kjs/ustring.cpp
122
123 </set>
124 <set append="1" var="JSCORE_SOURCES_PCRE">
125 pcre/pcre_compile.cpp
126 pcre/pcre_exec.cpp
127 pcre/pcre_tables.cpp
128 pcre/pcre_ucp_searchfuncs.cpp
129 pcre/pcre_xclass.cpp
130 </set>
131 <set append="1" var="JSCORE_PROFILER_SOURCES">
132 profiler/HeavyProfile.cpp
133 profiler/ProfileGenerator.cpp
134 profiler/ProfileNode.cpp
135 profiler/Profile.cpp
136 profiler/Profiler.cpp
137 profiler/TreeProfile.cpp
138 </set>
139 <set append="1" var="JSCORE_VM_SOURCES">
140 VM/CodeBlock.cpp
141 VM/CodeGenerator.cpp
142 VM/ExceptionHelpers.cpp
143 VM/JSPropertyNameIterator.cpp
144 VM/Machine.cpp
145 VM/Opcode.cpp
146 VM/RegisterFile.cpp
147 </set>
148 <set append="1" var="JSCORE_WTF_SOURCES">
149 wtf/Assertions.cpp
150 wtf/FastMalloc.cpp
151 wtf/HashTable.cpp
152 wtf/MainThread.cpp
153 wtf/RefCountedLeakCounter.cpp
154 wtf/TCSystemAlloc.cpp
155 wtf/ThreadingNone.cpp
156 wtf/wx/MainThreadWx.cpp
157 wtf/unicode/CollatorDefault.cpp
158 wtf/unicode/icu/CollatorICU.cpp
159 wtf/unicode/UTF8.cpp
160 </set>
161
162</makefile>
Note: See TracBrowser for help on using the repository browser.