summaryrefslogtreecommitdiffstats
path: root/Source/JavaScriptCore/GNUmakefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/GNUmakefile.am')
-rw-r--r--Source/JavaScriptCore/GNUmakefile.am20
1 files changed, 13 insertions, 7 deletions
diff --git a/Source/JavaScriptCore/GNUmakefile.am b/Source/JavaScriptCore/GNUmakefile.am
index e6ccf2e..977cb18 100644
--- a/Source/JavaScriptCore/GNUmakefile.am
+++ b/Source/JavaScriptCore/GNUmakefile.am
@@ -5,6 +5,7 @@ javascriptcore_cppflags += \
-I$(srcdir)/Source/JavaScriptCore/assembler \
-I$(srcdir)/Source/JavaScriptCore/bytecode \
-I$(srcdir)/Source/JavaScriptCore/bytecompiler \
+ -I$(srcdir)/Source/JavaScriptCore/collector/handles \
-I$(srcdir)/Source/JavaScriptCore/debugger \
-I$(srcdir)/Source/JavaScriptCore/ForwardingHeaders \
-I$(srcdir)/Source/JavaScriptCore/interpreter \
@@ -44,6 +45,7 @@ javascriptcore_built_nosources += \
Source/JavaScriptCore/runtime/JSONObject.lut.h \
Source/JavaScriptCore/runtime/MathObject.lut.h \
Source/JavaScriptCore/runtime/NumberConstructor.lut.h \
+ Source/JavaScriptCore/runtime/ObjectConstructor.lut.h \
Source/JavaScriptCore/runtime/RegExpConstructor.lut.h \
Source/JavaScriptCore/runtime/RegExpObject.lut.h \
Source/JavaScriptCore/runtime/StringPrototype.lut.h
@@ -109,6 +111,10 @@ javascriptcore_sources += \
Source/JavaScriptCore/bytecompiler/LabelScope.h \
Source/JavaScriptCore/bytecompiler/NodesCodegen.cpp \
Source/JavaScriptCore/bytecompiler/RegisterID.h \
+ Source/JavaScriptCore/collector/handles/Global.h \
+ Source/JavaScriptCore/collector/handles/Handle.h \
+ Source/JavaScriptCore/collector/handles/HandleHeap.cpp \
+ Source/JavaScriptCore/collector/handles/HandleHeap.h \
Source/JavaScriptCore/config.h \
Source/JavaScriptCore/debugger/DebuggerActivation.cpp \
Source/JavaScriptCore/debugger/DebuggerActivation.h \
@@ -117,6 +123,7 @@ javascriptcore_sources += \
Source/JavaScriptCore/debugger/Debugger.cpp \
Source/JavaScriptCore/debugger/Debugger.h \
Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/APICast.h \
+ Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/APIShims.h \
Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/JavaScriptCore.h \
Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/JavaScript.h \
Source/JavaScriptCore/ForwardingHeaders/JavaScriptCore/JSBase.h \
@@ -270,12 +277,8 @@ javascriptcore_sources += \
Source/JavaScriptCore/runtime/FunctionPrototype.h \
Source/JavaScriptCore/runtime/GCActivityCallback.cpp \
Source/JavaScriptCore/runtime/GCActivityCallback.h \
- Source/JavaScriptCore/runtime/GCHandle.cpp \
- Source/JavaScriptCore/runtime/GCHandle.h \
Source/JavaScriptCore/runtime/GetterSetter.cpp \
Source/JavaScriptCore/runtime/GetterSetter.h \
- Source/JavaScriptCore/runtime/GlobalEvalFunction.cpp \
- Source/JavaScriptCore/runtime/GlobalEvalFunction.h \
Source/JavaScriptCore/runtime/Identifier.cpp \
Source/JavaScriptCore/runtime/Identifier.h \
Source/JavaScriptCore/runtime/InitializeThreading.cpp \
@@ -346,7 +349,6 @@ javascriptcore_sources += \
Source/JavaScriptCore/runtime/NativeErrorConstructor.h \
Source/JavaScriptCore/runtime/NativeErrorPrototype.cpp \
Source/JavaScriptCore/runtime/NativeErrorPrototype.h \
- Source/JavaScriptCore/runtime/NativeFunctionWrapper.h \
Source/JavaScriptCore/runtime/NumberConstructor.cpp \
Source/JavaScriptCore/runtime/NumberConstructor.h \
Source/JavaScriptCore/runtime/NumberObject.cpp \
@@ -368,8 +370,6 @@ javascriptcore_sources += \
Source/JavaScriptCore/runtime/PropertySlot.cpp \
Source/JavaScriptCore/runtime/PropertySlot.h \
Source/JavaScriptCore/runtime/Protect.h \
- Source/JavaScriptCore/runtime/PrototypeFunction.cpp \
- Source/JavaScriptCore/runtime/PrototypeFunction.h \
Source/JavaScriptCore/runtime/PutPropertySlot.h \
Source/JavaScriptCore/runtime/RegExpCache.cpp \
Source/JavaScriptCore/runtime/RegExpCache.h \
@@ -426,6 +426,7 @@ javascriptcore_sources += \
Source/JavaScriptCore/wtf/Atomics.h \
Source/JavaScriptCore/wtf/AVLTree.h \
Source/JavaScriptCore/wtf/Bitmap.h \
+ Source/JavaScriptCore/wtf/BlockStack.h \
Source/JavaScriptCore/wtf/BloomFilter.h \
Source/JavaScriptCore/wtf/BumpPointerAllocator.h \
Source/JavaScriptCore/wtf/ByteArray.cpp \
@@ -442,6 +443,7 @@ javascriptcore_sources += \
Source/JavaScriptCore/wtf/Decoder.h \
Source/JavaScriptCore/wtf/Deque.h \
Source/JavaScriptCore/wtf/DisallowCType.h \
+ Source/JavaScriptCore/wtf/DoublyLinkedList.h \
Source/JavaScriptCore/wtf/dtoa.cpp \
Source/JavaScriptCore/wtf/dtoa.h \
Source/JavaScriptCore/wtf/Encoder.h \
@@ -508,6 +510,10 @@ javascriptcore_sources += \
Source/JavaScriptCore/wtf/RefPtrHashMap.h \
Source/JavaScriptCore/wtf/RetainPtr.h \
Source/JavaScriptCore/wtf/SegmentedVector.h \
+ Source/JavaScriptCore/wtf/SentinelLinkedList.h \
+ Source/JavaScriptCore/wtf/SHA1.cpp \
+ Source/JavaScriptCore/wtf/SHA1.h \
+ Source/JavaScriptCore/wtf/SinglyLinkedList.h \
Source/JavaScriptCore/wtf/StackBounds.cpp \
Source/JavaScriptCore/wtf/StackBounds.h \
Source/JavaScriptCore/wtf/StaticConstructors.h \