Title: [180676] trunk
Revision
180676
Author
[email protected]
Date
2015-02-26 08:51:10 -0800 (Thu, 26 Feb 2015)

Log Message

[Win] Make build logs more legible by reducing noise
https://bugs.webkit.org/show_bug.cgi?id=142034

Reviewed by Alexey Proskuryakov.

Modify batch files, makefiles, and DOS commands to remove
uninteresting/unhelpful output.

Source/_javascript_Core:

* _javascript_Core.vcxproj/_javascript_CoreGenerated.make:
* _javascript_Core.vcxproj/_javascript_CorePreBuild.cmd:
* _javascript_Core.vcxproj/copy-files.cmd:
* _javascript_Core.vcxproj/jsc/jscLauncherPreBuild.cmd:
* _javascript_Core.vcxproj/jsc/jscPreBuild.cmd:
* _javascript_Core.vcxproj/testRegExp/testRegExpLauncherPreBuild.cmd:
* _javascript_Core.vcxproj/testRegExp/testRegExpPreBuild.cmd:
* _javascript_Core.vcxproj/testapi/testapiLauncherPostBuild.cmd:
* _javascript_Core.vcxproj/testapi/testapiLauncherPreBuild.cmd:
* _javascript_Core.vcxproj/testapi/testapiPostBuild.cmd:
* _javascript_Core.vcxproj/testapi/testapiPreBuild.cmd:

Source/WebCore:

* WebCore.vcxproj/WebCoreGenerated.make:
* WebCore.vcxproj/WebCorePreBuild.cmd:
* WebCore.vcxproj/copyForwardingHeaders.cmd:
* WebCore.vcxproj/copyWebCoreResourceFiles.cmd:

Source/WebInspectorUI:

* WebInspectorUI.vcxproj/WebInspectorUI.make:

Source/WebKit:

* WebKit.vcxproj/Interfaces/InterfacesPostBuild.cmd:
* WebKit.vcxproj/Interfaces/InterfacesPreBuild.cmd:
* WebKit.vcxproj/WebKit/WebKitPostBuild.cmd:
* WebKit.vcxproj/WebKit/WebKitPreBuild.cmd:
* WebKit.vcxproj/WebKitGUID/WebKitGUIDPreBuild.cmd:

Source/WTF:

* WTF.vcxproj/WTFGenerated.make:
* WTF.vcxproj/WTFPreBuild.cmd:
* WTF.vcxproj/copy-files.cmd:

WebKitLibraries:

* win/tools/vsprops/common.props:

Modified Paths

Diff

Modified: trunk/Source/_javascript_Core/ChangeLog (180675 => 180676)


--- trunk/Source/_javascript_Core/ChangeLog	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/ChangeLog	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,3 +1,25 @@
+2015-02-26  Brent Fulgham  <[email protected]>
+
+        [Win] Make build logs more legible by reducing noise
+        https://bugs.webkit.org/show_bug.cgi?id=142034
+
+        Reviewed by Alexey Proskuryakov.
+
+        Modify batch files, makefiles, and DOS commands to remove
+        uninteresting/unhelpful output.
+
+        * _javascript_Core.vcxproj/_javascript_CoreGenerated.make:
+        * _javascript_Core.vcxproj/_javascript_CorePreBuild.cmd:
+        * _javascript_Core.vcxproj/copy-files.cmd:
+        * _javascript_Core.vcxproj/jsc/jscLauncherPreBuild.cmd:
+        * _javascript_Core.vcxproj/jsc/jscPreBuild.cmd:
+        * _javascript_Core.vcxproj/testRegExp/testRegExpLauncherPreBuild.cmd:
+        * _javascript_Core.vcxproj/testRegExp/testRegExpPreBuild.cmd:
+        * _javascript_Core.vcxproj/testapi/testapiLauncherPostBuild.cmd:
+        * _javascript_Core.vcxproj/testapi/testapiLauncherPreBuild.cmd:
+        * _javascript_Core.vcxproj/testapi/testapiPostBuild.cmd:
+        * _javascript_Core.vcxproj/testapi/testapiPreBuild.cmd:
+
 2015-02-26  Csaba Osztrogonác  <[email protected]>
 
         Add calleeSaveRegisters() implementation for ARM Traditional

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_CoreGenerated.make (180675 => 180676)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_CoreGenerated.make	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_CoreGenerated.make	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,12 +1,12 @@
 all:
-    touch "%ConfigurationBuildDir%\buildfailed"
-    perl build-generated-files.pl "%ConfigurationBuildDir%" "$(WEBKIT_LIBRARIES)" "%PlatformArchitecture%"
-    copy-files.cmd
+    @touch "%ConfigurationBuildDir%\buildfailed"
+    @perl build-generated-files.pl "%ConfigurationBuildDir%" "$(WEBKIT_LIBRARIES)" "%PlatformArchitecture%"
+    @copy-files.cmd
 
-    -del "%ConfigurationBuildDir%\include\private\_javascript_Core\stdbool.h" "%ConfigurationBuildDir%\include\private\_javascript_Core\stdint.h"
-    -del "%ConfigurationBuildDir%\buildfailed"
+    -@del "%ConfigurationBuildDir%\include\private\_javascript_Core\stdbool.h" "%ConfigurationBuildDir%\include\private\_javascript_Core\stdint.h" >nul 2>nul
+    -@del "%ConfigurationBuildDir%\buildfailed"
 
 clean:
