Source/WebCore:
* GNUmakefile.am: Add idl files in Source/WebCore/html/shadow/ to
EXTRA_DIST.
* GNUmakefile.list.am: Add missing files.
Source/WebKit2:
* GNUmakefile.am: Add missing files.
* WebProcess/WebPage/TapHighlightController.cpp: Add #if
ENABLE(TOUCH_EVENTS).
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@106240
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2012-01-30 Carlos Garcia Campos <cgarcia@igalia.com>
+
+ Unreviewed. Fix make distcheck.
+
+ * GNUmakefile.am: Add idl files in Source/WebCore/html/shadow/ to
+ EXTRA_DIST.
+ * GNUmakefile.list.am: Add missing files.
+
2012-01-27 Vsevolod Vlasov <vsevik@chromium.org>
Web Inspector: TabbedEditorContainer should save open tabs.
$(shell ls $(srcdir)/Source/WebCore/dom/*.idl) \
$(shell ls $(srcdir)/Source/WebCore/fileapi/*.idl) \
$(shell ls $(srcdir)/Source/WebCore/html/canvas/*.idl) \
+ $(shell ls $(srcdir)/Source/WebCore/html/shadow/*.idl) \
$(shell ls $(srcdir)/Source/WebCore/html/track/*.idl) \
$(shell ls $(srcdir)/Source/WebCore/html/*.idl) \
$(shell ls $(srcdir)/Source/WebCore/inspector/*.idl) \
Source/WebCore/page/GeolocationError.h \
Source/WebCore/page/GeolocationPosition.h \
Source/WebCore/page/Geoposition.h \
+ Source/WebCore/page/GestureTapHighlighter.cpp \
+ Source/WebCore/page/GestureTapHighlighter.h \
Source/WebCore/page/GroupSettings.cpp \
Source/WebCore/page/GroupSettings.h \
Source/WebCore/page/History.cpp \
Source/WebCore/page/PerformanceTiming.cpp \
Source/WebCore/page/PerformanceTiming.h \
Source/WebCore/page/PointerLock.h \
+ Source/WebCore/page/PointerLockController.cpp \
+ Source/WebCore/page/PointerLockController.h \
Source/WebCore/page/PositionCallback.h \
Source/WebCore/page/PositionError.h \
Source/WebCore/page/PositionErrorCallback.h \
Source/WebCore/rendering/svg/SVGRootInlineBox.h \
Source/WebCore/rendering/svg/SVGShadowTreeElements.cpp \
Source/WebCore/rendering/svg/SVGShadowTreeElements.h \
+ Source/WebCore/rendering/svg/SVGSubpathData.h \
Source/WebCore/rendering/svg/SVGTextChunk.cpp \
Source/WebCore/rendering/svg/SVGTextChunk.h \
Source/WebCore/rendering/svg/SVGTextChunkBuilder.cpp \
+2012-01-30 Carlos Garcia Campos <cgarcia@igalia.com>
+
+ Unreviewed. Fix make distcheck.
+
+ * GNUmakefile.am: Add missing files.
+ * WebProcess/WebPage/TapHighlightController.cpp: Add #if
+ ENABLE(TOUCH_EVENTS).
+
2012-01-29 Sheriff Bot <webkit.review.bot@gmail.com>
Unreviewed, rolling out r106022.
Source/WebKit2/UIProcess/API/gtk/WebKitNavigationPolicyDecisionPrivate.h \
Source/WebKit2/UIProcess/API/gtk/WebKitPolicyDecision.cpp \
Source/WebKit2/UIProcess/API/gtk/WebKitPolicyDecision.h \
+ Source/WebKit2/UIProcess/API/gtk/WebKitPolicyDecisionPrivate.h \
Source/WebKit2/UIProcess/API/gtk/WebKitPolicyClient.cpp \
Source/WebKit2/UIProcess/API/gtk/WebKitPolicyClient.h \
Source/WebKit2/UIProcess/API/gtk/WebKitPrivate.h \
Source/WebKit2/WebProcess/WebPage/EventDispatcher.h \
Source/WebKit2/WebProcess/WebPage/FindController.cpp \
Source/WebKit2/WebProcess/WebPage/FindController.h \
+ Source/WebKit2/WebProcess/WebPage/TapHighlightController.cpp \
+ Source/WebKit2/WebProcess/WebPage/TapHighlightController.h \
Source/WebKit2/WebProcess/WebPage/gtk/WebInspectorGtk.cpp \
Source/WebKit2/WebProcess/WebPage/gtk/WebPageAccessibilityObject.h \
Source/WebKit2/WebProcess/WebPage/gtk/WebPageAccessibilityObject.cpp \
#include "config.h"
#include "TapHighlightController.h"
+#if ENABLE(TOUCH_EVENTS)
+
#include "ShareableBitmap.h"
#include "WKPage.h"
#include "WebCoreArgumentCoders.h"
}
} // namespace WebKit
+
+#endif // ENABLE(TOUCH_EVENTS)