Changeset 81596 in webkit


Ignore:
Timestamp:
Mar 21, 2011 12:08:24 PM (13 years ago)
Author:
commit-queue@webkit.org
Message:

2011-03-21 Leandro Gracia Gil <leandrogracia@chromium.org>

Reviewed by Steve Block.

Media Stream API patch 0: adding compilation guards.
https://bugs.webkit.org/show_bug.cgi?id=56458

Enabling the feature by default for chromium builds.

  • features.gypi:

2011-03-21 Leandro Gracia Gil <leandrogracia@chromium.org>

Reviewed by Steve Block.

Media Stream API patch 0: adding compilation guards.
https://bugs.webkit.org/show_bug.cgi?id=56458

Adding options to enable the media stream API feature in Chromium.

  • Scripts/build-webkit:
Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/chromium/ChangeLog

    r81580 r81596  
     12011-03-21  Leandro Gracia Gil  <leandrogracia@chromium.org>
     2
     3        Reviewed by Steve Block.
     4
     5        Media Stream API patch 0: adding compilation guards.
     6        https://bugs.webkit.org/show_bug.cgi?id=56458
     7
     8        Enabling the feature by default for chromium builds.
     9
     10        * features.gypi:
     11
    1122011-03-21  Vsevolod Vlasov  <vsevik@chromium.org>
    213
  • trunk/Source/WebKit/chromium/features.gypi

    r81316 r81596  
    6868        'ENABLE_MATHML=0',
    6969        'ENABLE_MEDIA_STATISTICS=1',
     70        'ENABLE_MEDIA_STREAM=1',
    7071        'ENABLE_METER_TAG=1',
    7172        'ENABLE_NOTIFICATIONS=1',
  • trunk/Tools/ChangeLog

    r81588 r81596  
     12011-03-21  Leandro Gracia Gil  <leandrogracia@chromium.org>
     2
     3        Reviewed by Steve Block.
     4
     5        Media Stream API patch 0: adding compilation guards.
     6        https://bugs.webkit.org/show_bug.cgi?id=56458
     7
     8        Adding options to enable the media stream API feature in Chromium.
     9
     10        * Scripts/build-webkit:
     11
    1122011-03-21  Qi Zhang  <qi.2.zhang@nokia.com>
    213
  • trunk/Tools/Scripts/build-webkit

    r81122 r81596  
    9090    $mathmlSupport,
    9191    $mediaStatisticsSupport,
     92    $mediaStreamSupport,
    9293    $meterTagSupport,
    9394    $netscapePluginSupport,
     
    260261      define => "ENABLE_TOUCH_EVENTS", default => isQt(), value => \$touchEventsSupport },
    261262
     263    { option => "media-stream", desc => "Toggle Media Stream API support (implies Blob support, currently Chromium only)",
     264      define => "ENABLE_MEDIA_STREAM", default => isChromium(), value => \$mediaStreamSupport },
     265
    262266    { option => "video", desc => "Toggle Video support",
    263267      define => "ENABLE_VIDEO", default => (isAppleWebKit() || isGtk()), value => \$videoSupport },
     
    327331    || $svgForeignObjectSupport || $svgUseSupport;
    328332
     333$blobSupport = $blobSupport || $mediaStreamSupport;
    329334
    330335my $programName = basename($0);
Note: See TracChangeset for help on using the changeset viewer.