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

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

Adding Bakefiles for JSCore, WebCore, and WebKit, and adding wxWebKit implementation.

Reviewed by Mark Rowe

File size: 3.9 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
34 API/JSBase.cpp
35 API/JSCallbackConstructor.cpp
36 API/JSCallbackFunction.cpp
37 API/JSCallbackObject.cpp
38 API/JSClassRef.cpp
39 API/JSContextRef.cpp
40 API/JSObjectRef.cpp
41 API/JSStringRef.cpp
42 API/JSValueRef.cpp
43
44 </set>
45
46 <set append="1" var="JSCORE_SOURCES_BINDINGS">
47
48 bindings/c/c_class.cpp
49 bindings/c/c_instance.cpp
50 bindings/c/c_runtime.cpp
51 bindings/c/c_utility.cpp
52 bindings/NP_jsobject.cpp
53 bindings/npruntime.cpp
54 bindings/runtime.cpp
55 bindings/runtime_array.cpp
56 bindings/runtime_method.cpp
57 bindings/runtime_object.cpp
58 bindings/runtime_root.cpp
59
60 </set>
61
62 <set append="1" var="JSCORE_SOURCES_KJS">
63 DerivedSources/JavaScriptCore/grammar.cpp
64 kjs/array_instance.cpp
65 kjs/array_object.cpp
66 kjs/bool_object.cpp
67 kjs/collector.cpp
68 kjs/CommonIdentifiers.cpp
69 kjs/date_object.cpp
70 kjs/DateMath.cpp
71 kjs/debugger.cpp
72 kjs/dtoa.cpp
73 kjs/error_object.cpp
74 kjs/ExecState.cpp
75 kjs/fpconst.cpp
76 kjs/function.cpp
77 kjs/function_object.cpp
78 kjs/identifier.cpp
79 kjs/internal.cpp
80 kjs/interpreter.cpp
81 kjs/JSImmediate.cpp
82 kjs/JSLock.cpp
83 kjs/JSWrapperObject.cpp
84 kjs/lexer.cpp
85 kjs/list.cpp
86 kjs/lookup.cpp
87 kjs/math_object.cpp
88 kjs/nodes.cpp
89 kjs/nodes2string.cpp
90 kjs/number_object.cpp
91 kjs/object.cpp
92 kjs/object_object.cpp
93 kjs/operations.cpp
94 kjs/Parser.cpp
95 kjs/property_map.cpp
96 kjs/property_slot.cpp
97 kjs/PropertyNameArray.cpp
98 kjs/regexp.cpp
99 kjs/regexp_object.cpp
100 kjs/scope_chain.cpp
101 kjs/string_object.cpp
102 kjs/ustring.cpp
103 kjs/value.cpp
104
105 </set>
106 <set append="1" var="JSCORE_SOURCES_PCRE">
107 pcre/pcre_compile.c
108 pcre/pcre_exec.c
109 pcre/pcre_ord2utf8.c
110 pcre/pcre_tables.c
111 pcre/pcre_ucp_searchfuncs.c
112 pcre/pcre_xclass.c
113 </set>
114
115 <set append="1" var="WTF_SOURCES">
116 wtf/Assertions.cpp
117 wtf/FastMalloc.cpp
118 wtf/FastMallocPCRE.cpp
119 wtf/HashTable.cpp
120 wtf/TCSystemAlloc.cpp
121 </set>
122
123</makefile>
Note: See TracBrowser for help on using the repository browser.