Title: [143591] trunk/Source
Revision
143591
Author
[email protected]
Date
2013-02-21 05:50:05 -0800 (Thu, 21 Feb 2013)

Log Message

Unreviewed. Fix make distcheck.

Source/WebCore:

* GNUmakefile.list.am: Add missing files to compilation.

Source/WebKit/gtk:

* GNUmakefile.am: Add -DBUILDING_WEBKIT flags to introspection
scanner.

Source/WebKit2:

* GNUmakefile.am: Add -DBUILDING_WEBKIT flags to introspection
scanner.
* GNUmakefile.list.am: Add missing header to compilation and
remove one that no longer exists.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (143590 => 143591)


--- trunk/Source/WebCore/ChangeLog	2013-02-21 13:10:25 UTC (rev 143590)
+++ trunk/Source/WebCore/ChangeLog	2013-02-21 13:50:05 UTC (rev 143591)
@@ -1,3 +1,9 @@
+2013-02-21  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix make distcheck.
+
+        * GNUmakefile.list.am: Add missing files to compilation.
+
 2013-02-21  Alberto Garcia  <[email protected]>
 
         [BlackBerry] Fix access to ResourceHandle::context

Modified: trunk/Source/WebCore/GNUmakefile.list.am (143590 => 143591)


--- trunk/Source/WebCore/GNUmakefile.list.am	2013-02-21 13:10:25 UTC (rev 143590)
+++ trunk/Source/WebCore/GNUmakefile.list.am	2013-02-21 13:50:05 UTC (rev 143591)
@@ -2102,6 +2102,8 @@
 	Source/WebCore/Modules/webdatabase/AbstractDatabaseServer.h \
 	Source/WebCore/Modules/webdatabase/AbstractSQLStatement.h \
 	Source/WebCore/Modules/webdatabase/AbstractSQLStatementBackend.h \
+	Source/WebCore/Modules/webdatabase/AbstractSQLTransaction.h \
+	Source/WebCore/Modules/webdatabase/AbstractSQLTransactionBackend.h \
 	Source/WebCore/Modules/webdatabase/ChangeVersionData.h \
 	Source/WebCore/Modules/webdatabase/ChangeVersionWrapper.cpp \
 	Source/WebCore/Modules/webdatabase/ChangeVersionWrapper.h \
@@ -2877,6 +2879,7 @@
 	Source/WebCore/dom/EventPathWalker.cpp \
 	Source/WebCore/dom/EventPathWalker.h \
 	Source/WebCore/dom/EventRetargeter.cpp \
+	Source/WebCore/dom/EventRetargeter.h \
 	Source/WebCore/dom/EventTarget.cpp \
 	Source/WebCore/dom/EventTarget.h \
 	Source/WebCore/dom/EventQueue.h \
@@ -4557,6 +4560,8 @@
 	Source/WebCore/rendering/RootInlineBox.h \
 	Source/WebCore/rendering/ScrollBehavior.cpp \
 	Source/WebCore/rendering/ScrollBehavior.h \
+	Source/WebCore/rendering/TextAutosizer.cpp \
+	Source/WebCore/rendering/TextAutosizer.h \
 	Source/WebCore/rendering/VerticalPositionCache.h \
 	Source/WebCore/rendering/mathml/RenderMathMLBlock.cpp \
 	Source/WebCore/rendering/mathml/RenderMathMLBlock.h \

Modified: trunk/Source/WebKit/gtk/ChangeLog (143590 => 143591)


--- trunk/Source/WebKit/gtk/ChangeLog	2013-02-21 13:10:25 UTC (rev 143590)
+++ trunk/Source/WebKit/gtk/ChangeLog	2013-02-21 13:50:05 UTC (rev 143591)
@@ -1,3 +1,10 @@
+2013-02-21  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix make distcheck.
+
+        * GNUmakefile.am: Add -DBUILDING_WEBKIT flags to introspection
+        scanner.
+
 2013-02-15  Martin Robinson  <[email protected]>
 
         [GTK] Spread the gyp build files throughout the tree