-    -del "%ConfigurationBuildDir%\buildfailed"
+    -@del "%ConfigurationBuildDir%\buildfailed"
     copy-files.cmd clean
-    -del /s /q "%ConfigurationBuildDir%\obj%PlatformArchitecture%\_javascript_Core\DerivedSources"
+    -@del /s /q "%ConfigurationBuildDir%\obj%PlatformArchitecture%\_javascript_Core\DerivedSources"

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_CorePreBuild.cmd (180675 => 180676)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_CorePreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/_javascript_CorePreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,4 +1,4 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"

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


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/copy-files.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/copy-files.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -9,7 +9,7 @@
 if "%1" EQU "rebuild" call :clean
 
 echo Copying public headers...
-mkdir "%PublicHeadersDirectory%" 2>NUL
+@mkdir "%PublicHeadersDirectory%" 2>NUL
 for %%f in (
     APICast.h
     APIShims.h
@@ -33,7 +33,7 @@
     OpaqueJSString.h
     WebKitAvailability.h
 ) do (
-    xcopy /y /d ..\API\%%f "%PublicHeadersDirectory%" >NUL
+    @xcopy /y /d ..\API\%%f "%PublicHeadersDirectory%" >NUL
 )
 
 echo Copying private headers...
@@ -58,7 +58,7 @@
     runtime
     yarr
 ) do (
-    xcopy /y /d ..\%%d\*.h "%PrivateHeadersDirectory%" >NUL
+    @xcopy /y /d ..\%%d\*.h "%PrivateHeadersDirectory%" >NUL
 )
 
 echo Copying Inspector scripts as if they were private headers...
@@ -66,42 +66,42 @@
     inspector\scripts
 	inspector\scripts\codegen
 ) do (
-    xcopy /y /d ..\%%d\* "%PrivateHeadersDirectory%" >NUL
+    @xcopy /y /d ..\%%d\* "%PrivateHeadersDirectory%" >NUL
 )
 
 echo Copying Inspector generated files as if they were private headers...
-xcopy /y "%DerivedSourcesDirectory%\CombinedDomains.json" "%PrivateHeadersDirectory%" >NUL
-xcopy /y "%DerivedSourcesDirectory%\InspectorProtocolObjects.h" "%PrivateHeadersDirectory%" >NUL
-xcopy /y "%DerivedSourcesDirectory%\InspectorBackendDispatchers.h" "%PrivateHeadersDirectory%" >NUL
-xcopy /y "%DerivedSourcesDirectory%\InspectorFrontendDispatchers.h" "%PrivateHeadersDirectory%" >NUL
-xcopy /y "%DerivedSourcesDirectory%\InspectorBackendCommands.js" "%PrivateHeadersDirectory%" >NUL
+@xcopy /y "%DerivedSourcesDirectory%\CombinedDomains.json" "%PrivateHeadersDirectory%" >NUL
+@xcopy /y "%DerivedSourcesDirectory%\InspectorProtocolObjects.h" "%PrivateHeadersDirectory%" >NUL
+@xcopy /y "%DerivedSourcesDirectory%\InspectorBackendDispatchers.h" "%PrivateHeadersDirectory%" >NUL
+@xcopy /y "%DerivedSourcesDirectory%\InspectorFrontendDispatchers.h" "%PrivateHeadersDirectory%" >NUL
+@xcopy /y "%DerivedSourcesDirectory%\InspectorBackendCommands.js" "%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
+    @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
+@xcopy /y "%DerivedSourcesDirectory%\JSReplayInputs.h" "%PrivateHeadersDirectory%" >NUL
 
 echo Copying Web Replay specification files as if they were private headers...
-xcopy /y /d ..\replay\*.json "%PrivateHeadersDirectory%" >NUL
+@xcopy /y /d ..\replay\*.json "%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
+@xcopy /y "%DerivedSourcesDirectory%\JSCBuiltins.h" "%PrivateHeadersDirectory%" >NUL
+@xcopy /y "%DerivedSourcesDirectory%\Bytecodes.h" "%PrivateHeadersDirectory%" >NUL
 
 echo Copying resources...
-mkdir "%ResourcesDirectory%" 2>NUL
-xcopy /y /d _javascript_Core.resources\* "%ResourcesDirectory%" >NUL
+@mkdir "%ResourcesDirectory%" 2>NUL
+@xcopy /y /d _javascript_Core.resources\* "%ResourcesDirectory%" >NUL
 
 goto :EOF
 
 :clean
 
 echo Deleting copied files...
