From 2fc2651226baac27029e38c9d6ef883fa32084db Mon Sep 17 00:00:00 2001 From: Steve Block Date: Wed, 18 May 2011 13:36:51 +0100 Subject: Merge WebKit at r78450: Initial merge by git. Change-Id: I6d3e5f1f868ec266a0aafdef66182ddc3f265dc1 --- Tools/Scripts/build-webkit | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) (limited to 'Tools/Scripts/build-webkit') diff --git a/Tools/Scripts/build-webkit b/Tools/Scripts/build-webkit index 0b58113..74015ec 100755 --- a/Tools/Scripts/build-webkit +++ b/Tools/Scripts/build-webkit @@ -85,12 +85,14 @@ my ( $javaScriptDebuggerSupport, $linkPrefetchSupport, $mathmlSupport, + $mediaStatisticsSupport, $meterTagSupport, $netscapePluginSupport, $notificationsSupport, $offlineWebApplicationSupport, $orientationEventsSupport, $progressTagSupport, + $registerProtocolHandlerSupport, $sharedWorkersSupport, $svgSupport, $svgAnimationSupport, @@ -116,8 +118,8 @@ my ( ); my @features = ( - { option => "3d-canvas", desc => "Toggle 3D canvas support", - define => "ENABLE_3D_CANVAS", default => (isAppleMacWebKit() && !isTiger() && !isLeopard()), value => \$threeDCanvasSupport }, + { option => "3d-canvas", desc => "Toggle 3D canvas (WebGL) support", + define => "ENABLE_WEBGL", default => (isAppleMacWebKit() && !isTiger() && !isLeopard()), value => \$threeDCanvasSupport }, { option => "3d-rendering", desc => "Toggle 3D rendering support", define => "ENABLE_3D_RENDERING", default => (isAppleMacWebKit() && !isTiger()), value => \$threeDRenderingSupport }, @@ -194,6 +196,9 @@ my @features = ( { option => "mathml", desc => "Toggle MathML support", define => "ENABLE_MATHML", default => 1, value => \$mathmlSupport }, + { option => "media-statistics", desc => "Toggle Media Statistics support", + define => "ENABLE_MEDIA_STATISTICS", default => 0, value => \$mediaStatisticsSupport }, + { option => "meter-tag", desc => "Meter Tag support", define => "ENABLE_METER_TAG", default => !isGtk() && !isAppleWinWebKit(), value => \$meterTagSupport }, @@ -212,6 +217,9 @@ my @features = ( { option => "progress-tag", desc => "Progress Tag support", define => "ENABLE_PROGRESS_TAG", default => 1, value => \$progressTagSupport }, + { option => "register-protocol-handler", desc => "Register Protocol Handler support", + define => "ENABLE_REGISTER_PROTOCOL_HANDLER", default => 0, value => \$registerProtocolHandlerSupport }, + { option => "system-malloc", desc => "Toggle system allocator instead of TCmalloc", define => "USE_SYSTEM_MALLOC", default => 0, value => \$systemMallocSupport }, @@ -405,7 +413,7 @@ if (isGtk()) { { my ($feature, $isEnabled, $defaultValue) = @_; return "" if $defaultValue == $isEnabled; - return $feature . "=" . ($isEnabled ? $feature : " "); + return $feature . "=" . ($isEnabled ? $feature : ""); } foreach (@features) { -- cgit v1.1