Title: [237490] trunk/Tools
Revision
237490
Author
ctur...@igalia.com
Date
2018-10-27 05:55:44 -0700 (Sat, 27 Oct 2018)

Log Message

[GTK] Add bubblewrap feature option
https://bugs.webkit.org/show_bug.cgi?id=190981

Reviewed by Xabier Rodriguez-Calvar.

Without this, it was not possible to disable the bubblewrap sandbox
from the webkit build scripts.

* Scripts/webkitperl/FeatureList.pm:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (237489 => 237490)


--- trunk/Tools/ChangeLog	2018-10-27 10:24:04 UTC (rev 237489)
+++ trunk/Tools/ChangeLog	2018-10-27 12:55:44 UTC (rev 237490)
@@ -1,3 +1,15 @@
+2018-10-27  Charlie Turner  <ctur...@igalia.com>
+
+        [GTK] Add bubblewrap feature option
+        https://bugs.webkit.org/show_bug.cgi?id=190981
+
+        Reviewed by Xabier Rodriguez-Calvar.
+
+        Without this, it was not possible to disable the bubblewrap sandbox
+        from the webkit build scripts.
+
+        * Scripts/webkitperl/FeatureList.pm:
+
 2018-10-26  Commit Queue  <commit-qu...@webkit.org>
 
         Unreviewed, rolling out r237479 and r237484.

Modified: trunk/Tools/Scripts/webkitperl/FeatureList.pm (237489 => 237490)


--- trunk/Tools/Scripts/webkitperl/FeatureList.pm	2018-10-27 10:24:04 UTC (rev 237489)
+++ trunk/Tools/Scripts/webkitperl/FeatureList.pm	2018-10-27 12:55:44 UTC (rev 237490)
@@ -51,6 +51,7 @@
 my (
     $accelerated2DCanvasSupport,
     $attachmentElementSupport,
+    $bubblewrapSandboxSupport,
     $canvasProxySupport,
     $channelMessagingSupport,
     $css3TextSupport,
@@ -152,6 +153,9 @@
     { option => "attachment-element", desc => "Toggle Attachment Element support",
       define => "ENABLE_ATTACHMENT_ELEMENT", value => \$attachmentElementSupport },
 
+    { option => "bubblewrap-sandbox", desc => "Toggle Bubblewrap sandboxing support",
+      define => "ENABLE_BUBBLEWRAP_SANDBOX", value => \$bubblewrapSandboxSupport },
+
     { option => "channel-messaging", desc => "Toggle Channel Messaging support",
       define => "ENABLE_CHANNEL_MESSAGING", value => \$channelMessagingSupport },
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to