-if exist "%PublicHeadersDirectory%" rmdir /s /q "%PublicHeadersDirectory%" >NUL
-if exist "%PrivateHeadersDirectory%" rmdir /s /q "%PrivateHeadersDirectory%" >NUL
-if exist "%ResourcesDirectory%" rmdir /s /q "%ResourcesDirectory%" >NUL
+@if exist "%PublicHeadersDirectory%" rmdir /s /q "%PublicHeadersDirectory%" >NUL 2>NUL
+@if exist "%PrivateHeadersDirectory%" rmdir /s /q "%PrivateHeadersDirectory%" >NUL 2>NUL
+@if exist "%ResourcesDirectory%" rmdir /s /q "%ResourcesDirectory%" >NUL 2>NUL

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/jsc/jscLauncherPreBuild.cmd (180675 => 180676)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/jsc/jscLauncherPreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/jsc/jscLauncherPreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,4 +1,4 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/jsc/jscPreBuild.cmd (180675 => 180676)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/jsc/jscPreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/jsc/jscPreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,4 +1,4 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testRegExp/testRegExpLauncherPreBuild.cmd (180675 => 180676)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testRegExp/testRegExpLauncherPreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testRegExp/testRegExpLauncherPreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,4 +1,4 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testRegExp/testRegExpPreBuild.cmd (180675 => 180676)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testRegExp/testRegExpPreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testRegExp/testRegExpPreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,4 +1,4 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiLauncherPostBuild.cmd (180675 => 180676)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiLauncherPostBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiLauncherPostBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,3 +1,3 @@
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
 
-xcopy /y /d "%PROJECTDIR%\..\..\API\tests\testapi.js" "%OUTDIR%"
+@xcopy /y /d "%PROJECTDIR%\..\..\API\tests\testapi.js" "%OUTDIR%" >nul 2>nul

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiLauncherPreBuild.cmd (180675 => 180676)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiLauncherPreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiLauncherPreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,4 +1,4 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiPostBuild.cmd (180675 => 180676)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiPostBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiPostBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,3 +1,3 @@
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
 
-xcopy /y /d "%PROJECTDIR%\..\..\API\tests\testapi.js" "%OUTDIR%"
+@xcopy /y /d "%PROJECTDIR%\..\..\API\tests\testapi.js" "%OUTDIR%" >nul 2>nul

Modified: trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiPreBuild.cmd (180675 => 180676)


--- trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiPreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/_javascript_Core/_javascript_Core.vcxproj/testapi/testapiPreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,6 +1,6 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"
 if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
+@echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"

Modified: trunk/Source/WTF/ChangeLog (180675 => 180676)


--- trunk/Source/WTF/ChangeLog	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WTF/ChangeLog	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,3 +1,17 @@
+2015-02-26  Brent Fulgham  <[email protected]>
+
+        [Win] Make build logs more legible by reducing noise
+        https://bugs.webkit.org/show_bug.cgi?id=142034
+
+        Reviewed by Alexey Proskuryakov.
+
+        Modify batch files, makefiles, and DOS commands to remove
+        uninteresting/unhelpful output.
+
+        * WTF.vcxproj/WTFGenerated.make:
+        * WTF.vcxproj/WTFPreBuild.cmd:
+        * WTF.vcxproj/copy-files.cmd:
+
 2015-02-26  Landry Breuil  <[email protected]>
 
         Revert bug 19975, now that gcc 4.7 is required.

Modified: trunk/Source/WTF/WTF.vcxproj/WTFGenerated.make (180675 => 180676)


--- trunk/Source/WTF/WTF.vcxproj/WTFGenerated.make	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WTF/WTF.vcxproj/WTFGenerated.make	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,22 +1,23 @@
 all: WTFHeaderDetection.h
-    touch "%ConfigurationBuildDir%\buildfailed"
-    perl build-generated-files.pl "%ConfigurationBuildDir%" "$(WEBKIT_LIBRARIES)" "$(DEBUGSUFFIX)" "%PlatformArchitecture%"
+    @touch "%ConfigurationBuildDir%\buildfailed"
+    @perl build-generated-files.pl "%ConfigurationBuildDir%" "$(WEBKIT_LIBRARIES)" "$(DEBUGSUFFIX)" "%PlatformArchitecture%"
 !IF "$(OFFICIAL_BUILD)"!="1"
-    python2.7 work-around-vs-dependency-tracking-bugs.py
+    [email protected] work-around-vs-dependency-tracking-bugs.py
 !ENDIF
-    copy-files.cmd
+    @copy-files.cmd
 
-    -del "%ConfigurationBuildDir%\buildfailed"
+    -@del "%ConfigurationBuildDir%\buildfailed"
 
 clean:
-    -del "%ConfigurationBuildDir%\buildfailed"
-    -del "%ConfigurationBuildDir%\include\private\wtf\WTFHeaderDetection.h"
-    copy-files.cmd clean
+    -@del "%ConfigurationBuildDir%\buildfailed"
+    -@del "%ConfigurationBuildDir%\include\private\wtf\WTFHeaderDetection.h"
+    @copy-files.cmd clean
 
 # Header detection
 WTFHeaderDetection.h: WTFGenerated.make
