1 # Top-level Makefile rule for automake
3 # Variable conventions:
5 # _h_api = API headers that will be installed and included in the distribution
6 # _cppflags = flags that will be passed to the C/CXX Preprocessor
7 # _sources = sources that will be compiled and included in the distribution
8 # _built_sources = files that will be autogenerated by the build system and
9 # will be part of the _SOURCES primary
10 # _built_nosources = files that are autogenerated but are not part of the
12 # _cleanfiles = files that will be removed by the clean target
14 # Sources, headers, flags, etc... should be added to the respective variables
15 # with the above suffix, e.g, webcore-specific sources should go to
16 # webcore_sources, gtk port API and WebCoreSupport parts to webkitgtk_sources,
17 # etc... The only exceptions are the global variables. See Global Variables
20 # Global Variables Reference
21 # global_cppflags = CPPFLAGS that apply to all C/C++ files that are built for any project.
22 # global_cflags = CFLAGS that apply to all C files that are built for any project.
23 # global_cxxflags = CXXFLAGS that apply to all C++ files that are bult for any project.
28 DISTCHECK_CONFIGURE_FLAGS = \
29 --enable-introspection \
32 # Directory for autogenerated sources
33 GENSOURCES := $(top_builddir)/DerivedSources
34 GENSOURCES_JAVASCRIPTCORE := $(top_builddir)/DerivedSources/JavaScriptCore
35 GENSOURCES_WEBCORE := $(top_builddir)/DerivedSources/WebCore
36 GENSOURCES_WEBKIT := $(top_builddir)/DerivedSources/webkit
37 GENPROGRAMS := $(top_builddir)/Programs
38 GENSOURCES_INSPECTOR := $(GENPROGRAMS)/resources/inspector
39 WebCore := $(srcdir)/WebCore
41 # Programs to run the WebKitGtk unit tests
43 GTESTER_REPORT = gtester-report
45 # Libraries and support components
55 javascriptcore_h_api :=
56 javascriptcore_cppflags:=
57 javascriptcore_sources :=
58 javascriptcore_built_sources :=
59 javascriptcore_built_nosources :=
63 webcore_built_sources :=
64 webcore_built_nosources :=
66 webcoregtk_cppflags :=
67 webkitgtk_built_h_api :=
68 webkitgtk_static_h_api :=
72 webkitgtk_gdom_built_sources :=
73 webkitgtk_built_sources :=
74 webkitgtk_built_nosources :=
87 MAINTAINERCLEANFILES :=
90 -Wall -W -Wcast-align -Wchar-subscripts -Wreturn-type \
91 -Wformat -Wformat-security -Wno-format-y2k -Wundef \
92 -Wmissing-format-attribute -Wpointer-arith -Wwrite-strings \
93 -Wno-unused-parameter -Wno-parentheses \
94 -fno-exceptions -DENABLE_GLIB_SUPPORT=1
98 $(SYMBOL_VISIBILITY_INLINES) \
101 # -no-undefined required for building DLLs on Windows
102 # It breaks the build on other platforms, so we use it conditionally
104 no_undefined = -no-undefined
105 version_script = -export-symbols-regex "^(webkit_|k?JS).*"
109 version_script = -Wl,--version-script,$(srcdir)/autotools/symbols.filter
114 libwebkitgtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la
116 # Convenience libraries
117 noinst_LTLIBRARIES += \
120 nodist_EXTRA_libJavaScriptCore_la_SOURCES = \
121 $(javascriptcore_built_nosources)
123 nodist_libJavaScriptCore_la_SOURCES = \
124 $(javascriptcore_built_sources)
126 libJavaScriptCore_ladir = $(prefix)/include/webkit-@WEBKITGTK_API_VERSION@/JavaScriptCore
127 libJavaScriptCore_la_HEADERS = $(javascriptcore_h_api)
129 libJavaScriptCore_la_SOURCES = \
130 $(javascriptcore_sources)
132 libJavaScriptCore_la_LIBADD = \
137 libJavaScriptCore_la_CXXFLAGS = \
139 $(libJavaScriptCore_la_CFLAGS)
141 libJavaScriptCore_la_CFLAGS = \
148 libJavaScriptCore_la_CPPFLAGS = \
150 $(javascriptcore_cppflags)
153 nodist_EXTRA_libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_SOURCES = \
154 $(webcore_built_nosources)
156 nodist_libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_SOURCES = \
157 $(webcore_built_sources) \
158 $(webkitgtk_built_sources)
160 libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_ladir = $(prefix)/include/webkit-@WEBKITGTK_API_VERSION@/webkit
161 libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_HEADERS = \
162 $(webkitgtk_static_h_api)
164 nodist_libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_HEADERS = \
165 $(webkitgtk_built_h_api) \
166 WebKit/gtk/webkit/webkitenumtypes.h
168 libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_SOURCES = \
170 $(webcoregtk_sources) \
173 libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_CXXFLAGS = \
176 libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_CFLAGS = \
179 # When building WebCore/WebKit, we want WebCore/config.h and NOT JavaScriptCore/config.h,
180 # hence, it's important that WebCore/ should come first before JavaScriptCore in the
182 libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_CPPFLAGS = \
184 -DPACKAGE_LOCALE_DIR=\"$(localedir)\" \
185 -DDATA_DIR=\"${datadir}\" \
186 -I$(top_builddir)/DerivedSources/webkit \
187 -I$(srcdir)/WebCore/bindings \
188 -I$(srcdir)/WebCore/bindings/gobject \
189 -I$(srcdir)/WebKit/gtk \
190 -I$(srcdir)/WebKit/gtk/WebCoreSupport \
191 -I$(srcdir)/WebKit/gtk/webkit \
192 -I$(top_builddir)/WebKit/gtk \
193 -I$(top_builddir)/WebKit/gtk/webkit \
194 -I$(GENSOURCES_WEBKIT) \
196 $(webcore_cppflags) \
197 $(webcoregtk_cppflags) \
198 $(javascriptcore_cppflags) \
199 -fno-strict-aliasing \
206 $(GSTREAMER_CFLAGS) \
216 # For the Gtk port we want to use XP_UNIX both in X11 and Mac
218 libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_CPPFLAGS += \
222 libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_LDFLAGS = \
223 -version-info @LIBWEBKITGTK_VERSION@ \
227 libwebkitgtk_@WEBKITGTK_API_MAJOR_VERSION@_@WEBKITGTK_API_MINOR_VERSION@_la_LIBADD = \
229 libJavaScriptCore.la \
232 $(COVERAGE_LDFLAGS) \
255 # Extra checks and flags
257 -DBUILDING_CAIRO__=1 \
263 -DWTF_USE_ICU_UNICODE=1
268 -DWTF_USE_GLIB_UNICODE=1
271 if !ENABLE_FAST_MALLOC
278 -DWTF_USE_GSTREAMER=1
282 # GTK+ 2.x/3.x support
286 -DGTK_API_VERSION_2=1
290 global_cppflags += -DNDEBUG
291 global_cflags += $(SYMBOL_VISIBILITY)
294 -DG_DISABLE_DEPRECATED \
295 -DGDK_PIXBUF_DISABLE_DEPRECATED \
296 -DGDK_DISABLE_DEPRECATED \
297 -DGTK_DISABLE_DEPRECATED \
298 -DPANGO_DISABLE_DEPRECATED
299 # Might be useful in the future
300 # -DGDK_MULTIHEAD_SAFE \
301 # -DGTK_MULTIHEAD_SAFE
306 -DGCC_GENERATE_TEST_COVERAGE_FILES \
307 -DGCC_INSTRUMENT_PROGRAM_FLOW_ARCS
310 webkitgtk_static_h_api += \
311 $(srcdir)/WebCore/platform/network/soup/cache/webkit/soup-cache.h \
312 $(srcdir)/WebKit/gtk/webkit/webkit.h \
313 $(srcdir)/WebKit/gtk/webkit/webkitdefines.h \
314 $(srcdir)/WebKit/gtk/webkit/webkitdownload.h \
315 $(srcdir)/WebKit/gtk/webkit/webkiterror.h \
316 $(srcdir)/WebKit/gtk/webkit/webkitgeolocationpolicydecision.h \
317 $(srcdir)/WebKit/gtk/webkit/webkithittestresult.h \
318 $(srcdir)/WebKit/gtk/webkit/webkitnetworkrequest.h \
319 $(srcdir)/WebKit/gtk/webkit/webkitnetworkresponse.h \
320 $(srcdir)/WebKit/gtk/webkit/webkitsecurityorigin.h \
321 $(srcdir)/WebKit/gtk/webkit/webkitsoupauthdialog.h \
322 $(srcdir)/WebKit/gtk/webkit/webkitwebbackforwardlist.h \
323 $(srcdir)/WebKit/gtk/webkit/webkitwebdatabase.h \
324 $(srcdir)/WebKit/gtk/webkit/webkitwebdatasource.h \
325 $(srcdir)/WebKit/gtk/webkit/webkitwebframe.h \
326 $(srcdir)/WebKit/gtk/webkit/webkitwebhistoryitem.h \
327 $(srcdir)/WebKit/gtk/webkit/webkitwebinspector.h \
328 $(srcdir)/WebKit/gtk/webkit/webkitwebnavigationaction.h \
329 $(srcdir)/WebKit/gtk/webkit/webkitwebpolicydecision.h \
330 $(srcdir)/WebKit/gtk/webkit/webkitwebresource.h \
331 $(srcdir)/WebKit/gtk/webkit/webkitwebsettings.h \
332 $(srcdir)/WebKit/gtk/webkit/webkitwebwindowfeatures.h \
333 $(srcdir)/WebKit/gtk/webkit/webkitwebview.h
335 webkitgtk_built_h_api += \
336 WebKit/gtk/webkit/webkitversion.h
339 $(webkitgtk_built_h_api) \
340 $(webkitgtk_static_h_api)
342 # webkitenumtypes.{h,cpp} cannot be in webkitgtk_built_h_api, because
343 # the rule that builds it depends on webkitgtk_built_h_api (circular dependency).
344 webkitgtk_built_sources += \
345 $(webkitgtk_built_h_api) \
346 $(webkitgtk_gdom_built_sources) \
347 DerivedSources/webkit/webkitmarshal.cpp \
348 DerivedSources/webkit/webkitmarshal.h \
349 WebKit/gtk/webkit/webkitenumtypes.cpp \
350 WebKit/gtk/webkit/webkitenumtypes.h
352 webkitgtk_sources += \
353 WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp \
354 WebKit/gtk/WebCoreSupport/ChromeClientGtk.h \
355 WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.cpp \
356 WebKit/gtk/WebCoreSupport/ContextMenuClientGtk.h \
357 WebKit/gtk/WebCoreSupport/DocumentLoaderGtk.cpp \
358 WebKit/gtk/WebCoreSupport/DocumentLoaderGtk.h \
359 WebKit/gtk/WebCoreSupport/DragClientGtk.cpp \
360 WebKit/gtk/WebCoreSupport/DragClientGtk.h \
361 WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp \
362 WebKit/gtk/WebCoreSupport/EditorClientGtk.h \
363 WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp \
364 WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h \
365 WebKit/gtk/WebCoreSupport/DumpRenderTreeSupportGtk.cpp \
366 WebKit/gtk/WebCoreSupport/DumpRenderTreeSupportGtk.h \
367 WebKit/gtk/WebCoreSupport/FrameNetworkingContextGtk.h \
368 WebKit/gtk/WebCoreSupport/FullscreenVideoController.cpp \
369 WebKit/gtk/WebCoreSupport/FullscreenVideoController.h \
370 WebKit/gtk/WebCoreSupport/InspectorClientGtk.cpp \
371 WebKit/gtk/WebCoreSupport/InspectorClientGtk.h \
372 WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.cpp \
373 WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.h \
374 WebKit/gtk/webkit/webkitapplicationcache.cpp \
375 WebKit/gtk/webkit/webkitdownload.cpp \
376 WebKit/gtk/webkit/webkiterror.cpp \
377 WebKit/gtk/webkit/webkithittestresult.cpp \
378 WebKit/gtk/webkit/webkitnetworkrequest.cpp \
379 WebKit/gtk/webkit/webkitnetworkresponse.cpp \
380 WebKit/gtk/webkit/webkitprivate.cpp \
381 WebKit/gtk/webkit/webkitprivate.h \
382 WebKit/gtk/webkit/webkitsoupauthdialog.c \
383 WebKit/gtk/webkit/webkitversion.cpp \
384 WebKit/gtk/webkit/webkitwebbackforwardlist.cpp \
385 WebKit/gtk/webkit/webkitwebdatasource.cpp \
386 WebKit/gtk/webkit/webkitwebframe.cpp \
387 WebKit/gtk/webkit/webkitwebhistoryitem.cpp \
388 WebKit/gtk/webkit/webkitwebinspector.cpp \
389 WebKit/gtk/webkit/webkitwebnavigationaction.cpp \
390 WebKit/gtk/webkit/webkitwebpolicydecision.cpp \
391 WebKit/gtk/webkit/webkitgeolocationpolicydecision.cpp \
392 WebKit/gtk/webkit/webkitwebresource.cpp \
393 WebKit/gtk/webkit/webkitwebdatabase.cpp \
394 WebKit/gtk/webkit/webkitsecurityorigin.cpp \
395 WebKit/gtk/webkit/webkitwebsettings.cpp \
396 WebKit/gtk/webkit/webkitwebview.cpp \
397 WebKit/gtk/webkit/webkitwebwindowfeatures.cpp \
398 WebKit/gtk/webkit/webkitworkers.cpp
400 pkgconfigdir = $(libdir)/pkgconfig
401 pkgconfig_DATA = WebKit/gtk/@WEBKITGTK_PC_NAME@-@WEBKITGTK_API_VERSION@.pc
403 if ENABLE_INTROSPECTION
405 JSCore-@WEBKITGTK_API_VERSION@.gir: $(builddir)/WebKit/gtk/JSCore-@WEBKITGTK_API_VERSION@.gir
406 $(AM_V_GEN)cp $(builddir)/WebKit/gtk/JSCore-@WEBKITGTK_API_VERSION@.gir $(builddir)/
408 JSCORE_GIRSOURCES += JSCore-@WEBKITGTK_API_VERSION@.gir
409 WEBKIT_GIRSOURCES += WebKit-@WEBKITGTK_API_VERSION@.gir
411 $(WEBKIT_GIRSOURCES): $(G_IR_SCANNER) $(JSCORE_GIRSOURCES) libwebkitgtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la
412 $(AM_V_GEN)$(G_IR_SCANNER) -v --warn-all \
413 --symbol-prefix=webkit \
414 --identifier-prefix=WebKit \
416 --nsversion=@WEBKITGTK_API_VERSION@ \
417 --include=GObject-2.0 \
418 --include=Gtk-@GTK_API_VERSION@ \
419 --include=JSCore-@WEBKITGTK_API_VERSION@ \
421 --library=webkitgtk-@WEBKITGTK_API_VERSION@ \
422 --libtool="$(LIBTOOL)" \
424 --pkg=gtk+-@GTK_API_VERSION@ \
427 --add-include-path=$(top_srcdir)/WebKit/gtk \
428 --add-include-path=$(builddir) \
429 -I$(top_srcdir)/WebCore/platform/network/soup/cache \
430 -I$(top_srcdir)/WebKit/gtk \
431 -I$(top_builddir)/WebKit/gtk \
432 -I$(top_builddir)/DerivedSources \
433 -I$(top_builddir)/DerivedSources/webkit \
434 -I$(top_builddir)/WebKit/gtk/webkit \
435 -I$(top_srcdir)/JavaScriptCore/ForwardingHeaders \
437 $(top_builddir)/WebKit/gtk/webkit/webkitenumtypes.h \
439 $(top_srcdir)/WebKit/gtk/webkit/*.cpp \
440 $(top_srcdir)/WebKit/gtk/webkit/*.c
442 girdir = $(datadir)/gir-1.0
443 gir_DATA = $(WEBKIT_GIRSOURCES) $(JSCORE_GIRSOURCES)
445 typelibsdir += $(libdir)/girepository-1.0
446 typelibs_DATA += $(JSCORE_GIRSOURCES:.gir=.typelib) $(WEBKIT_GIRSOURCES:.gir=.typelib)
448 %.typelib: %.gir $(G_IR_COMPILER)
449 $(AM_V_GEN)$(G_IR_COMPILER) --includedir $(top_srcdir)/WebKit/gtk --includedir $(builddir) $< -o $@
451 CLEANFILES += $(JSCORE_GIRSOURCES) $(WEBKIT_GIRSOURCES) $(typelibs_DATA)
455 EXTRA_DIST += $(builddir)/WebKit/gtk/JSCore-@WEBKITGTK_API_VERSION@.gir
457 WEBKIT_MARSHAL = $(GENSOURCES_WEBKIT)/webkitmarshal
458 WEBKIT_MARSHAL_LIST = $(top_srcdir)/WebKit/gtk/webkitmarshal.list
459 $(WEBKIT_MARSHAL).cpp: stamp-webkitmarshal.cpp
462 $(WEBKIT_MARSHAL).h: stamp-webkitmarshal.h
465 stamp-webkitmarshal.cpp: $(WEBKIT_MARSHAL_LIST)
466 $(AM_V_GEN) echo "extern \"C\" {" > $(WEBKIT_MARSHAL).cpp && \
467 $(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --body >> $(WEBKIT_MARSHAL).cpp && echo '}' >> $(WEBKIT_MARSHAL).cpp && \
468 echo timestamp > $(@F)
470 stamp-webkitmarshal.h: $(WEBKIT_MARSHAL_LIST)
471 $(AM_V_GEN)$(GLIB_GENMARSHAL) --prefix=webkit_marshal $(WEBKIT_MARSHAL_LIST) --header > $(WEBKIT_MARSHAL).h && \
472 echo timestamp > $(@F)
474 WebKit/gtk/webkit/webkitenumtypes.h: stamp-webkitenumtypes.h
476 stamp-webkitenumtypes.h: $(webkitgtk_h_api) GNUmakefile
477 $(AM_V_GEN)glib-mkenums \
478 --fhead "#ifndef WEBKIT_ENUM_TYPES_H\n" \
479 --fhead "#define WEBKIT_ENUM_TYPES_H\n\n" \
480 --fhead "#include <glib-object.h>\n\n" \
481 --fhead "#include <webkit/webkitdefines.h>\n\n" \
482 --fhead "G_BEGIN_DECLS\n\n" \
483 --ftail "G_END_DECLS\n\n" \
485 --fprod "#include <webkit/@basename@>\n\n" \
486 --eprod "#define WEBKIT_TYPE_@ENUMSHORT@ @enum_name@_get_type()\n\n" \
487 --eprod "WEBKIT_API GType\n@enum_name@_get_type(void);\n\n" \
488 $(webkitgtk_h_api) | \
489 sed 's,web_kit,webkit,' | \
490 sed 's,WEBKIT_TYPE_KIT,WEBKIT_TYPE,' \
492 && (cmp -s xgen-gth WebKit/gtk/webkit/webkitenumtypes.h || cp xgen-gth WebKit/gtk/webkit/webkitenumtypes.h) \
494 && echo timestamp > $(@F)
496 WebKit/gtk/webkit/webkitenumtypes.cpp: $(webkitgtk_h_api) GNUmakefile
497 $(AM_V_GEN)glib-mkenums \
498 --fhead "#include <config.h>\n" \
499 --fhead "#include <glib-object.h>\n" \
500 --fhead "#include \"$(top_builddir)/WebKit/gtk/webkit/webkitenumtypes.h\"\n\n" \
501 --fhead "extern \"C\" {\n\n" \
502 --fprod "\n/* enumerations from \"@filename@\" */" \
503 --vhead "static const G@Type@Value _@enum_name@_values[] = {" \
504 --vprod " { @VALUENAME@, \"@VALUENAME@\", \"@valuenick@\" }," \
505 --vtail " { 0, NULL, NULL }\n};\n\n" \
506 --vtail "GType @enum_name@_get_type(void)\n{\n" \
507 --vtail " static GType type = 0;\n\n" \
508 --vtail " if (!type)\n" \
509 --vtail " type = g_@type@_register_static(\"@EnumName@\", _@enum_name@_values);\n\n" \
510 --vtail " return type;\n}\n\n" \
512 $(webkitgtk_h_api) | \
513 sed 's,web_kit,webkit,' \
520 gsettings_SCHEMAS = $(top_builddir)/WebKit/gtk/org.webkitgtk-@WEBKITGTK_API_VERSION@.gschema.xml
525 # Files that will be distributed
527 $(srcdir)/gtk-doc.make \
529 $(srcdir)/autotools/symbols.filter \
530 $(srcdir)/WebKit/gtk/ChangeLog \
531 $(srcdir)/WebKit/gtk/NEWS \
532 $(srcdir)/WebKit/gtk/webkitmarshal.list \
533 $(srcdir)/WebKit/gtk/docs/GNUmakefile.* \
534 $(srcdir)/WebKit/gtk/docs/webkitenvironment.xml \
535 $(srcdir)/WebKit/gtk/docs/webkitgtk-docs.sgml \
536 $(srcdir)/WebKit/gtk/docs/webkitgtk-sections.txt \
537 $(srcdir)/WebKit/gtk/docs/version.xml.in \
538 $(srcdir)/WebKit/gtk/po/* \
539 $(srcdir)/WebKit/gtk/resources/* \
540 $(srcdir)/WebKit/gtk/tests/resources/* \
541 $(srcdir)/WebKit/gtk/tests/test_utils.h \
542 $(srcdir)/WebKit/gtk/org.webkitgtk.gschema.xml.in
544 # extra resource files
545 resourcesdir = ${datadir}/webkit-@WEBKITGTK_API_VERSION@/resources
546 dist_resources_DATA = \
547 $(shell ls $(srcdir)/WebKit/gtk/resources/*.html)
551 # Include module makefiles
552 include JavaScriptCore/GNUmakefile.am
553 include WebCore/GNUmakefile.am
554 include WebCore/bindings/gobject/GNUmakefile.am
555 include WebKitTools/GNUmakefile.am
556 include WebKit/gtk/po/GNUmakefile.am
559 noinst_PROGRAMS += $(TEST_PROGS)
561 webkit_tests_cflags = \
562 -fno-strict-aliasing \
563 -I$(srcdir)/JavaScriptCore/ForwardingHeaders \
564 -I$(srcdir)/WebCore/platform/network/soup/cache \
565 -I$(srcdir)/WebKit/gtk \
566 -I$(top_builddir)/WebKit/gtk \
567 -I$(top_builddir)/DerivedSources \
568 -I$(top_srcdir)/WebCore/bindings \
569 -I$(top_srcdir)/WebCore/bindings/gobject \
576 webkit_tests_ldadd = \
577 libwebkitgtk-@WEBKITGTK_API_MAJOR_VERSION@.@WEBKITGTK_API_MINOR_VERSION@.la \
582 webkit_tests_ldflags = \
587 Programs/unittests/testdomdocument \
588 Programs/unittests/testdomdomwindow \
589 Programs/unittests/testdomnode \
590 Programs/unittests/testhttpbackend \
591 Programs/unittests/testloading \
592 Programs/unittests/testglobals \
593 Programs/unittests/testmimehandling \
594 Programs/unittests/testnetworkrequest \
595 Programs/unittests/testnetworkresponse \
596 Programs/unittests/testwebframe \
597 Programs/unittests/testwebbackforwardlist \
598 Programs/unittests/testwebhistoryitem \
599 Programs/unittests/testwindow \
600 Programs/unittests/testdownload \
601 Programs/unittests/testatk \
602 Programs/unittests/testatkroles \
603 Programs/unittests/testhittestresult \
604 Programs/unittests/testwebsettings \
605 Programs/unittests/testwebresource \
606 Programs/unittests/testwebdatasource \
607 Programs/unittests/testwebview \
608 Programs/unittests/testkeyevents \
609 Programs/unittests/testcopyandpaste
611 # Add additional tests here
612 Programs_unittests_testdomdocument_SOURCES = WebKit/gtk/tests/testdomdocument.c
613 Programs_unittests_testdomdocument_CFLAGS = $(webkit_tests_cflags)
614 Programs_unittests_testdomdocument_LDADD = $(webkit_tests_ldadd)
615 Programs_unittests_testdomdocument_LDFLAGS = $(webkit_tests_ldflags)
617 Programs_unittests_testdomdomwindow_SOURCES = WebKit/gtk/tests/testdomdomwindow.c
618 Programs_unittests_testdomdomwindow_CFLAGS = $(webkit_tests_cflags)
619 Programs_unittests_testdomdomwindow_LDADD = $(webkit_tests_ldadd)
620 Programs_unittests_testdomdomwindow_LDFLAGS = $(webkit_tests_ldflags)
622 Programs_unittests_testdomnode_SOURCES = WebKit/gtk/tests/testdomnode.c
623 Programs_unittests_testdomnode_CFLAGS = $(webkit_tests_cflags)
624 Programs_unittests_testdomnode_LDADD = $(webkit_tests_ldadd)
625 Programs_unittests_testdomnode_LDFLAGS = $(webkit_tests_ldflags)
627 Programs_unittests_testhttpbackend_SOURCES = WebKit/gtk/tests/testhttpbackend.c
628 Programs_unittests_testhttpbackend_CFLAGS = $(webkit_tests_cflags)
629 Programs_unittests_testhttpbackend_LDADD = $(webkit_tests_ldadd)
630 Programs_unittests_testhttpbackend_LDFLAGS = $(webkit_tests_ldflags)
632 Programs_unittests_testglobals_SOURCES = WebKit/gtk/tests/testglobals.c
633 Programs_unittests_testglobals_CFLAGS = $(webkit_tests_cflags)
634 Programs_unittests_testglobals_LDADD = $(webkit_tests_ldadd)
635 Programs_unittests_testglobals_LDFLAGS = $(webkit_tests_ldflags)
637 Programs_unittests_testloading_SOURCES = WebKit/gtk/tests/testloading.c
638 Programs_unittests_testloading_CFLAGS = $(webkit_tests_cflags)
639 Programs_unittests_testloading_LDADD = $(webkit_tests_ldadd)
640 Programs_unittests_testloading_LDFLAGS = $(webkit_tests_ldflags)
642 Programs_unittests_testmimehandling_SOURCES = WebKit/gtk/tests/testmimehandling.c WebKit/gtk/tests/test_utils.c
643 Programs_unittests_testmimehandling_CFLAGS = $(webkit_tests_cflags)
644 Programs_unittests_testmimehandling_LDADD = $(webkit_tests_ldadd)
645 Programs_unittests_testmimehandling_LDFLAGS = $(webkit_tests_ldflags)
647 Programs_unittests_testnetworkrequest_SOURCES = WebKit/gtk/tests/testnetworkrequest.c
648 Programs_unittests_testnetworkrequest_CFLAGS = $(webkit_tests_cflags)
649 Programs_unittests_testnetworkrequest_LDADD = $(webkit_tests_ldadd)
650 Programs_unittests_testnetworkrequest_LDFLAGS = $(webkit_tests_ldflags)
652 Programs_unittests_testnetworkresponse_SOURCES = WebKit/gtk/tests/testnetworkresponse.c
653 Programs_unittests_testnetworkresponse_CFLAGS = $(webkit_tests_cflags)
654 Programs_unittests_testnetworkresponse_LDADD = $(webkit_tests_ldadd)
655 Programs_unittests_testnetworkresponse_LDFLAGS = $(webkit_tests_ldflags)
657 Programs_unittests_testwebframe_SOURCES = WebKit/gtk/tests/testwebframe.c
658 Programs_unittests_testwebframe_CFLAGS = $(webkit_tests_cflags)
659 Programs_unittests_testwebframe_LDADD = $(webkit_tests_ldadd)
660 Programs_unittests_testwebframe_LDFLAGS = $(webkit_tests_ldflags)
662 Programs_unittests_testwebbackforwardlist_SOURCES = WebKit/gtk/tests/testwebbackforwardlist.c
663 Programs_unittests_testwebbackforwardlist_CFLAGS = $(webkit_tests_cflags)
664 Programs_unittests_testwebbackforwardlist_LDADD = $(webkit_tests_ldadd)
665 Programs_unittests_testwebbackforwardlist_LDFLAGS = $(webkit_tests_ldflags)
667 Programs_unittests_testwebhistoryitem_SOURCES = WebKit/gtk/tests/testwebhistoryitem.c
668 Programs_unittests_testwebhistoryitem_CFLAGS = $(webkit_tests_cflags)
669 Programs_unittests_testwebhistoryitem_LDADD = $(webkit_tests_ldadd)
670 Programs_unittests_testwebhistoryitem_LDFLAGS = $(webkit_tests_ldflags)
672 Programs_unittests_testwindow_SOURCES = WebKit/gtk/tests/testwindow.c
673 Programs_unittests_testwindow_CFLAGS = $(webkit_tests_cflags)
674 Programs_unittests_testwindow_LDADD = $(webkit_tests_ldadd)
675 Programs_unittests_testwindow_LDFLAGS = $(webkit_tests_ldflags)
677 Programs_unittests_testdownload_SOURCES = WebKit/gtk/tests/testdownload.c
678 Programs_unittests_testdownload_CFLAGS = $(webkit_tests_cflags)
679 Programs_unittests_testdownload_LDADD = $(webkit_tests_ldadd)
680 Programs_unittests_testdownload_LDFLAGS = $(webkit_tests_ldflags)
682 Programs_unittests_testatk_SOURCES = WebKit/gtk/tests/testatk.c
683 Programs_unittests_testatk_CFLAGS = $(webkit_tests_cflags)
684 Programs_unittests_testatk_LDADD = $(webkit_tests_ldadd)
685 Programs_unittests_testatk_LDFLAGS = $(webkit_tests_ldflags)
687 Programs_unittests_testatkroles_SOURCES = WebKit/gtk/tests/testatkroles.c
688 Programs_unittests_testatkroles_CFLAGS = $(webkit_tests_cflags)
689 Programs_unittests_testatkroles_LDADD = $(webkit_tests_ldadd)
690 Programs_unittests_testatkroles_LDFLAGS = $(webkit_tests_ldflags)
692 Programs_unittests_testwebsettings_SOURCES = WebKit/gtk/tests/testwebsettings.c
693 Programs_unittests_testwebsettings_CFLAGS = $(webkit_tests_cflags)
694 Programs_unittests_testwebsettings_LDADD = $(webkit_tests_ldadd)
695 Programs_unittests_testwebsettings_LDFLAGS = $(webkit_tests_ldflags)
697 Programs_unittests_testwebresource_SOURCES = WebKit/gtk/tests/testwebresource.c
698 Programs_unittests_testwebresource_CFLAGS = $(webkit_tests_cflags)
699 Programs_unittests_testwebresource_LDADD = $(webkit_tests_ldadd)
701 Programs_unittests_testwebdatasource_SOURCES = WebKit/gtk/tests/testwebdatasource.c
702 Programs_unittests_testwebdatasource_CFLAGS = $(webkit_tests_cflags)
703 Programs_unittests_testwebdatasource_LDADD = $(webkit_tests_ldadd)
705 Programs_unittests_testwebview_SOURCES = WebKit/gtk/tests/testwebview.c WebKit/gtk/tests/test_utils.c
706 Programs_unittests_testwebview_CFLAGS = $(webkit_tests_cflags)
707 Programs_unittests_testwebview_LDADD = $(webkit_tests_ldadd)
708 Programs_unittests_testwebview_LDFLAGS = $(webkit_tests_ldflags)
710 Programs_unittests_testhittestresult_SOURCES = WebKit/gtk/tests/testhittestresult.c
711 Programs_unittests_testhittestresult_CFLAGS = $(webkit_tests_cflags)
712 Programs_unittests_testhittestresult_LDADD = $(webkit_tests_ldadd)
714 Programs_unittests_testkeyevents_SOURCES = WebKit/gtk/tests/testkeyevents.c
715 Programs_unittests_testkeyevents_CFLAGS = $(webkit_tests_cflags)
716 Programs_unittests_testkeyevents_LDADD = $(webkit_tests_ldadd)
717 Programs_unittests_testkeyevents_LDFLAGS = $(webkit_tests_ldflags)
719 Programs_unittests_testcopyandpaste_SOURCES = WebKit/gtk/tests/testcopyandpaste.c \
720 WebCore/platform/gtk/GtkVersioning.c
721 Programs_unittests_testcopyandpaste_CFLAGS = $(webkit_tests_cflags) \
722 -I$(srcdir)/WebCore/platform/gtk \
724 Programs_unittests_testcopyandpaste_LDADD = $(webkit_tests_ldadd)
725 Programs_unittests_testcopyandpaste_LDFLAGS = $(webkit_tests_ldflags)
727 # Autogenerated sources
729 $(javascriptcore_built_sources) \
730 $(javascriptcore_built_nosources) \
731 $(webcore_built_sources) \
732 $(webcore_built_nosources) \
733 $(webkitgtk_built_sources) \
734 $(webkitgtk_built_nosources)
736 # Project-wide clean rules
737 # Files that will be cleaned
740 $(top_builddir)/stamp-webkitmarshal.cpp \
741 $(top_builddir)/stamp-webkitmarshal.h \
742 $(top_builddir)/stamp-webkitenumtypes.cpp \
743 $(top_builddir)/stamp-webkitenumtypes.h \
744 $(top_builddir)/Programs/GtkLauncher
748 $(builddir)/doltcompile \
749 $(builddir)/doltlibtool \
750 $(top_builddir)/WebKit/gtk/docs/version.xml \
751 $(top_builddir)/WebKit/gtk/docs/GNUmakefile \
752 $(top_builddir)/WebKit/gtk/@WEBKITGTK_PC_NAME@-@WEBKITGTK_API_VERSION@.pc \
753 $(top_builddir)/WebKit/gtk/webkit/webkitversion.h \
754 $(top_builddir)/WebKit/gtk/org.webkitgtk-@WEBKITGTK_API_VERSION@.gschema.xml
756 MAINTAINERCLEANFILES += \
758 $(builddir)/doltcompile \
759 $(builddir)/doltlibtool \
760 $(srcdir)/aconfig.h.in \
761 $(srcdir)/autotools/config.* \
762 $(srcdir)/autotools/compile \
763 $(srcdir)/autotools/depcomp \
764 $(srcdir)/autotools/install-sh \
765 $(srcdir)/autotools/missing \
766 $(srcdir)/configure \
767 $(srcdir)/GNUmakefile.in \
770 $(top_builddir)/config.*
772 # Older automake versions (1.7) place Plo files in a different place so we need
773 # to create the output directory manually.
775 $(mkdir_p) $(top_builddir)/$(DEPDIR)/DerivedSources
777 # remove built sources and program directories
779 -rm -rf $(GENPROGRAMS)
781 maintainer-clean-local: distclean-local
784 -rm -rf $(GENSOURCES) $(GENPROGRAMS)
787 cp $(srcdir)/WebKit/gtk/NEWS $(distdir)
789 install-data-local: po-install-data-local
791 installdirs-data-local: po-installdirs-data-local
793 uninstall-local: po-uninstall-local
795 # Run all tests in cwd
796 # FIXME: we should run this under xvfb
798 $(GTESTER) --verbose $(TEST_PROGS);
800 # test-report: run tests in cwd and generate report
801 # full-report: run tests in cwd with -m perf and -m slow and generate report
802 # perf-report: run tests in cwd with -m perf and generate report
803 test-report full-report perf-report: $(TEST_PROGS)
805 test-report) test_options="-k";; \
806 full-report) test_options="-k -m=perf";; \
807 perf-report) test_options="-k -m=perf -m=slow";; \
809 $(GTESTER) --verbose $$test_options -o test-report.xml $(TEST_PROGS); \
810 $(GTESTER_REPORT) test-report.xml > test-report.html ;
812 .PHONY: test test-report perf-report full-report