summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/bindings/gobject/GNUmakefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebCore/bindings/gobject/GNUmakefile.am')
-rw-r--r--Source/WebCore/bindings/gobject/GNUmakefile.am12
1 files changed, 8 insertions, 4 deletions
diff --git a/Source/WebCore/bindings/gobject/GNUmakefile.am b/Source/WebCore/bindings/gobject/GNUmakefile.am
index 4067dbc..881f45a 100644
--- a/Source/WebCore/bindings/gobject/GNUmakefile.am
+++ b/Source/WebCore/bindings/gobject/GNUmakefile.am
@@ -395,10 +395,13 @@ endif
if ENABLE_VIDEO
webkitgtk_built_h_api += \
- $(top_builddir)/DerivedSources/webkit/WebKitDOMHTMLAudioElement.h
+ $(top_builddir)/DerivedSources/webkit/WebKitDOMHTMLAudioElement.h \
+ $(top_builddir)/DerivedSources/webkit/WebKitDOMHTMLVideoElement.h
webkitgtk_gdom_built_sources += \
DerivedSources/webkit/WebKitDOMHTMLAudioElement.cpp \
- DerivedSources/webkit/WebKitDOMHTMLAudioElementPrivate.h
+ DerivedSources/webkit/WebKitDOMHTMLAudioElementPrivate.h \
+ DerivedSources/webkit/WebKitDOMHTMLVideoElement.cpp \
+ DerivedSources/webkit/WebKitDOMHTMLVideoElementPrivate.h
endif
gdom_class_list := $(subst WebKitDOM,, $(filter-out %Private, $(basename $(notdir $(webkitgtk_gdom_built_sources)))))
@@ -424,7 +427,8 @@ $(top_builddir)/DerivedSources/webkit/WebKitDOMEventTargetPrivate.h: $(WebCore)/
$(AM_V_GEN)cp -f $< $@
# Filter out SVG for now
-gdom_feature_defines := $(filter-out ENABLE-SVG%, $(FEATURE_DEFINES))
-DerivedSources/webkit/WebKitDOM%.cpp DerivedSources/webkit/WebKitDOM%.h DerivedSources/webkit/WebKitDOM%Private.h:: %.idl $(SCRIPTS_BINDINGS) $(WebCore)/bindings/scripts/CodeGeneratorGObject.pm
+gdom_feature_defines := $(filter-out ENABLE_INDEXED_DATABASE=1, $(filter-out ENABLE_SVG%, $(FEATURE_DEFINES)))
+DerivedSources/webkit/WebKitDOM%.cpp DerivedSources/webkit/WebKitDOM%.h DerivedSources/webkit/WebKitDOM%Private.h:: %.idl $(SCRIPTS_BINDINGS) $(WebCore)/bindings/scripts/CodeGeneratorGObject.pm $(WebCore)/bindings/gobject/GNUmakefile.am
+ echo $(gdom_feature_defines)
$(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_WEBKIT)" --defines "LANGUAGE_GOBJECT=1 $(gdom_feature_defines)" --generator GObject $<