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

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

wx build fixes after introduction of SquirrelFish and other updates.

  • Property svn:eol-style set to native
File size: 4.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/array_instance.cpp
47 kjs/array_object.cpp
48 kjs/bool_object.cpp
49 kjs/collector.cpp
50 kjs/CommonIdentifiers.cpp
51 kjs/date_object.cpp
52 kjs/DateMath.cpp
53 kjs/debugger.cpp
54 kjs/DebuggerCallFrame.cpp
55 kjs/dtoa.cpp
56 kjs/error_object.cpp
57 kjs/ExecState.cpp
58 kjs/function.cpp
59 kjs/function_object.cpp
60 kjs/identifier.cpp
61 kjs/InitializeThreading.cpp
62 kjs/internal.cpp
63 kjs/interpreter.cpp
64 kjs/JSActivation.cpp
65 kjs/JSGlobalObject.cpp
66 kjs/JSVariableObject.cpp
67 kjs/JSImmediate.cpp
68 kjs/JSLock.cpp
69 kjs/JSNotAnObject.cpp
70 kjs/JSWrapperObject.cpp
71 kjs/lexer.cpp
72 kjs/list.cpp
73 kjs/lookup.cpp
74 kjs/math_object.cpp
75 kjs/nodes.cpp
76 kjs/nodes2string.cpp
77 kjs/number_object.cpp
78 kjs/object.cpp
79 kjs/object_object.cpp
80 kjs/operations.cpp
81 kjs/Parser.cpp
82 kjs/property_map.cpp
83 kjs/property_slot.cpp
84 kjs/PropertyNameArray.cpp
85 kjs/regexp.cpp
86 kjs/regexp_object.cpp
87 kjs/scope_chain.cpp
88 kjs/string_object.cpp
89 kjs/ustring.cpp
90 kjs/value.cpp
91
92 </set>
93 <set append="1" var="JSCORE_SOURCES_PCRE">
94 pcre/pcre_compile.cpp
95 pcre/pcre_exec.cpp
96 pcre/pcre_tables.cpp
97 pcre/pcre_ucp_searchfuncs.cpp
98 pcre/pcre_xclass.cpp
99 </set>
100 <set append="1" var="JSCORE_PROFILER_SOURCES">
101 profiler/ProfileNode.cpp
102 profiler/Profile.cpp
103 profiler/Profiler.cpp
104 </set>
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">
120 wtf/Assertions.cpp
121 wtf/FastMalloc.cpp
122 wtf/HashTable.cpp
123 wtf/MainThread.cpp
124 wtf/TCSystemAlloc.cpp
125 wtf/ThreadingNone.cpp
126 wtf/wx/MainThreadWx.cpp
127 wtf/unicode/CollatorDefault.cpp
128 wtf/unicode/icu/CollatorICU.cpp
129 wtf/unicode/UTF8.cpp
130 </set>
131
132</makefile>
Note: See TracBrowser for help on using the repository browser.