[webkit-reviews] review denied: [Bug 193474] Web Inspector: fix Xcode project file list after r239976 : [Attachment 359233] Patch

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Wed Jan 16 11:20:53 PST 2019


Joseph Pecoraro <joepeck at webkit.org> has denied Devin Rousso
<drousso at apple.com>'s request for review:
Bug 193474: Web Inspector: fix Xcode project file list after r239976
https://bugs.webkit.org/show_bug.cgi?id=193474

Attachment 359233: Patch

https://bugs.webkit.org/attachment.cgi?id=359233&action=review




--- Comment #2 from Joseph Pecoraro <joepeck at webkit.org> ---
Comment on attachment 359233
  --> https://bugs.webkit.org/attachment.cgi?id=359233
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=359233&action=review

This change looks partially complete (enough to fix the project file but not
what we would normally expect for derived sources)

> Source/WebCore/WebCore.xcodeproj/project.pbxproj:2591
> -		9175CE5C21E281ED00DF2C28 /* JSInspectorAuditDOMObject.h in
Headers */ = {isa = PBXBuildFile; fileRef = 9175CE5821E281EC00DF2C28 /*
InspectorAuditDOMObject.h */; };
> +		9175CE5C21E281ED00DF2C28 /* JSInspectorAuditDOMObject.h in
Headers */ = {isa = PBXBuildFile; fileRef = 9175CE5821E281EC00DF2C28 /*
JSInspectorAuditDOMObject.h */; };
>		9175CE5E21E281ED00DF2C27 /* InspectorAuditAccessibilityObject.h
in Headers */ = {isa = PBXBuildFile; fileRef = 9175CE5A21E281ED00DF2C27 /*
InspectorAuditAccessibilityObject.h */; };
> -		9175CE5E21E281ED00DF2C28 /*
JSInspectorAuditAccessibilityObject.h in Headers */ = {isa = PBXBuildFile;
fileRef = 9175CE5A21E281ED00DF2C28 /* InspectorAuditAccessibilityObject.h */;
};
> +		9175CE5E21E281ED00DF2C28 /*
JSInspectorAuditAccessibilityObject.h in Headers */ = {isa = PBXBuildFile;
fileRef = 9175CE5A21E281ED00DF2C28 /* JSInspectorAuditAccessibilityObject.h */;
};

I would expect each of these to be like JSCommandLineAPIHost.h.

So I'd expect this section to be updated:

		1C5FAECA0DCFD8C900D58F78 /* Inspector */ = {
			isa = PBXGroup;
			children = (
				A584FE2518637DAB00843B10 /*
CommandLineAPIModuleSource.h */,
				A584FE391864E2D800843B10 /*
JSCommandLineAPIHost.cpp */,
				A584FE3A1864E2D800843B10 /*
JSCommandLineAPIHost.h */,
				7A0E771C10C00DB100A0276E /*
JSInspectorFrontendHost.cpp */,
				7A0E771D10C00DB100A0276E /*
JSInspectorFrontendHost.h */,
			);
			name = Inspector;
			sourceTree = "<group>";
		};

Something alongside this that is just a "<foo> in Headers":

		A584FE3C1864E2D800843B10 /* JSCommandLineAPIHost.h in Headers
*/,

The WebCore.xcodeproj should show the resources in the sidebar under:

    bindings/js/Derived Sources/Inspector/...


More information about the webkit-reviews mailing list