Title: [190415] trunk/Tools
Revision
190415
Author
[email protected]
Date
2015-10-01 10:38:21 -0700 (Thu, 01 Oct 2015)

Log Message

Attempt to fix the iOS 9 Simulator testers

Add dependency DumpRenderTree.app to target All of project DumpRenderTree so that we
build DumpRenderTree.app, if applicable. Also, teach build-webkit to build project
LayoutTestRelay when building for iOS Simulator.

* DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
* Scripts/build-webkit:

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (190414 => 190415)


--- trunk/Tools/ChangeLog	2015-10-01 17:20:44 UTC (rev 190414)
+++ trunk/Tools/ChangeLog	2015-10-01 17:38:21 UTC (rev 190415)
@@ -1,3 +1,14 @@
+2015-10-01  Daniel Bates  <[email protected]>
+
+        Attempt to fix the iOS 9 Simulator testers
+
+        Add dependency DumpRenderTree.app to target All of project DumpRenderTree so that we
+        build DumpRenderTree.app, if applicable. Also, teach build-webkit to build project
+        LayoutTestRelay when building for iOS Simulator.
+
+        * DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj:
+        * Scripts/build-webkit:
+
 2015-10-01  Carlos Garcia Campos  <[email protected]>
 
         [GTK] Websites with invalid auth header keep loading forever

Modified: trunk/Tools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj (190414 => 190415)


--- trunk/Tools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj	2015-10-01 17:20:44 UTC (rev 190414)
+++ trunk/Tools/DumpRenderTree/DumpRenderTree.xcodeproj/project.pbxproj	2015-10-01 17:38:21 UTC (rev 190415)
@@ -13,6 +13,7 @@
 			buildPhases = (
 			);
 			dependencies = (
+				CEB754D41BBDA26D009F0401 /* PBXTargetDependency */,
 				2D403F211508736C005358D2 /* PBXTargetDependency */,
 				A134E52D188FC09200901D06 /* PBXTargetDependency */,
 				A84F608F08B1370E00E9745F /* PBXTargetDependency */,
@@ -173,6 +174,13 @@
 			remoteGlobalIDString = B5A7525A08AF4A4A00138E45;
 			remoteInfo = ImageDiff;
 		};
+		CEB754D31BBDA26D009F0401 /* PBXContainerItemProxy */ = {
+			isa = PBXContainerItemProxy;
+			containerPortal = 08FB7793FE84155DC02AAC07 /* Project object */;
+			proxyType = 1;
+			remoteGlobalIDString = A1158D7E18927E7A0088C17B;
+			remoteInfo = DumpRenderTree.app;
+		};
 /* End PBXContainerItemProxy section */
 
 /* Begin PBXCopyFilesBuildPhase section */
@@ -1047,6 +1055,11 @@
 			target = B5A7525A08AF4A4A00138E45 /* ImageDiff */;
 			targetProxy = A84F608E08B1370E00E9745F /* PBXContainerItemProxy */;
 		};
+		CEB754D41BBDA26D009F0401 /* PBXTargetDependency */ = {
+			isa = PBXTargetDependency;
+			target = A1158D7E18927E7A0088C17B /* DumpRenderTree.app */;
+			targetProxy = CEB754D31BBDA26D009F0401 /* PBXContainerItemProxy */;
+		};
 /* End PBXTargetDependency section */
 
 /* Begin XCBuildConfiguration section */

Modified: trunk/Tools/Scripts/build-webkit (190414 => 190415)


--- trunk/Tools/Scripts/build-webkit	2015-10-01 17:20:44 UTC (rev 190414)
+++ trunk/Tools/Scripts/build-webkit	2015-10-01 17:38:21 UTC (rev 190415)
@@ -193,6 +193,8 @@
         print(join(" ", @copyLibrariesArgs) . "\n");
         (system(@copyLibrariesArgs) == 0) or die;
     } else {
+        push @projects, ("Tools/LayoutTestRelay") if willUseIOSSimulatorSDKWhenBuilding();
+
         my @copyLibrariesArgs = (
             "perl", "Tools/Scripts/copy-webkitlibraries-to-product-directory",
             "--sdk", xcodeSDK(), "--wksi", "--llvm", "--prefer-system-llvm",
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to