Title: [253446] tags/Safari-609.1.12/Source/ThirdParty/ANGLE
- Revision
- 253446
- Author
- [email protected]
- Date
- 2019-12-12 15:29:56 -0800 (Thu, 12 Dec 2019)
Log Message
Cherry-pick r253333. rdar://problem/57713353
Produce a dummy libANGLE.a file to fool Apple's build test infrastructure
https://bugs.webkit.org/show_bug.cgi?id=205068
<rdar://problem/57713353>
Reviewed by Alex Christensen.
Create a dummy libANGLE.a file until our infrastructure realises it
doesn't need that file any more. Hopefully the fact that it isn't
really a static library, but just a text file, is ok.
* ANGLE.xcodeproj/project.pbxproj: Add a new shell script phase that
creates a dummy file.
git-svn-id: https://svn.webkit.org/repository/webkit/trunk@253333 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Modified Paths
Diff
Modified: tags/Safari-609.1.12/Source/ThirdParty/ANGLE/ANGLE.xcodeproj/project.pbxproj (253445 => 253446)
--- tags/Safari-609.1.12/Source/ThirdParty/ANGLE/ANGLE.xcodeproj/project.pbxproj 2019-12-12 23:09:48 UTC (rev 253445)
+++ tags/Safari-609.1.12/Source/ThirdParty/ANGLE/ANGLE.xcodeproj/project.pbxproj 2019-12-12 23:29:56 UTC (rev 253446)
@@ -2976,6 +2976,7 @@
312BDB0B15FECAB00097EBC7 /* CopyFiles */,
312BDB0D15FECACE0097EBC7 /* CopyFiles */,
6E28B8742294DD8000717E69 /* ShellScript */,
+ 313DE867239FFF91008FC47B /* ShellScript */,
);
buildRules = (
53E934DB230609D800DE060C /* PBXBuildRule */,
@@ -3016,6 +3017,23 @@
/* End PBXProject section */
/* Begin PBXShellScriptBuildPhase section */
+ 313DE867239FFF91008FC47B /* ShellScript */ = {
+ isa = PBXShellScriptBuildPhase;
+ buildActionMask = 2147483647;
+ files = (
+ );
+ inputFileListPaths = (
+ );
+ inputPaths = (
+ );
+ outputFileListPaths = (
+ );
+ outputPaths = (
+ );
+ runOnlyForDeploymentPostprocessing = 0;
+ shellPath = /bin/sh;
+ shellScript = "if [ \"$DEPLOYMENT_LOCATION\" == \"YES\" ] ; then\n # Apple-internal build.\n output_dir=${DSTROOT}/usr/local/lib\nelse\n # External build.\n output_dir=${BUILT_PRODUCTS_DIR}/usr/local/lib\nfi\n\nmkdir -p $output_dir\necho \"Fake file to fool Apple's test system\" > $output_dir/libANGLE.a\n";
+ };
6E28B8742294DD8000717E69 /* ShellScript */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Modified: tags/Safari-609.1.12/Source/ThirdParty/ANGLE/ChangeLog (253445 => 253446)
--- tags/Safari-609.1.12/Source/ThirdParty/ANGLE/ChangeLog 2019-12-12 23:09:48 UTC (rev 253445)
+++ tags/Safari-609.1.12/Source/ThirdParty/ANGLE/ChangeLog 2019-12-12 23:29:56 UTC (rev 253446)
@@ -1,3 +1,37 @@
+2019-12-12 Alan Coon <[email protected]>
+
+ Cherry-pick r253333. rdar://problem/57713353
+
+ Produce a dummy libANGLE.a file to fool Apple's build test infrastructure
+ https://bugs.webkit.org/show_bug.cgi?id=205068
+ <rdar://problem/57713353>
+
+ Reviewed by Alex Christensen.
+
+ Create a dummy libANGLE.a file until our infrastructure realises it
+ doesn't need that file any more. Hopefully the fact that it isn't
+ really a static library, but just a text file, is ok.
+
+ * ANGLE.xcodeproj/project.pbxproj: Add a new shell script phase that
+ creates a dummy file.
+
+ git-svn-id: https://svn.webkit.org/repository/webkit/trunk@253333 268f45cc-cd09-0410-ab3c-d52691b4dbfc
+
+ 2019-12-10 Dean Jackson <[email protected]>
+
+ Produce a dummy libANGLE.a file to fool Apple's build test infrastructure
+ https://bugs.webkit.org/show_bug.cgi?id=205068
+ <rdar://problem/57713353>
+
+ Reviewed by Alex Christensen.
+
+ Create a dummy libANGLE.a file until our infrastructure realises it
+ doesn't need that file any more. Hopefully the fact that it isn't
+ really a static library, but just a text file, is ok.
+
+ * ANGLE.xcodeproj/project.pbxproj: Add a new shell script phase that
+ creates a dummy file.
+
2019-12-06 Dean Jackson <[email protected]>
Restrict libANGLE to link only with WebCore
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes