Changeset 116251 in webkit


Ignore:
Timestamp:
May 6, 2012 5:14:35 PM (12 years ago)
Author:
eric@webkit.org
Message:

Update several build-webkit options to match the #defines they toggle
https://bugs.webkit.org/show_bug.cgi?id=85744

Reviewed by Adam Barth.

Most notable here is fixing --3d-canvas to be --webgl these days --
the define was renamed 15 months ago!

  • Scripts/webkitperl/FeatureList.pm:
Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r116250 r116251  
     12012-05-06  Eric Seidel  <eric@webkit.org>
     2
     3        Update several build-webkit options to match the #defines they toggle
     4        https://bugs.webkit.org/show_bug.cgi?id=85744
     5
     6        Reviewed by Adam Barth.
     7
     8        Most notable here is fixing --3d-canvas to be --webgl these days --
     9        the define was renamed 15 months ago!
     10
     11        * Scripts/webkitperl/FeatureList.pm:
     12
    1132012-05-06  Mikhail Pozdnyakov  <mikhail.pozdnyakov@intel.com>
    214
  • trunk/Tools/Scripts/webkitperl/FeatureList.pm

    r116193 r116251  
    7777    $inputTypeWeekSupport,
    7878    $inspectorSupport,
    79     $javaScriptDebuggerSupport,
     79    $javascriptDebuggerSupport,
    8080    $legacyNotificationsSupport,
    8181    $legacyWebKitBlobBuilderSupport,
     
    9090    $microdataSupport,
    9191    $mutationObserversSupport,
    92     $netscapePluginSupport,
     92    $netscapePluginAPISupport,
    9393    $networkInfoSupport,
    9494    $notificationsSupport,
     
    123123
    124124my @features = (
    125     { option => "3d-canvas", desc => "Toggle WebGL support",
    126       define => "ENABLE_WEBGL", default => isAppleMacWebKit(), value => \$webglSupport },
    127 
    128125    { option => "3d-rendering", desc => "Toggle 3D Rendering support",
    129126      define => "ENABLE_3D_RENDERING", default => (isAppleMacWebKit() || isQt()), value => \$threeDRenderingSupport },
     
    135132      define => "ENABLE_ANIMATION_API", default => isBlackBerry(), value => \$animationAPISupport },
    136133
    137     { option => "battery-status-api", desc => "Toggle Battery Status API support",
     134    { option => "battery-status", desc => "Toggle Battery Status support",
    138135      define => "ENABLE_BATTERY_STATUS", default => (isEfl() || isBlackBerry()), value => \$batteryStatusSupport },
    139136
     
    226223
    227224    { option => "javascript-debugger", desc => "Toggle JavaScript Debugger support",
    228       define => "ENABLE_JAVASCRIPT_DEBUGGER", default => 1, value => \$javaScriptDebuggerSupport },
     225      define => "ENABLE_JAVASCRIPT_DEBUGGER", default => 1, value => \$javascriptDebuggerSupport },
    229226
    230227    { option => "legacy-notifications", desc => "Toggle Legacy Notifications support",
     
    264261      define => "ENABLE_MUTATION_OBSERVERS", default => 1, value => \$mutationObserversSupport },
    265262
    266     { option => "netscape-plugin", desc => "Toggle Netscape Plugin API support",
    267       define => "ENABLE_NETSCAPE_PLUGIN_API", default => !isEfl(), value => \$netscapePluginSupport },
    268 
    269     { option => "network-info", desc => "Toggle Network Information API support",
     263    { option => "netscape-plugin-api", desc => "Toggle Netscape Plugin API support",
     264      define => "ENABLE_NETSCAPE_PLUGIN_API", default => !isEfl(), value => \$netscapePluginAPISupport },
     265
     266    { option => "network-info", desc => "Toggle Network Info support",
    270267      define => "ENABLE_NETWORK_INFO", default => isEfl(), value => \$networkInfoSupport },
    271268
    272     { option => "notifications", desc => "Toggle Notifications Support",
     269    { option => "notifications", desc => "Toggle Notifications support",
    273270      define => "ENABLE_NOTIFICATIONS", default => isBlackBerry(), value => \$notificationsSupport },
    274271
     
    335332    { option => "video-track", desc => "Toggle Video Track support",
    336333      define => "ENABLE_VIDEO_TRACK", default => (isAppleWebKit() || isGtk() || isEfl()), value => \$videoTrackSupport },
     334
     335    { option => "webgl", desc => "Toggle WebGL support",
     336      define => "ENABLE_WEBGL", default => isAppleMacWebKit(), value => \$webglSupport },
    337337
    338338    { option => "web-audio", desc => "Toggle Web Audio support",
Note: See TracChangeset for help on using the changeset viewer.