-    -mkdir "%ConfigurationBuildDir%\include\private\wtf
-    <<testOSXLevel.cmd
+    -@mkdir "%ConfigurationBuildDir%\include\private\wtf"
+    -@<<testOSXLevel.cmd
+@echo off
 IF EXIST "%ConfigurationBuildDir%\include\private\wtf\$@" GOTO DONE
 echo /* No Legible Output Support Found */  > "%ConfigurationBuildDir%\include\private\wtf\$@"
 IF EXIST "$(WEBKIT_LIBRARIES)/include/AVFoundationCF/AVCFPlayerItemLegibleOutput.h" (echo #define __ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__ 1090 > "%ConfigurationBuildDir%\include\private\wtf\$@")

Modified: trunk/Source/WTF/WTF.vcxproj/WTFPreBuild.cmd (180675 => 180676)


--- trunk/Source/WTF/WTF.vcxproj/WTFPreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WTF/WTF.vcxproj/WTFPreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,4 +1,4 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"

Modified: trunk/Source/WTF/WTF.vcxproj/copy-files.cmd (180675 => 180676)


--- trunk/Source/WTF/WTF.vcxproj/copy-files.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WTF/WTF.vcxproj/copy-files.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -8,6 +8,7 @@
 if "%1" EQU "clean" goto :clean
 if "%1" EQU "rebuild" call :clean
 
+echo Copying WTF headers...
 for %%d in (
     wtf
     wtf\cf
@@ -19,8 +20,8 @@
     wtf\unicode\icu
     wtf\win
 ) do (
-    mkdir "%PrivateHeadersDirectory%\%%d" 2>NUL
-    xcopy /y /d ..\%%d\*.h "%PrivateHeadersDirectory%\%%d" >NUL
+    mkdir "%PrivateHeadersDirectory%\%%d" >NUL 2>NUL
+    xcopy /y /d ..\%%d\*.h "%PrivateHeadersDirectory%\%%d" >NUL 2>NUL
 )
 
 echo Copying other files...
@@ -31,7 +32,7 @@
     wtf\text\StringImpl.cpp
     wtf\text\WTFString.cpp
 ) do (
-    echo F | xcopy /y /d ..\%%f "%PrivateHeadersDirectory%\%%f" >NUL
+    echo F | xcopy /y /d ..\%%f "%PrivateHeadersDirectory%\%%f" >NUL 2>NUL
 )
 
 goto :EOF
@@ -41,4 +42,3 @@
 echo Deleting copied files...
 if exist "%PrivateHeadersDirectory%" rmdir /s /q "%PrivateHeadersDirectory%" >NUL
 endlocal
-

Modified: trunk/Source/WebCore/ChangeLog (180675 => 180676)


--- trunk/Source/WebCore/ChangeLog	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebCore/ChangeLog	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,3 +1,18 @@
+2015-02-26  Brent Fulgham  <[email protected]>
+
+        [Win] Make build logs more legible by reducing noise
+        https://bugs.webkit.org/show_bug.cgi?id=142034
+
+        Reviewed by Alexey Proskuryakov.
+
+        Modify batch files, makefiles, and DOS commands to remove
+        uninteresting/unhelpful output.
+
+        * WebCore.vcxproj/WebCoreGenerated.make:
+        * WebCore.vcxproj/WebCorePreBuild.cmd:
+        * WebCore.vcxproj/copyForwardingHeaders.cmd:
+        * WebCore.vcxproj/copyWebCoreResourceFiles.cmd:
+
 2015-02-26  Michael Catanzaro  <[email protected]>
 
         [FreeType] REGRESSION(r180563): Introduced crashes

Modified: trunk/Source/WebCore/WebCore.vcxproj/WebCoreGenerated.make (180675 => 180676)


--- trunk/Source/WebCore/WebCore.vcxproj/WebCoreGenerated.make	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebCore/WebCore.vcxproj/WebCoreGenerated.make	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,12 +1,12 @@
 make:
-    if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XXWebCoreGeneratedXX/) { print } else { exit 1 }" "%ConfigurationBuildDir%\buildfailed"
-    if errorlevel 1 exit 1
-    echo XXWebCoreGeneratedXX > "%ConfigurationBuildDir%\buildfailed"
+    @if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XXWebCoreGeneratedXX/) { print } else { exit 1 }" "%ConfigurationBuildDir%\buildfailed"
+    @if errorlevel 1 exit 1
+    @echo XXWebCoreGeneratedXX > "%ConfigurationBuildDir%\buildfailed"
 
     perl build-generated-files.pl "%ConfigurationBuildDir%" "%WebKit_Libraries%" windows "%PlatformArchitecture%"
     perl migrate-scripts.pl "%ConfigurationBuildDir%\obj%PlatformArchitecture%\WebCore\scripts"
-    cmd /C copyForwardingHeaders.cmd cg cf
-    cmd /C copyWebCoreResourceFiles.cmd
+    @cmd /C copyForwardingHeaders.cmd cg cf
+    @cmd /C copyWebCoreResourceFiles.cmd
     
 clean:
     if exist "%ConfigurationBuildDir%\obj%PlatformArchitecture%\WebCore\DerivedSources" del /s /q "%ConfigurationBuildDir%\obj%PlatformArchitecture%\WebCore\DerivedSources"

Modified: trunk/Source/WebCore/WebCore.vcxproj/WebCorePreBuild.cmd (180675 => 180676)


--- trunk/Source/WebCore/WebCore.vcxproj/WebCorePreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebCore/WebCore.vcxproj/WebCorePreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,13 +1,15 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"
 if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