Modified: trunk/Source/WebKit/gtk/GNUmakefile.am (143590 => 143591)


--- trunk/Source/WebKit/gtk/GNUmakefile.am	2013-02-21 13:10:25 UTC (rev 143590)
+++ trunk/Source/WebKit/gtk/GNUmakefile.am	2013-02-21 13:50:05 UTC (rev 143591)
@@ -312,6 +312,7 @@
 	     --add-include-path=$(WebKit) \
 	     --add-include-path=$(top_builddir) \
 	     --c-include="webkit/webkit.h" \
+	     -DBUILDING_WEBKIT \
 	     -I$(srcdir)/Source \
 	     -I$(WebKit) \
 	     -I$(GENSOURCES) \

Modified: trunk/Source/WebKit2/ChangeLog (143590 => 143591)


--- trunk/Source/WebKit2/ChangeLog	2013-02-21 13:10:25 UTC (rev 143590)
+++ trunk/Source/WebKit2/ChangeLog	2013-02-21 13:50:05 UTC (rev 143591)
@@ -1,3 +1,12 @@
+2013-02-21  Carlos Garcia Campos  <[email protected]>
+
+        Unreviewed. Fix make distcheck.
+
+        * GNUmakefile.am: Add -DBUILDING_WEBKIT flags to introspection
+        scanner.
+        * GNUmakefile.list.am: Add missing header to compilation and
+        remove one that no longer exists.
+
 2013-02-21  Mikhail Pozdnyakov  <[email protected]>
 
         [WK2][EFL] Move PageViewportController and PageViewportControllerClientEfl out from WebView

Modified: trunk/Source/WebKit2/GNUmakefile.am (143590 => 143591)


--- trunk/Source/WebKit2/GNUmakefile.am	2013-02-21 13:10:25 UTC (rev 143590)
+++ trunk/Source/WebKit2/GNUmakefile.am	2013-02-21 13:50:05 UTC (rev 143591)
@@ -245,6 +245,7 @@
 	     -I$(top_srcdir) \
 	     -I$(GENSOURCES_WEBKIT2)/webkit2gtk/include \
 	     -I$(GENSOURCES_WEBKIT2)/webkit2gtk \
+	     -DBUILDING_WEBKIT \
 	     -DWEBKIT2_COMPILATION \
 	     $(GENSOURCES_WEBKIT2)/webkit2gtk/webkit2/WebKitEnumTypes.h \
 	     $(webkit2gtk_h_api) \

Modified: trunk/Source/WebKit2/GNUmakefile.list.am (143590 => 143591)


--- trunk/Source/WebKit2/GNUmakefile.list.am	2013-02-21 13:10:25 UTC (rev 143590)
+++ trunk/Source/WebKit2/GNUmakefile.list.am	2013-02-21 13:50:05 UTC (rev 143591)
@@ -459,7 +459,6 @@
 	Source/WebKit2/Shared/SessionState.h \
 	Source/WebKit2/Shared/StatisticsData.cpp \
 	Source/WebKit2/Shared/StatisticsData.h \
-	Source/WebKit2/Shared/StringPairVector.h \
 	Source/WebKit2/Shared/soup/PlatformCertificateInfo.cpp \
 	Source/WebKit2/Shared/soup/PlatformCertificateInfo.h \
 	Source/WebKit2/Shared/soup/SoupCookiePersistentStorageType.h \
@@ -1027,6 +1026,7 @@
 	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundlePrivate.h \
 	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleRangeHandle.cpp \
 	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleRangeHandle.h \
+	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleRangeHandlePrivate.h \
 	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleScriptWorld.cpp \
 	Source/WebKit2/WebProcess/InjectedBundle/API/c/WKBundleScriptWorld.h \
 	Source/WebKit2/WebProcess/InjectedBundle/API/gtk/WebKitWebExtension.cpp \
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to