Title: [95403] trunk/Source
Revision
95403
Author
carlo...@webkit.org
Date
2011-09-19 00:31:19 -0700 (Mon, 19 Sep 2011)

Log Message

[GTK] Fix distcheck build
https://bugs.webkit.org/show_bug.cgi?id=68241

Reviewed by Martin Robinson.

Source/_javascript_Core:

* GNUmakefile.list.am:

Source/WebCore:

* GNUmakefile.list.am:

Source/WebKit2:

* GNUmakefile.am:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (95402 => 95403)


--- trunk/Source/_javascript_Core/ChangeLog	2011-09-19 06:50:06 UTC (rev 95402)
+++ trunk/Source/_javascript_Core/ChangeLog	2011-09-19 07:31:19 UTC (rev 95403)
@@ -1,3 +1,12 @@
+2011-09-19  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        [GTK] Fix distcheck build
+        https://bugs.webkit.org/show_bug.cgi?id=68241
+
+        Reviewed by Martin Robinson.
+
+        * GNUmakefile.list.am:
+
 2011-09-18  Dan Bernstein  <m...@apple.com>
 
         Removed ProfilerServer.

Modified: trunk/Source/_javascript_Core/GNUmakefile.list.am (95402 => 95403)


--- trunk/Source/_javascript_Core/GNUmakefile.list.am	2011-09-19 06:50:06 UTC (rev 95402)
+++ trunk/Source/_javascript_Core/GNUmakefile.list.am	2011-09-19 07:31:19 UTC (rev 95403)
@@ -91,6 +91,7 @@
 	Source/_javascript_Core/bytecode/Opcode.h \
 	Source/_javascript_Core/bytecode/PredictedType.cpp \
 	Source/_javascript_Core/bytecode/PredictedType.h \
+	Source/_javascript_Core/bytecode/PredictionTracker.h \
 	Source/_javascript_Core/bytecode/SamplingTool.cpp \
 	Source/_javascript_Core/bytecode/SamplingTool.h \
 	Source/_javascript_Core/bytecode/StructureStubInfo.cpp \
@@ -106,6 +107,8 @@
 	Source/_javascript_Core/dfg/DFGAliasTracker.h \
 	Source/_javascript_Core/dfg/DFGByteCodeParser.cpp \
 	Source/_javascript_Core/dfg/DFGByteCodeParser.h \
+	Source/_javascript_Core/dfg/DFGCapabilities.cpp \
+	Source/_javascript_Core/dfg/DFGCapabilities.h \
 	Source/_javascript_Core/dfg/DFGDriver.cpp \
 	Source/_javascript_Core/dfg/DFGDriver.h \
 	Source/_javascript_Core/dfg/DFGFPRInfo.h \
@@ -120,6 +123,8 @@
 	Source/_javascript_Core/dfg/DFGNode.h \
 	Source/_javascript_Core/dfg/DFGOperations.cpp \
 	Source/_javascript_Core/dfg/DFGOperations.h \
+	Source/_javascript_Core/dfg/DFGOSREntry.cpp \
+	Source/_javascript_Core/dfg/DFGOSREntry.h \
 	Source/_javascript_Core/dfg/DFGPropagator.cpp \
 	Source/_javascript_Core/dfg/DFGPropagator.h \
 	Source/_javascript_Core/dfg/DFGRegisterBank.h \
@@ -156,6 +161,7 @@
 	Source/_javascript_Core/heap/VTableSpectrum.cpp \
 	Source/_javascript_Core/heap/VTableSpectrum.h \
 	Source/_javascript_Core/heap/Weak.h \
+	Source/_javascript_Core/heap/WeakReferenceHarvester.h \
 	Source/_javascript_Core/heap/WriteBarrierSupport.cpp \
 	Source/_javascript_Core/heap/WriteBarrierSupport.h \
 	Source/_javascript_Core/config.h \
@@ -210,6 +216,7 @@
 	Source/_javascript_Core/interpreter/RegisterFile.h \
 	Source/_javascript_Core/interpreter/Register.h \
 	Source/_javascript_Core/_javascript_CorePrefix.h \
+	Source/_javascript_Core/jit/CompactJITCodeMap.h \
 	Source/_javascript_Core/jit/ExecutableAllocator.cpp \
 	Source/_javascript_Core/jit/ExecutableAllocator.h \
 	Source/_javascript_Core/jit/JITArithmetic32_64.cpp \

