Modified: trunk/Tools/ChangeLog (123446 => 123447)
--- trunk/Tools/ChangeLog 2012-07-24 09:38:13 UTC (rev 123446)
+++ trunk/Tools/ChangeLog 2012-07-24 09:48:20 UTC (rev 123447)
@@ -1,3 +1,14 @@
+2012-07-24 Thiago Marcos P. Santos <thiago.san...@intel.com>
+
+ Make WebIntents and WebIntentsTag a build option for the build-webkit script
+ https://bugs.webkit.org/show_bug.cgi?id=91841
+
+ Reviewed by Philippe Normand.
+
+ And it will also be disabled when building with --minimal.
+
+ * Scripts/webkitperl/FeatureList.pm:
+
2012-07-23 Dirk Pranke <dpra...@chromium.org>
Unreviewed, rolling out r123360.
Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (123446 => 123447)
--- trunk/Tools/Scripts/webkitperl/FeatureList.pm 2012-07-24 09:38:13 UTC (rev 123446)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm 2012-07-24 09:48:20 UTC (rev 123447)
@@ -127,6 +127,8 @@
$videoTrackSupport,
$webglSupport,
$webAudioSupport,
+ $webIntentsSupport,
+ $webIntentsTagSupport,
$webSocketsSupport,
$webTimingSupport,
$workersSupport,
@@ -386,6 +388,12 @@
{ option => "web-audio", desc => "Toggle Web Audio support",
define => "ENABLE_WEB_AUDIO", default => 0, value => \$webAudioSupport },
+ { option => "web-intents", desc => "Toggle Web Intents support",
+ define => "ENABLE_WEB_INTENTS", default => isEfl(), value => \$webIntentsSupport },
+
+ { option => "web-intents-tag", desc => "Toggle Web Intents Tag support",
+ define => "ENABLE_WEB_INTENTS_TAG", default => isEfl(), value => \$webIntentsTagSupport },
+
{ option => "web-sockets", desc => "Toggle Web Sockets support",
define => "ENABLE_WEB_SOCKETS", default => 1, value => \$webSocketsSupport },