summaryrefslogtreecommitdiff
path: root/Tools/Scripts/webkitperl/FeatureList.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/Scripts/webkitperl/FeatureList.pm')
-rw-r--r--Tools/Scripts/webkitperl/FeatureList.pm10
1 files changed, 3 insertions, 7 deletions
diff --git a/Tools/Scripts/webkitperl/FeatureList.pm b/Tools/Scripts/webkitperl/FeatureList.pm
index 6857766ff..cb53b2517 100644
--- a/Tools/Scripts/webkitperl/FeatureList.pm
+++ b/Tools/Scripts/webkitperl/FeatureList.pm
@@ -92,7 +92,6 @@ my (
$legacyNotificationsSupport,
$legacyVendorPrefixSupport,
$legacyWebAudioSupport,
- $legacyWebKitBlobBuilderSupport,
$linkPrefetchSupport,
$linkPrerenderSupport,
$mathmlSupport,
@@ -191,7 +190,7 @@ my @features = (
define => "ENABLE_CSS_SHADERS", default => isAppleMacWebKit(), value => \$cssShadersSupport },
{ option => "css-compositing", desc => "Toggle CSS Compositing support",
- define => "ENABLE_CSS_COMPOSITING", default => 0, value => \$cssCompositingSupport },
+ define => "ENABLE_CSS_COMPOSITING", default => isAppleWebKit(), value => \$cssCompositingSupport },
{ option => "css-variables", desc => "Toggle CSS Variable support",
define => "ENABLE_CSS_VARIABLES", default => (isBlackBerry() || isEfl()), value => \$cssVariablesSupport },
@@ -286,9 +285,6 @@ my @features = (
{ option => "legacy-vendor-prefixes", desc => "Toggle Legacy Vendor Prefix support",
define => "ENABLE_LEGACY_VENDOR_PREFIXES", default => !isChromium(), value => \$legacyVendorPrefixSupport },
- { option => "legacy-webkit-blob-builder", desc => "Toggle Legacy WebKit Blob Builder support",
- define => "ENABLE_LEGACY_WEBKIT_BLOB_BUILDER", default => (isGtk() || isChromium() || isBlackBerry() || isEfl()), value => \$legacyWebKitBlobBuilderSupport },
-
{ option => "legacy-web-audio", desc => "Toggle Legacy Web Audio support",
define => "ENABLE_LEGACY_WEB_AUDIO", default => 1, value => \$legacyWebAudioSupport },
@@ -329,10 +325,10 @@ my @features = (
define => "ENABLE_NAVIGATOR_CONTENT_UTILS", default => (isBlackBerry() || isEfl()), value => \$registerProtocolHandlerSupport },
{ option => "netscape-plugin-api", desc => "Toggle Netscape Plugin API support",
- define => "ENABLE_NETSCAPE_PLUGIN_API", default => !isEfl(), value => \$netscapePluginAPISupport },
+ define => "ENABLE_NETSCAPE_PLUGIN_API", default => 1, value => \$netscapePluginAPISupport },
{ option => "network-info", desc => "Toggle Network Info support",
- define => "ENABLE_NETWORK_INFO", default => isEfl(), value => \$networkInfoSupport },
+ define => "ENABLE_NETWORK_INFO", default => (isEfl() || isBlackBerry()), value => \$networkInfoSupport },
{ option => "notifications", desc => "Toggle Notifications support",
define => "ENABLE_NOTIFICATIONS", default => isBlackBerry(), value => \$notificationsSupport },