-set AngleHeadersDirectory=%CONFIGURATIONBUILDDIR%\include\private
-mkdir "%AngleHeadersDirectory%" 2>NUL
-xcopy /y /d /s "%ProjectDir%..\..\ThirdParty\ANGLE\include" "%AngleHeadersDirectory%"
-xcopy /y /d "%AngleHeadersDirectory%\KHR\khrplatform.h" "%AngleHeadersDirectory%"
-xcopy /y /d "%AngleHeadersDirectory%\EGL\eglplatform.h" "%AngleHeadersDirectory%"
-xcopy /y /d /s "%ProjectDir%..\platform\graphics\win\GL" "%AngleHeadersDirectory%"
+@echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
+@set AngleHeadersDirectory=%CONFIGURATIONBUILDDIR%\include\private
+
+echo Copying ANGLE headers
+@mkdir "%AngleHeadersDirectory%" 2>NUL
+@xcopy /y /d /s "%ProjectDir%..\..\ThirdParty\ANGLE\include" "%AngleHeadersDirectory%"
+@xcopy /y /d "%AngleHeadersDirectory%\KHR\khrplatform.h" "%AngleHeadersDirectory%"
+@xcopy /y /d "%AngleHeadersDirectory%\EGL\eglplatform.h" "%AngleHeadersDirectory%"
+@xcopy /y /d /s "%ProjectDir%..\platform\graphics\win\GL" "%AngleHeadersDirectory%"
 exit /b

Modified: trunk/Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd (180675 => 180676)


--- trunk/Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebCore/WebCore.vcxproj/copyForwardingHeaders.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,116 +1,117 @@
-rem %1 argument is used for graphics. It can be cg or cairo
-rem %2 argument is used for network. It can be cf or curl
+echo Copying Forwarding Headers...
+@rem %1 argument is used for graphics. It can be cg or cairo
+@rem %2 argument is used for network. It can be cf or curl
 
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\private\WebCore"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\bindings"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\parser"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\runtime"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\masm"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\profiler"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\heap"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\inspector"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\yarr"
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCoreTestSupport"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\private\WebCore"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\bindings"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\parser"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\runtime"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\masm"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\profiler"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\heap"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\inspector"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\yarr"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebCoreTestSupport"
 
-xcopy /y /d "%ProjectDir%..\config.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebCore\DerivedSources\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\Modules\filesystem\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\Modules\gamepad\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\Modules\geolocation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\Modules\indexeddb\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\Modules\mediacontrols\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\Modules\mediasource\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\Modules\navigatorcontentutils\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\Modules\notifications\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\Modules\quota\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\Modules\webdatabase\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\Modules\websockets\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\accessibility\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\accessibility\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\inspector\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\loader\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\loader\appcache\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\loader\archive\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\loader\archive\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\loader\cache\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\loader\icon\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\history\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\history\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\html\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\html\forms\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\html\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\html\shadow\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\html\track\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\css\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\audio\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\cf\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\filters\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\transforms\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\ca\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\ca\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\gstreamer\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\win\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\opentype\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\opengl\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\graphics\texmap\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\mock\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\text\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\text\icu\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\text\transcoder\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\network\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\network\%2\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\spi\cg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\sql\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\platform\cairo\cairo\src\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\bindings\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\bindings\generic\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\bindings\js\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\page\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\page\scrolling\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\page\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\page\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\bridge\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\bridge\c\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\bridge\jsc\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\plugins\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\plugins\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\rendering\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\rendering\line\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\rendering\style\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\rendering\shapes\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\rendering\svg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\editing\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\dom\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\xml\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\xml\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\svg\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\svg\graphics\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\svg\properties\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\svg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\storage\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\style\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\workers\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore"
-xcopy /y /d "%ProjectDir%..\ForwardingHeaders\bindings\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\bindings"
-xcopy /y /d "%ProjectDir%..\ForwardingHeaders\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\parser"
-xcopy /y /d "%ProjectDir%..\ForwardingHeaders\runtime\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\runtime"
-xcopy /y /d "%ProjectDir%..\ForwardingHeaders\masm\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\masm"
-xcopy /y /d "%ProjectDir%..\ForwardingHeaders\profiler\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\profiler"
-xcopy /y /d "%ProjectDir%..\ForwardingHeaders\heap\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\heap"
-xcopy /y /d "%ProjectDir%..\ForwardingHeaders\inspector\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\inspector"
-xcopy /y /d "%ProjectDir%..\ForwardingHeaders\yarr\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\yarr"
+@xcopy /y /d "%ProjectDir%..\config.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebCore\DerivedSources\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\Modules\filesystem\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\Modules\gamepad\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\Modules\geolocation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\Modules\indexeddb\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\Modules\mediacontrols\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\Modules\mediasource\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\Modules\navigatorcontentutils\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\Modules\notifications\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\Modules\quota\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\Modules\webdatabase\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\Modules\websockets\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\accessibility\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\accessibility\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\inspector\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\loader\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\loader\appcache\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\loader\archive\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\loader\archive\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\loader\cache\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\loader\icon\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\history\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\history\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\html\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\html\forms\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\html\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\html\shadow\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\html\track\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\css\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\audio\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\cf\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\cf\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\filters\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\transforms\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\ca\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\ca\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\gstreamer\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\win\%1\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\opentype\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\opengl\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\graphics\texmap\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\mock\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\text\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\text\icu\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\text\transcoder\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\network\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\network\%2\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\spi\cg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\sql\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\platform\cairo\cairo\src\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\bindings\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\bindings\generic\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\bindings\js\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\page\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\page\scrolling\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\page\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\page\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\bridge\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\bridge\c\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\bridge\jsc\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\plugins\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\plugins\win\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\rendering\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\rendering\line\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\rendering\style\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\rendering\shapes\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\rendering\svg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\editing\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\dom\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\xml\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>null
+@xcopy /y /d "%ProjectDir%..\xml\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\svg\animation\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\svg\graphics\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\svg\properties\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\svg\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\storage\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\style\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\workers\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\ForwardingHeaders\bindings\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\bindings" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\ForwardingHeaders\parser\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\parser" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\ForwardingHeaders\runtime\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\runtime" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\ForwardingHeaders\masm\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\masm" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\ForwardingHeaders\profiler\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\profiler" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\ForwardingHeaders\heap\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\heap" >nul 2>nul
+@xcopy /y /d "%ProjectDir%..\ForwardingHeaders\inspector\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\inspector" >nul  2>nul
+@xcopy /y /d "%ProjectDir%..\ForwardingHeaders\yarr\*.h" "%CONFIGURATIONBUILDDIR%\include\WebCore\ForwardingHeaders\yarr" >nul 2>nul
 
