Title: [164991] trunk/Source/_javascript_Core
Revision
164991
Author
[email protected]
Date
2014-03-03 10:24:22 -0800 (Mon, 03 Mar 2014)

Log Message

Another unreviewed build fix attempt for Windows after r164986.

We never told Visual Studio to copy over the web replay code generator scripts
and the generated headers for _javascript_Core replay inputs as if they were
private headers.

* _javascript_Core.vcxproj/copy-files.cmd:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (164990 => 164991)


--- trunk/Source/_javascript_Core/ChangeLog	2014-03-03 18:20:49 UTC (rev 164990)
+++ trunk/Source/_javascript_Core/ChangeLog	2014-03-03 18:24:22 UTC (rev 164991)
@@ -1,5 +1,15 @@
 2014-03-03  Brian Burg  <[email protected]>
 
+        Another unreviewed build fix attempt for Windows after r164986.
+
+        We never told Visual Studio to copy over the web replay code generator scripts
+        and the generated headers for _javascript_Core replay inputs as if they were
+        private headers.
+
+        * _javascript_Core.vcxproj/copy-files.cmd:
+
+2014-03-03  Brian Burg  <[email protected]>
+
         Web Replay: upstream input storage, capture/replay machinery, and inspector domain
         https://bugs.webkit.org/show_bug.cgi?id=128782
 

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/copy-files.cmd (164990 => 164991)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/copy-files.cmd	2014-03-03 18:20:49 UTC (rev 164990)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/copy-files.cmd	2014-03-03 18:24:22 UTC (rev 164991)
@@ -54,6 +54,7 @@
     llint
     parser
     profiler
+    replay
     runtime
     yarr
 ) do (
@@ -73,6 +74,16 @@
 xcopy /y "%DerivedSourcesDirectory%\InspectorJSBackendDispatchers.h" "%PrivateHeadersDirectory%" >NUL
 xcopy /y "%DerivedSourcesDirectory%\InspectorJSFrontendDispatchers.h" "%PrivateHeadersDirectory%" >NUL
 
+echo Copying Web Replay scripts as if they were private headers...
+for %%d in (
+    replay\scripts
+) do (
+    xcopy /y /d ..\%%d\* "%PrivateHeadersDirectory%" >NUL
+)
+
+echo Copying Web Replay generated headers as if they were private headers...
+xcopy /y "%DerivedSourcesDirectory%\JSReplayInputs.h" "%PrivateHeadersDirectory%" >NUL
+
 echo Copying builtins header as if it were a private header...
 xcopy /y "%DerivedSourcesDirectory%\JSCBuiltins.h" "%PrivateHeadersDirectory%" >NUL
 xcopy /y "%DerivedSourcesDirectory%\Bytecodes.h" "%PrivateHeadersDirectory%" >NUL
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to