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

        Reviewed by Darin Adler.

        Media Stream API: fix the order of the options in build-webkit.
        https://bugs.webkit.org/show_bug.cgi?id=56949

        Fix the order of the options in build-webkit.

        * Scripts/build-webkit:

git-svn-id: svn://svn.chromium.org/blink/trunk@81838 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent 380f2a03
2011-03-23 Leandro Gracia Gil <leandrogracia@chromium.org>
Reviewed by Darin Adler.
Media Stream API: fix the order of the options in build-webkit.
https://bugs.webkit.org/show_bug.cgi?id=56949
Fix the order of the options in build-webkit.
* Scripts/build-webkit:
2011-03-23 Adam Klein <adamk@chromium.org> 2011-03-23 Adam Klein <adamk@chromium.org>
Reviewed by Mihai Parparita. Reviewed by Mihai Parparita.
......
...@@ -207,6 +207,9 @@ my @features = ( ...@@ -207,6 +207,9 @@ my @features = (
{ option => "media-statistics", desc => "Toggle Media Statistics support", { option => "media-statistics", desc => "Toggle Media Statistics support",
define => "ENABLE_MEDIA_STATISTICS", default => 0, value => \$mediaStatisticsSupport }, define => "ENABLE_MEDIA_STATISTICS", default => 0, value => \$mediaStatisticsSupport },
{ option => "media-stream", desc => "Toggle Media Stream API support (implies Blob support, currently Chromium only)",
define => "ENABLE_MEDIA_STREAM", default => isChromium(), value => \$mediaStreamSupport },
{ option => "meter-tag", desc => "Meter Tag support", { option => "meter-tag", desc => "Meter Tag support",
define => "ENABLE_METER_TAG", default => !isAppleWinWebKit(), value => \$meterTagSupport }, define => "ENABLE_METER_TAG", default => !isAppleWinWebKit(), value => \$meterTagSupport },
...@@ -261,9 +264,6 @@ my @features = ( ...@@ -261,9 +264,6 @@ my @features = (
{ option => "touch-events", desc => "Toggle Touch Events support", { option => "touch-events", desc => "Toggle Touch Events support",
define => "ENABLE_TOUCH_EVENTS", default => isQt(), value => \$touchEventsSupport }, define => "ENABLE_TOUCH_EVENTS", default => isQt(), value => \$touchEventsSupport },
{ option => "media-stream", desc => "Toggle Media Stream API support (implies Blob support, currently Chromium only)",
define => "ENABLE_MEDIA_STREAM", default => isChromium(), value => \$mediaStreamSupport },
{ option => "video", desc => "Toggle Video support", { option => "video", desc => "Toggle Video support",
define => "ENABLE_VIDEO", default => (isAppleWebKit() || isGtk()), value => \$videoSupport }, define => "ENABLE_VIDEO", default => (isAppleWebKit() || isGtk()), value => \$videoSupport },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment