Title: [137827] trunk/Source/WebCore
- Revision
- 137827
- Author
- [email protected]
- Date
- 2012-12-15 18:01:34 -0800 (Sat, 15 Dec 2012)
Log Message
Unreviewed. Fix make distcheck.
* bindings/gobject/GNUmakefile.am: Do not dist generated DOM
bindings headers.
* platform/ScrollAnimatorNone.cpp: Include PlatformGestureEvent.h
only if gesture events are enabled.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (137826 => 137827)
--- trunk/Source/WebCore/ChangeLog 2012-12-16 01:49:38 UTC (rev 137826)
+++ trunk/Source/WebCore/ChangeLog 2012-12-16 02:01:34 UTC (rev 137827)
@@ -1,3 +1,12 @@
+2012-12-15 Carlos Garcia Campos <[email protected]>
+
+ Unreviewed. Fix make distcheck.
+
+ * bindings/gobject/GNUmakefile.am: Do not dist generated DOM
+ bindings headers.
+ * platform/ScrollAnimatorNone.cpp: Include PlatformGestureEvent.h
+ only if gesture events are enabled.
+
2012-12-15 Alexey Proskuryakov <[email protected]>
Build fix.
Modified: trunk/Source/WebCore/bindings/gobject/GNUmakefile.am (137826 => 137827)
--- trunk/Source/WebCore/bindings/gobject/GNUmakefile.am 2012-12-16 01:49:38 UTC (rev 137826)
+++ trunk/Source/WebCore/bindings/gobject/GNUmakefile.am 2012-12-16 02:01:34 UTC (rev 137827)
@@ -493,7 +493,7 @@
$(AM_V_GEN)$(PERL) -I$(WebCore)/bindings/scripts $(WebCore)/bindings/scripts/generate-bindings.pl --include $(WebCore)/dom --include $(WebCore)/html --include $(WebCore)/css --include $(WebCore)/page --include $(WebCore)/xml --include $(WebCore)/svg --outputDir "$(GENSOURCES_WEBKITDOM)" --defines "LANGUAGE_GOBJECT=1 $(gdom_feature_defines)" --generator GObject --supplementalDependencyFile $(supplemental_dependency_file) $<
libwebkitdomincludedir = $(libwebkitgtkincludedir)/webkitdom
-libwebkitdominclude_HEADERS = \
+nodist_libwebkitdominclude_HEADERS = \
$(webkitgtk_gdom_built_h_api)
noinst_LTLIBRARIES += \
Modified: trunk/Source/WebCore/platform/ScrollAnimatorNone.cpp (137826 => 137827)
--- trunk/Source/WebCore/platform/ScrollAnimatorNone.cpp 2012-12-16 01:49:38 UTC (rev 137826)
+++ trunk/Source/WebCore/platform/ScrollAnimatorNone.cpp 2012-12-16 02:01:34 UTC (rev 137827)
@@ -37,7 +37,6 @@
#include "FloatPoint.h"
#include "NotImplemented.h"
#include <wtf/OwnArrayPtr.h>
-#include "PlatformGestureEvent.h"
#include "ScrollableArea.h"
#include "ScrollbarTheme.h"
#include <algorithm>
@@ -48,6 +47,10 @@
#include "TraceEvent.h"
#endif
+#if ENABLE(GESTURE_EVENTS)
+#include "PlatformGestureEvent.h"
+#endif
+
using namespace std;
namespace WebCore {
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes