Title: [123447] trunk/Tools
Revision
123447
Author
commit-qu...@webkit.org
Date
2012-07-24 02:48:20 -0700 (Tue, 24 Jul 2012)

Log Message

Make WebIntents and WebIntentsTag a build option for the build-webkit script
https://bugs.webkit.org/show_bug.cgi?id=91841

Patch by Thiago Marcos P. Santos <thiago.san...@intel.com> on 2012-07-24
Reviewed by Philippe Normand.

And it will also be disabled when building with --minimal.

* Scripts/webkitperl/FeatureList.pm:

Modified Paths

Diff

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 },
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to