+echo Copying Inspector scripts as if they were private headers...\r
+for %%d in (\r
+ inspector\scripts\r
+ inspector\scripts\codegen\r
+) do (\r
+ @xcopy /y /d ..\%%d\* "%PrivateHeadersDirectory%" >NUL\r
+)\r
+\r
+echo Copying Inspector generated files as if they were private headers...\r
+@xcopy /y "%DerivedSourcesDirectory%\CombinedDomains.json" "%PrivateHeadersDirectory%" >NUL\r
+@xcopy /y "%DerivedSourcesDirectory%\InspectorProtocolObjects.h" "%PrivateHeadersDirectory%" >NUL\r
+@xcopy /y "%DerivedSourcesDirectory%\InspectorBackendDispatchers.h" "%PrivateHeadersDirectory%" >NUL\r
+@xcopy /y "%DerivedSourcesDirectory%\InspectorFrontendDispatchers.h" "%PrivateHeadersDirectory%" >NUL\r
+@xcopy /y "%DerivedSourcesDirectory%\InspectorBackendCommands.js" "%PrivateHeadersDirectory%" >NUL\r
+\r
+echo Copying Web Replay scripts as if they were private headers...\r
+for %%d in (\r
+ replay\scripts\r
+) do (\r
+ @xcopy /y /d ..\%%d\* "%PrivateHeadersDirectory%" >NUL\r
+)\r
+\r
+echo Copying Web Replay generated headers as if they were private headers...\r
+@xcopy /y "%DerivedSourcesDirectory%\JSReplayInputs.h" "%PrivateHeadersDirectory%" >NUL\r
+\r
+echo Copying Web Replay specification files as if they were private headers...\r
+@xcopy /y /d ..\replay\*.json "%PrivateHeadersDirectory%" >NUL\r
+\r
+echo Copying builtins header as if it were a private header...\r
+@xcopy /y "%DerivedSourcesDirectory%\JSCBuiltins.h" "%PrivateHeadersDirectory%" >NUL\r
+@xcopy /y "%DerivedSourcesDirectory%\Bytecodes.h" "%PrivateHeadersDirectory%" >NUL\r
+\r