Title: [283977] trunk/Source/WebKit
Revision
283977
Author
[email protected]
Date
2021-10-12 03:58:19 -0700 (Tue, 12 Oct 2021)

Log Message

[GPUP] Add missing entitlement
https://bugs.webkit.org/show_bug.cgi?id=231499
<rdar://83847918>

Reviewed by Brent Fulgham.

Add the entitlement "com.apple.private.webkit.use-xpc-endpoint" in the GPU process,
which will enable XPC communication with other WebKit processes.

* Scripts/process-entitlements.sh:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (283976 => 283977)


--- trunk/Source/WebKit/ChangeLog	2021-10-12 09:48:38 UTC (rev 283976)
+++ trunk/Source/WebKit/ChangeLog	2021-10-12 10:58:19 UTC (rev 283977)
@@ -1,3 +1,16 @@
+2021-10-12  Per Arne Vollan <[email protected]>
+
+        [GPUP] Add missing entitlement
+        https://bugs.webkit.org/show_bug.cgi?id=231499
+        <rdar://83847918>
+
+        Reviewed by Brent Fulgham.
+
+        Add the entitlement "com.apple.private.webkit.use-xpc-endpoint" in the GPU process,
+        which will enable XPC communication with other WebKit processes.
+
+        * Scripts/process-entitlements.sh:
+
 2021-10-12  Commit Queue  <[email protected]>
 
         Unreviewed, reverting r283890.

Modified: trunk/Source/WebKit/Scripts/process-entitlements.sh (283976 => 283977)


--- trunk/Source/WebKit/Scripts/process-entitlements.sh	2021-10-12 09:48:38 UTC (rev 283976)
+++ trunk/Source/WebKit/Scripts/process-entitlements.sh	2021-10-12 10:58:19 UTC (rev 283977)
@@ -61,6 +61,7 @@
         fi
 
         plistbuddy Add :com.apple.private.memory.ownership_transfer bool YES
+        plistbuddy Add :com.apple.private.webkit.use-xpc-endpoint bool YES
         plistbuddy Add :com.apple.rootless.storage.WebKitGPUSandbox bool YES
         plistbuddy Add :com.apple.QuartzCore.webkit-end-points bool YES
     fi
@@ -208,6 +209,7 @@
     plistbuddy Add :com.apple.runningboard.assertions.webkit bool YES
     plistbuddy Add :com.apple.QuartzCore.webkit-end-points bool YES
     plistbuddy Add :com.apple.private.memory.ownership_transfer bool YES
+    plistbuddy Add :com.apple.private.webkit.use-xpc-endpoint bool YES
     plistbuddy Add :com.apple.QuartzCore.webkit-limited-types bool YES
 
     if [[ "${WK_USE_RESTRICTED_ENTITLEMENTS}" == YES ]]
@@ -310,6 +312,7 @@
     plistbuddy Add :com.apple.private.memorystatus bool YES
     plistbuddy Add :com.apple.private.memory.ownership_transfer bool YES
     plistbuddy Add :com.apple.private.network.socket-delegate bool YES
+    plistbuddy Add :com.apple.private.webkit.use-xpc-endpoint bool YES
     plistbuddy Add :com.apple.runningboard.assertions.webkit bool YES
 
     plistbuddy Add :com.apple.tcc.delegated-services array
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to