-xcopy /y /d "%ProjectDir%..\testing\js\WebCoreTestSupport.h" "%CONFIGURATIONBUILDDIR%\include\WebCoreTestSupport"
+@xcopy /y /d "%ProjectDir%..\testing\js\WebCoreTestSupport.h" "%CONFIGURATIONBUILDDIR%\include\WebCoreTestSupport" >nul 2>nul
 
-set DerivedSourcesDirectory=%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebCore\DerivedSources
-set PrivateHeadersDirectory=%CONFIGURATIONBUILDDIR%\include\private\WebCore
+@set DerivedSourcesDirectory=%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebCore\DerivedSources
+@set PrivateHeadersDirectory=%CONFIGURATIONBUILDDIR%\include\private\WebCore
 
-if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"
+@if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"

Modified: trunk/Source/WebCore/WebCore.vcxproj/copyWebCoreResourceFiles.cmd (180675 => 180676)


--- trunk/Source/WebCore/WebCore.vcxproj/copyWebCoreResourceFiles.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebCore/WebCore.vcxproj/copyWebCoreResourceFiles.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,5 +1,6 @@
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj"
-xcopy /y /d /s /exclude:xcopy.excludes "%ProjectDir%..\English.lproj\Localizable.strings" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj"
-xcopy /y /d /s /exclude:xcopy.excludes "%ProjectDir%..\English.lproj\mediaControlsLocalizedStrings.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj"
-xcopy /y /d /s "%ProjectDir%..\Modules\mediacontrols\mediaControlsApple.css" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources"
-xcopy /y /d /s "%ProjectDir%..\Modules\mediacontrols\mediaControlsApple.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources"
+echo Copying Resource Files...
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj"
+@xcopy /y /d /s /exclude:xcopy.excludes "%ProjectDir%..\English.lproj\Localizable.strings" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj" >nul
+@xcopy /y /d /s /exclude:xcopy.excludes "%ProjectDir%..\English.lproj\mediaControlsLocalizedStrings.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources\en.lproj" >nul
+@xcopy /y /d /s "%ProjectDir%..\Modules\mediacontrols\mediaControlsApple.css" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources" >nul
+@xcopy /y /d /s "%ProjectDir%..\Modules\mediacontrols\mediaControlsApple.js" "%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources" >nul

Modified: trunk/Source/WebInspectorUI/ChangeLog (180675 => 180676)


--- trunk/Source/WebInspectorUI/ChangeLog	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebInspectorUI/ChangeLog	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,3 +1,15 @@
+2015-02-26  Brent Fulgham  <[email protected]>
+
+        [Win] Make build logs more legible by reducing noise
+        https://bugs.webkit.org/show_bug.cgi?id=142034
+
+        Reviewed by Alexey Proskuryakov.
+
+        Modify batch files, makefiles, and DOS commands to remove
+        uninteresting/unhelpful output.
+
+        * WebInspectorUI.vcxproj/WebInspectorUI.make:
+
 2015-02-25  Joseph Pecoraro  <[email protected]>
 
         Web Inspector: Improve Regex/Error output in Object Tree and Previews

Modified: trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.make (180675 => 180676)


--- trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.make	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebInspectorUI/WebInspectorUI.vcxproj/WebInspectorUI.make	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,9 +1,9 @@
 make:
-	-mkdir "%ConfigurationBuildDir%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI"
-	perl build-webinspectorui.pl "%ConfigurationBuildDir%" "%WebKit_Libraries%" windows "%PlatformArchitecture%" "%OFFICIAL_BUILD%"
+	-@mkdir "%ConfigurationBuildDir%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI"
+	@perl build-webinspectorui.pl "%ConfigurationBuildDir%" "%WebKit_Libraries%" windows "%PlatformArchitecture%" "%OFFICIAL_BUILD%"
 	if errorlevel 1 exit 1
 
