Changeset 235672 in webkit


Ignore:
Timestamp:
Sep 5, 2018, 9:49:38 AM (7 years ago)
Author:
ddkilzer@apple.com
Message:

REGRESSION (r209470): EditingHistory folder is missing in EditingHistory Xcode project

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

  • EditingHistory/EditingHistory.xcodeproj/project.pbxproj:

(EditingHistory): Change the path of the folder to
"EditingHistory", then remove the now-redundant name.
(EditingHistory/Resources/DumpEditingHistory.js): Remove
redundant file reference since another file reference exists at
the top of the project file list, and that file reference is the
one used in the "Copy Bundle Resources" build phase.
(EditingHistory/Resources/EditingHistoryUtil.js): Ditto.

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r235665 r235672  
     12018-09-05  David Kilzer  <ddkilzer@apple.com>
     2
     3        REGRESSION (r209470): EditingHistory folder is missing in EditingHistory Xcode project
     4
     5        Found using `tidy-Xcode-project-file --missing` (see Bug
     6        188754).  Fixes were made manually.
     7
     8        * EditingHistory/EditingHistory.xcodeproj/project.pbxproj:
     9        (EditingHistory): Change the path of the folder to
     10        "EditingHistory", then remove the now-redundant name.
     11        (EditingHistory/Resources/DumpEditingHistory.js): Remove
     12        redundant file reference since another file reference exists at
     13        the top of the project file list, and that file reference is the
     14        one used in the "Copy Bundle Resources" build phase.
     15        (EditingHistory/Resources/EditingHistoryUtil.js): Ditto.
     16
    1172018-09-05  David Kilzer  <ddkilzer@apple.com>
    218
  • trunk/Tools/EditingHistory/EditingHistory.xcodeproj/project.pbxproj

    r210318 r235672  
    4646                516ADBF41DE157AD00E2B98D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
    4747                517FD93B1DE18DC900A73673 /* DOMTestingUtil.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; name = DOMTestingUtil.js; path = EditingHistory/Resources/DOMTestingUtil.js; sourceTree = SOURCE_ROOT; };
    48                 51D3947E1DF2541D00ABE875 /* DumpEditingHistory.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; name = DumpEditingHistory.js; path = ../../Source/WebCore/InternalScripts/DumpEditingHistory.js; sourceTree = SOURCE_ROOT; };
    49                 51D3947F1DF2541D00ABE875 /* EditingHistoryUtil.js */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.javascript; name = EditingHistoryUtil.js; path = ../../Source/WebCore/InternalScripts/EditingHistoryUtil.js; sourceTree = SOURCE_ROOT; };
    5048                F4BFB9871E1DE82D00862C24 /* DumpEditingHistory.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; name = DumpEditingHistory.js; path = ../../Source/WebCore/Scripts/DumpEditingHistory.js; sourceTree = "<group>"; };
    5149                F4BFB9881E1DE82D00862C24 /* EditingHistoryUtil.js */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.javascript; name = EditingHistoryUtil.js; path = ../../Source/WebCore/Scripts/EditingHistoryUtil.js; sourceTree = "<group>"; };
     
    103101                                512D7AB51DE0FC590028F0E6 /* Resources */,
    104102                        );
    105                         name = EditingHistory;
    106                         path = EditingHistoryTest;
     103                        path = EditingHistory;
    107104                        sourceTree = "<group>";
    108105                };
     
    110107                        isa = PBXGroup;
    111108                        children = (
    112                                 51D3947E1DF2541D00ABE875 /* DumpEditingHistory.js */,
    113                                 51D3947F1DF2541D00ABE875 /* EditingHistoryUtil.js */,
    114109                                517FD93B1DE18DC900A73673 /* DOMTestingUtil.js */,
    115110                                516ADBA81DE155AB00E2B98D /* CaptureHarness.html */,
Note: See TracChangeset for help on using the changeset viewer.