Title: [145526] trunk
Revision
145526
Author
zandober...@gmail.com
Date
2013-03-12 04:56:13 -0700 (Tue, 12 Mar 2013)

Log Message

[GTK] Enable Web Audio in development builds
https://bugs.webkit.org/show_bug.cgi?id=111831

Reviewed by Philippe Normand.

Source/WebKit2: 

* GNUmakefile.am: Link the plugin process against libWebCoreModules.la as well.

Tools: 

Web Audio is already quite well supported on the GTK port but still has a few issues
that must be addressed before it is enabled by default. Despite that it should be enabled
in development builds just so we are up-to-date with future feature infrastructure changes.
The Web Audio-related layout tests are not run yet due to missing support in DRT/WKTR, but
that's an obvious goal before enabling the feature in release builds.

* Scripts/webkitperl/FeatureList.pm:

Modified Paths

Diff

Modified: trunk/Source/WebKit2/ChangeLog (145525 => 145526)


--- trunk/Source/WebKit2/ChangeLog	2013-03-12 11:43:43 UTC (rev 145525)
+++ trunk/Source/WebKit2/ChangeLog	2013-03-12 11:56:13 UTC (rev 145526)
@@ -1,3 +1,12 @@
+2013-03-12  Zan Dobersek  <zdober...@igalia.com>
+
+        [GTK] Enable Web Audio in development builds
+        https://bugs.webkit.org/show_bug.cgi?id=111831
+
+        Reviewed by Philippe Normand.
+
+        * GNUmakefile.am: Link the plugin process against libWebCoreModules.la as well.
+
 2013-03-11  Jocelyn Turcotte  <jocelyn.turco...@digia.com>
 
         [Qt][WK2] Layer QtDownloadManager on the C API

Modified: trunk/Source/WebKit2/GNUmakefile.am (145525 => 145526)


--- trunk/Source/WebKit2/GNUmakefile.am	2013-03-12 11:43:43 UTC (rev 145525)
+++ trunk/Source/WebKit2/GNUmakefile.am	2013-03-12 11:56:13 UTC (rev 145526)
@@ -586,6 +586,7 @@
 endif
 
 Programs_WebKitPluginProcess_LDADD += \
+	libWebCoreModules.la \
 	libWebCorePlatform.la \
 	libWebCoreGtk2.la \
 	$(CAIRO_LIBS) \

Modified: trunk/Tools/ChangeLog (145525 => 145526)


--- trunk/Tools/ChangeLog	2013-03-12 11:43:43 UTC (rev 145525)
+++ trunk/Tools/ChangeLog	2013-03-12 11:56:13 UTC (rev 145526)
@@ -1,3 +1,18 @@
+2013-03-12  Zan Dobersek  <zdober...@igalia.com>
+
+        [GTK] Enable Web Audio in development builds
+        https://bugs.webkit.org/show_bug.cgi?id=111831
+
+        Reviewed by Philippe Normand.
+
+        Web Audio is already quite well supported on the GTK port but still has a few issues
+        that must be addressed before it is enabled by default. Despite that it should be enabled
+        in development builds just so we are up-to-date with future feature infrastructure changes.
+        The Web Audio-related layout tests are not run yet due to missing support in DRT/WKTR, but
+        that's an obvious goal before enabling the feature in release builds.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2013-03-11  Andreas Kling  <akl...@apple.com>
 
         [Mac][WK1] Add support for alert() in MiniBrowser.

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (145525 => 145526)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2013-03-12 11:43:43 UTC (rev 145525)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2013-03-12 11:56:13 UTC (rev 145526)
@@ -464,7 +464,7 @@
       define => "ENABLE_WEBGL", default => (isAppleMacWebKit() || isGtk() || isEfl()), value => \$webglSupport },
 
     { option => "web-audio", desc => "Toggle Web Audio support",
-      define => "ENABLE_WEB_AUDIO", default => (isEfl()), value => \$webAudioSupport },
+      define => "ENABLE_WEB_AUDIO", default => (isEfl() || isGtk()), value => \$webAudioSupport },
 
     { option => "web-sockets", desc => "Toggle Web Sockets support",
       define => "ENABLE_WEB_SOCKETS", default => 1, value => \$webSocketsSupport },
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to