Changeset 145526 in webkit


Ignore:
Timestamp:
Mar 12, 2013 4:56:13 AM (11 years ago)
Author:
zandobersek@gmail.com
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:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit2/ChangeLog

    r145519 r145526  
     12013-03-12  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Enable Web Audio in development builds
     4        https://bugs.webkit.org/show_bug.cgi?id=111831
     5
     6        Reviewed by Philippe Normand.
     7
     8        * GNUmakefile.am: Link the plugin process against libWebCoreModules.la as well.
     9
    1102013-03-11  Jocelyn Turcotte  <jocelyn.turcotte@digia.com>
    211
  • trunk/Source/WebKit2/GNUmakefile.am

    r145395 r145526  
    587587
    588588Programs_WebKitPluginProcess_LDADD += \
     589        libWebCoreModules.la \
    589590        libWebCorePlatform.la \
    590591        libWebCoreGtk2.la \
  • trunk/Tools/ChangeLog

    r145468 r145526  
     12013-03-12  Zan Dobersek  <zdobersek@igalia.com>
     2
     3        [GTK] Enable Web Audio in development builds
     4        https://bugs.webkit.org/show_bug.cgi?id=111831
     5
     6        Reviewed by Philippe Normand.
     7
     8        Web Audio is already quite well supported on the GTK port but still has a few issues
     9        that must be addressed before it is enabled by default. Despite that it should be enabled
     10        in development builds just so we are up-to-date with future feature infrastructure changes.
     11        The Web Audio-related layout tests are not run yet due to missing support in DRT/WKTR, but
     12        that's an obvious goal before enabling the feature in release builds.
     13
     14        * Scripts/webkitperl/FeatureList.pm:
     15
    1162013-03-11  Andreas Kling  <akling@apple.com>
    217
  • trunk/Tools/Scripts/webkitperl/FeatureList.pm

    r145400 r145526  
    465465
    466466    { option => "web-audio", desc => "Toggle Web Audio support",
    467       define => "ENABLE_WEB_AUDIO", default => (isEfl()), value => \$webAudioSupport },
     467      define => "ENABLE_WEB_AUDIO", default => (isEfl() || isGtk()), value => \$webAudioSupport },
    468468
    469469    { option => "web-sockets", desc => "Toggle Web Sockets support",
Note: See TracChangeset for help on using the changeset viewer.