Title: [235664] trunk/Tools
Revision
235664
Author
[email protected]
Date
2018-09-05 05:09:21 -0700 (Wed, 05 Sep 2018)

Log Message

REGRESSION (r184033): ContentExtensionTester folder is missing in ContentExtensionTester Xcode project

Found using `tidy-Xcode-project-file --missing` (see Bug
188754).  Fixes were made manually.

* ContentExtensionTester/ContentExtensionTester.xcodeproj/project.pbxproj:
(ContentExtensionTester): Change the path of the folder to map
to "." (which exists and is where main.m is located), and then
set the folder's name back to "ContentExtensionTester".
(main.m): Change file reference to be relative to its group now
that the group's path is fixed.

Modified Paths

Diff

Modified: trunk/Tools/ChangeLog (235663 => 235664)


--- trunk/Tools/ChangeLog	2018-09-05 11:46:43 UTC (rev 235663)
+++ trunk/Tools/ChangeLog	2018-09-05 12:09:21 UTC (rev 235664)
@@ -1,3 +1,17 @@
+2018-09-05  David Kilzer  <[email protected]>
+
+        REGRESSION (r184033): ContentExtensionTester folder is missing in ContentExtensionTester Xcode project
+
+        Found using `tidy-Xcode-project-file --missing` (see Bug
+        188754).  Fixes were made manually.
+
+        * ContentExtensionTester/ContentExtensionTester.xcodeproj/project.pbxproj:
+        (ContentExtensionTester): Change the path of the folder to map
+        to "." (which exists and is where main.m is located), and then
+        set the folder's name back to "ContentExtensionTester".
+        (main.m): Change file reference to be relative to its group now
+        that the group's path is fixed.
+
 2018-09-04  Don Olmstead  <[email protected]>
 
         Add generic entrypoint and run loop in TestWebKitAPI

Modified: trunk/Tools/ContentExtensionTester/ContentExtensionTester.xcodeproj/project.pbxproj (235663 => 235664)


--- trunk/Tools/ContentExtensionTester/ContentExtensionTester.xcodeproj/project.pbxproj	2018-09-05 11:46:43 UTC (rev 235663)
+++ trunk/Tools/ContentExtensionTester/ContentExtensionTester.xcodeproj/project.pbxproj	2018-09-05 12:09:21 UTC (rev 235664)
@@ -29,7 +29,7 @@
 		7C2227531AFC4D9C008C3338 /* DebugRelease.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; path = DebugRelease.xcconfig; sourceTree = "<group>"; };
 		7C4AB3A11AF0276C003FC8D1 /* ContentExtensionTester */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ContentExtensionTester; sourceTree = BUILT_PRODUCTS_DIR; };
 		7C4AB3AB1AF02798003FC8D1 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
-		7CB6844A1AFA7978002B305C /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = SOURCE_ROOT; };
+		7CB6844A1AFA7978002B305C /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
 /* End PBXFileReference section */
 
 /* Begin PBXFrameworksBuildPhase section */
@@ -77,7 +77,8 @@
 			children = (
 				7CB6844A1AFA7978002B305C /* main.m */,
 			);
-			path = ContentExtensionTester;
+			name = ContentExtensionTester;
+			path = .;
 			sourceTree = "<group>";
 		};
 /* End PBXGroup section */
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to