Modified: trunk/Source/WebCore/ChangeLog (95402 => 95403)


--- trunk/Source/WebCore/ChangeLog	2011-09-19 06:50:06 UTC (rev 95402)
+++ trunk/Source/WebCore/ChangeLog	2011-09-19 07:31:19 UTC (rev 95403)
@@ -1,3 +1,12 @@
+2011-09-19  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        [GTK] Fix distcheck build
+        https://bugs.webkit.org/show_bug.cgi?id=68241
+
+        Reviewed by Martin Robinson.
+
+        * GNUmakefile.list.am:
+
 2011-09-18  Ilya Tikhonovsky  <loi...@chromium.org>
 
         Web Inspector: chromium-win: "Save timeline data" does nothing.

Modified: trunk/Source/WebCore/GNUmakefile.list.am (95402 => 95403)


--- trunk/Source/WebCore/GNUmakefile.list.am	2011-09-19 06:50:06 UTC (rev 95402)
+++ trunk/Source/WebCore/GNUmakefile.list.am	2011-09-19 07:31:19 UTC (rev 95403)
@@ -898,15 +898,12 @@
 	Source/WebCore/bridge/jni/jsc/JavaMethodJSC.h \
 	Source/WebCore/bridge/jsc/BridgeJSC.cpp \
 	Source/WebCore/bridge/jsc/BridgeJSC.h \
-	Source/WebCore/bridge/npapi.h \
 	Source/WebCore/bridge/NP_jsobject.cpp \
 	Source/WebCore/bridge/NP_jsobject.h \
 	Source/WebCore/bridge/npruntime.cpp \
-	Source/WebCore/bridge/npruntime.h \
 	Source/WebCore/bridge/npruntime_impl.h \
 	Source/WebCore/bridge/npruntime_internal.h \
 	Source/WebCore/bridge/npruntime_priv.h \
-	Source/WebCore/bridge/nptypes.h \
 	Source/WebCore/bridge/runtime_array.cpp \
 	Source/WebCore/bridge/runtime_array.h \
 	Source/WebCore/bridge/runtime_method.cpp \
@@ -2892,6 +2889,9 @@
 	Source/WebCore/platform/Widget.cpp \
 	Source/WebCore/platform/Widget.h \
 	Source/WebCore/platform/WindowsKeyboardCodes.h \
+	Source/WebCore/plugins/npapi.h \
+	Source/WebCore/plugins/npruntime.h \
+	Source/WebCore/plugins/nptypes.h \
 	Source/WebCore/plugins/DOMMimeTypeArray.cpp \
 	Source/WebCore/plugins/DOMMimeTypeArray.h \
 	Source/WebCore/plugins/DOMMimeType.cpp \

Modified: trunk/Source/WebKit2/ChangeLog (95402 => 95403)


--- trunk/Source/WebKit2/ChangeLog	2011-09-19 06:50:06 UTC (rev 95402)
+++ trunk/Source/WebKit2/ChangeLog	2011-09-19 07:31:19 UTC (rev 95403)
@@ -1,3 +1,12 @@
+2011-09-19  Carlos Garcia Campos  <cgar...@igalia.com>
+
+        [GTK] Fix distcheck build
+        https://bugs.webkit.org/show_bug.cgi?id=68241
+
+        Reviewed by Martin Robinson.
+
+        * GNUmakefile.am:
+
 2011-09-17  Mihai Parparita  <mih...@chromium.org>
 
         FrameLoaderClient BackForwardList-related methods are unsued

Modified: trunk/Source/WebKit2/GNUmakefile.am (95402 => 95403)


--- trunk/Source/WebKit2/GNUmakefile.am	2011-09-19 06:50:06 UTC (rev 95402)
+++ trunk/Source/WebKit2/GNUmakefile.am	2011-09-19 07:31:19 UTC (rev 95403)
@@ -509,7 +509,6 @@
 	Source/WebKit2/UIProcess/TextChecker.h \
 	Source/WebKit2/UIProcess/TiledDrawingAreaProxy.cpp \
 	Source/WebKit2/UIProcess/TiledDrawingAreaProxy.h \
-	Source/WebKit2/UIProcess/TiledDrawingAreaTile.h \
 	Source/WebKit2/UIProcess/VisitedLinkProvider.cpp \
 	Source/WebKit2/UIProcess/VisitedLinkProvider.h \
 	Source/WebKit2/UIProcess/WebApplicationCacheManagerProxy.h \
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to