-	xcopy /y /e "..\Localizations\en.lproj\*" "%ConfigurationBuildDir%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI"
+	@xcopy /y /e "..\Localizations\en.lproj\*" "%ConfigurationBuildDir%\bin%PlatformArchitecture%\WebKit.resources\WebInspectorUI"
 	if errorlevel 1 exit 1
 
 	if exist "%CONFIGURATIONBUILDDIR%\buildfailed" del "%CONFIGURATIONBUILDDIR%\buildfailed"

Modified: trunk/Source/WebKit/ChangeLog (180675 => 180676)


--- trunk/Source/WebKit/ChangeLog	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebKit/ChangeLog	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,3 +1,19 @@
+2015-02-26  Brent Fulgham  <[email protected]>
+
+        [Win] Make build logs more legible by reducing noise
+        https://bugs.webkit.org/show_bug.cgi?id=142034
+
+        Reviewed by Alexey Proskuryakov.
+
+        Modify batch files, makefiles, and DOS commands to remove
+        uninteresting/unhelpful output.
+
+        * WebKit.vcxproj/Interfaces/InterfacesPostBuild.cmd:
+        * WebKit.vcxproj/Interfaces/InterfacesPreBuild.cmd:
+        * WebKit.vcxproj/WebKit/WebKitPostBuild.cmd:
+        * WebKit.vcxproj/WebKit/WebKitPreBuild.cmd:
+        * WebKit.vcxproj/WebKitGUID/WebKitGUIDPreBuild.cmd:
+
 2015-02-25  Brent Fulgham  <[email protected]>
 
         [Win] Use WEBCORE_EXPORT instead of Definition file

Modified: trunk/Source/WebKit/WebKit.vcxproj/Interfaces/InterfacesPostBuild.cmd (180675 => 180676)


--- trunk/Source/WebKit/WebKit.vcxproj/Interfaces/InterfacesPostBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebKit/WebKit.vcxproj/Interfaces/InterfacesPostBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,4 +1,4 @@
-%SystemDrive%\cygwin\bin\which.exe bash
+%SystemDrive%\cygwin\bin\which.exe bash >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 

Modified: trunk/Source/WebKit/WebKit.vcxproj/Interfaces/InterfacesPreBuild.cmd (180675 => 180676)


--- trunk/Source/WebKit/WebKit.vcxproj/Interfaces/InterfacesPreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebKit/WebKit.vcxproj/Interfaces/InterfacesPreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,9 +1,9 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"
 if errorlevel 1 exit 1
 echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
 
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebKit\%PROJECTNAME%"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\obj%PlatformArchitecture%\WebKit\%PROJECTNAME%"
 perl "%WEBKIT_LIBRARIES%\tools\scripts\auto-version.pl" "%INTDIR%"

Modified: trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPostBuild.cmd (180675 => 180676)


--- trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPostBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPostBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,22 +1,22 @@
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebKit"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\WebKit"
 
 set ResourcesDirectory=%CONFIGURATIONBUILDDIR%\bin%PlatformArchitecture%\WebKit.resources
 
-xcopy /y /d "%PROJECTDIR%\..\..\win\WebLocalizableStrings.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
-xcopy /y /d "%PROJECTDIR%\..\..\win\WebKitGraphics.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
-xcopy /y /d "%PROJECTDIR%\..\..\win\WebKitCOMAPI.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
-xcopy /y /d "%PROJECTDIR%\..\..\win\WebPreferenceKeysPrivate.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
-xcopy /y /d "%PROJECTDIR%\..\..\win\CFDictionaryPropertyBag.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
+@xcopy /y /d "%PROJECTDIR%\..\..\win\WebLocalizableStrings.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
+@xcopy /y /d "%PROJECTDIR%\..\..\win\WebKitGraphics.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
+@xcopy /y /d "%PROJECTDIR%\..\..\win\WebKitCOMAPI.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
+@xcopy /y /d "%PROJECTDIR%\..\..\win\WebPreferenceKeysPrivate.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
+@xcopy /y /d "%PROJECTDIR%\..\..\win\CFDictionaryPropertyBag.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
 
-xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npapi.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
-xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npfunctions.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
-xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npruntime.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
-xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npruntime_internal.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
-xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\nptypes.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
+@xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npapi.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
+@xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npfunctions.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
+@xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npruntime.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
+@xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\npruntime_internal.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
+@xcopy /y /d "%CONFIGURATIONBUILDDIR%\include\WebCore\nptypes.h" "%CONFIGURATIONBUILDDIR%\include\WebKit"
 
 echo Copying resources...
-mkdir "%ResourcesDirectory%" 2>NUL
-xcopy /y /d "%PROJECTDIR%\..\..\win\WebKit.resources\Info.plist" "%ResourcesDirectory%" >NUL
+@mkdir "%ResourcesDirectory%" 2>NUL
+@xcopy /y /d "%PROJECTDIR%\..\..\win\WebKit.resources\Info.plist" "%ResourcesDirectory%" >NUL
 
 perl "%WEBKIT_LIBRARIES%\tools\scripts\version-stamp.pl" "%INTDIR%" "%TARGETPATH%"
 

