Title: [291828] trunk/Source/WebKit
Revision
291828
Author
msab...@apple.com
Date
2022-03-24 16:38:35 -0700 (Thu, 24 Mar 2022)

Log Message

After r291814, we need to create the INSTALL_PATH for the iOS sandbox files
https://bugs.webkit.org/show_bug.cgi?id=238351

Reviewed by Saam Barati.

We need to create the $(INSTALL_PATH) for the preprocessed iOS sandbox files.
Before r291814, the built-in Xcode copy step used ditto when copying the .sb
files thus creating $(INSTALL_PATH) and its intermediate directories.
That change set made it so that all WebKit iOS sandbox profile files are preprocessed
thus eliminating the Xcode copy step.

* WebKit.xcodeproj/project.pbxproj:

Modified Paths

Diff

Modified: trunk/Source/WebKit/ChangeLog (291827 => 291828)


--- trunk/Source/WebKit/ChangeLog	2022-03-24 23:38:30 UTC (rev 291827)
+++ trunk/Source/WebKit/ChangeLog	2022-03-24 23:38:35 UTC (rev 291828)
@@ -1,3 +1,18 @@
+2022-03-24  Michael Saboff  <msab...@apple.com>
+
+        After r291814, we need to create the INSTALL_PATH for the iOS sandbox files
+        https://bugs.webkit.org/show_bug.cgi?id=238351
+
+        Reviewed by Saam Barati.
+
+        We need to create the $(INSTALL_PATH) for the preprocessed iOS sandbox files.
+        Before r291814, the built-in Xcode copy step used ditto when copying the .sb
+        files thus creating $(INSTALL_PATH) and its intermediate directories.
+        That change set made it so that all WebKit iOS sandbox profile files are preprocessed
+        thus eliminating the Xcode copy step.
+
+        * WebKit.xcodeproj/project.pbxproj:
+
 2022-03-24  Patrick Angle  <pan...@apple.com>
 
         REGRESSION(STP142): "A _javascript_ exception occured: Can't find variable: utils" from SafariDriver

Modified: trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj (291827 => 291828)


--- trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj	2022-03-24 23:38:30 UTC (rev 291827)
+++ trunk/Source/WebKit/WebKit.xcodeproj/project.pbxproj	2022-03-24 23:38:35 UTC (rev 291828)
@@ -16808,7 +16808,7 @@
 			);
 			runOnlyForDeploymentPostprocessing = 0;
 			shellPath = /bin/sh;
-			shellScript = "echo \"Preprocessing sandbox\"\nScripts/generate-derived-sources.sh sandbox-profiles-ios\ncp ${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit/com.apple.WebKit.adattributiond.sb ${DSTROOT}/${INSTALL_PATH}\ncp ${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit/com.apple.WebKit.GPU.sb ${DSTROOT}/${INSTALL_PATH}\ncp ${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit/com.apple.WebKit.Networking.sb ${DSTROOT}/${INSTALL_PATH}\ncp ${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit/com.apple.WebKit.WebAuth.sb ${DSTROOT}/${INSTALL_PATH}\ncp ${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit/com.apple.WebKit.WebContent.sb ${DSTROOT}/${INSTALL_PATH}\n";
+			shellScript = "echo \"Preprocessing sandbox\"\nScripts/generate-derived-sources.sh sandbox-profiles-ios\nmkdir -p ${DSTROOT}/${INSTALL_PATH}\ncp ${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit/com.apple.WebKit.adattributiond.sb ${DSTROOT}/${INSTALL_PATH}\ncp ${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit/com.apple.WebKit.GPU.sb ${DSTROOT}/${INSTALL_PATH}\ncp ${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit/com.apple.WebKit.Networking.sb ${DSTROOT}/${INSTALL_PATH}\ncp ${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit/com.apple.WebKit.WebAuth.sb ${DSTROOT}/${INSTALL_PATH}\ncp ${BUILT_PRODUCTS_DIR}/DerivedSources/WebKit/com.apple.WebKit.WebContent.sb ${DSTROOT}/${INSTALL_PATH}\n";
 		};
 /* End PBXShellScriptBuildPhase section */
 
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to