Changeset 235664 in webkit


Ignore:
Timestamp:
Sep 5, 2018, 5:09:21 AM (7 years ago)
Author:
ddkilzer@apple.com
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.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r235654 r235664  
     12018-09-05  David Kilzer  <ddkilzer@apple.com>
     2
     3        REGRESSION (r184033): ContentExtensionTester folder is missing in ContentExtensionTester Xcode project
     4
     5        Found using `tidy-Xcode-project-file --missing` (see Bug
     6        188754).  Fixes were made manually.
     7
     8        * ContentExtensionTester/ContentExtensionTester.xcodeproj/project.pbxproj:
     9        (ContentExtensionTester): Change the path of the folder to map
     10        to "." (which exists and is where main.m is located), and then
     11        set the folder's name back to "ContentExtensionTester".
     12        (main.m): Change file reference to be relative to its group now
     13        that the group's path is fixed.
     14
    1152018-09-04  Don Olmstead  <don.olmstead@sony.com>
    216
  • trunk/Tools/ContentExtensionTester/ContentExtensionTester.xcodeproj/project.pbxproj

    r184033 r235664  
    3030                7C4AB3A11AF0276C003FC8D1 /* ContentExtensionTester */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = ContentExtensionTester; sourceTree = BUILT_PRODUCTS_DIR; };
    3131                7C4AB3AB1AF02798003FC8D1 /* WebKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = WebKit.framework; path = System/Library/Frameworks/WebKit.framework; sourceTree = SDKROOT; };
    32                 7CB6844A1AFA7978002B305C /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = SOURCE_ROOT; };
     32                7CB6844A1AFA7978002B305C /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
    3333/* End PBXFileReference section */
    3434
     
    7878                                7CB6844A1AFA7978002B305C /* main.m */,
    7979                        );
    80                         path = ContentExtensionTester;
     80                        name = ContentExtensionTester;
     81                        path = .;
    8182                        sourceTree = "<group>";
    8283                };
Note: See TracChangeset for help on using the changeset viewer.