Modified: trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPreBuild.cmd (180675 => 180676)


--- trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebKit/WebKit.vcxproj/WebKit/WebKitPreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,11 +1,11 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"
 if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
+@echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
 
-mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\_javascript_Core"
-xcopy /y /d "%WEBKIT_LIBRARIES%\include\_javascript_Core\*" "%CONFIGURATIONBUILDDIR%\include\_javascript_Core"
+@mkdir 2>NUL "%CONFIGURATIONBUILDDIR%\include\_javascript_Core"
+@xcopy /y /d "%WEBKIT_LIBRARIES%\include\_javascript_Core\*" "%CONFIGURATIONBUILDDIR%\include\_javascript_Core"
 
 perl "%WEBKIT_LIBRARIES%\tools\scripts\auto-version.pl" "%INTDIR%"

Modified: trunk/Source/WebKit/WebKit.vcxproj/WebKitGUID/WebKitGUIDPreBuild.cmd (180675 => 180676)


--- trunk/Source/WebKit/WebKit.vcxproj/WebKitGUID/WebKitGUIDPreBuild.cmd	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/Source/WebKit/WebKit.vcxproj/WebKitGUID/WebKitGUIDPreBuild.cmd	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,6 +1,6 @@
-%SystemDrive%\cygwin\bin\which.exe perl
+%SystemDrive%\cygwin\bin\which.exe perl >nul 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 cmd /c
 if exist "%CONFIGURATIONBUILDDIR%\buildfailed" perl -wnle "if (/XX%PROJECTNAME%XX/) { print } else { exit 1 }" "%CONFIGURATIONBUILDDIR%\buildfailed"
 if errorlevel 1 exit 1
-echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"
+@echo XX%PROJECTNAME%XX > "%CONFIGURATIONBUILDDIR%\buildfailed"

Modified: trunk/WebKitLibraries/ChangeLog (180675 => 180676)


--- trunk/WebKitLibraries/ChangeLog	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/WebKitLibraries/ChangeLog	2015-02-26 16:51:10 UTC (rev 180676)
@@ -1,3 +1,15 @@
+2015-02-26  Brent Fulgham  <[email protected]>
+
+        [Win] Make build logs more legible by reducing noise
+        https://bugs.webkit.org/show_bug.cgi?id=142034
+
+        Reviewed by Alexey Proskuryakov.
+
+        Modify batch files, makefiles, and DOS commands to remove
+        uninteresting/unhelpful output.
+
+        * win/tools/vsprops/common.props:
+
 2015-02-25  [email protected]  <[email protected]>
 
         [WinCairo] WinLauncher is not starting on Vista.

Modified: trunk/WebKitLibraries/win/tools/vsprops/common.props (180675 => 180676)


--- trunk/WebKitLibraries/win/tools/vsprops/common.props	2015-02-26 16:24:41 UTC (rev 180675)
+++ trunk/WebKitLibraries/win/tools/vsprops/common.props	2015-02-26 16:51:10 UTC (rev 180676)
@@ -10,14 +10,14 @@
     <OutDir>$(ConfigurationBuildDir)\bin$(PlatformArchitecture)\</OutDir>
     <IntDir>$(ConfigurationBuildDir)\obj$(PlatformArchitecture)\$(ProjectName)\</IntDir>
     <LinkIncremental>false</LinkIncremental>
-    <NMakeBuildCommandLine>%SystemDrive%\cygwin\bin\which.exe bash
+    <NMakeBuildCommandLine>%SystemDrive%\cygwin\bin\which.exe bash 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 set CONFIGURATIONBUILDDIR=$(ConfigurationBuildDir)
 set PLATFORMARCHITECTURE=$(PlatformArchitecture)
 set WEBKIT_LIBRARIES=$(WEBKIT_LIBRARIES)
 set OFFICIAL_BUILD=$(OFFICIAL_BUILD)
 nmake /nologo -f $(ProjectName).make</NMakeBuildCommandLine>
-    <NMakeReBuildCommandLine>%SystemDrive%\cygwin\bin\which.exe bash
+    <NMakeReBuildCommandLine>%SystemDrive%\cygwin\bin\which.exe bash 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 set CONFIGURATIONBUILDDIR=$(ConfigurationBuildDir)
 set PLATFORMARCHITECTURE=$(PlatformArchitecture)
@@ -25,7 +25,7 @@
 set OFFICIAL_BUILD=$(OFFICIAL_BUILD)
 nmake /nologo -f $(ProjectName).make clean
 nmake /nologo -f $(ProjectName).make</NMakeReBuildCommandLine>
-    <NMakeCleanCommandLine>%SystemDrive%\cygwin\bin\which.exe bash
+    <NMakeCleanCommandLine>%SystemDrive%\cygwin\bin\which.exe bash 2>nul
 if errorlevel 1 set PATH=%SystemDrive%\cygwin\bin;%PATH%
 
 set PATH=$(VSInstallDir)\VC\bin;%PATH%
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to