Title: [86780] trunk/Source/WebCore
Revision
86780
Author
[email protected]
Date
2011-05-18 11:42:16 -0700 (Wed, 18 May 2011)

Log Message

2011-05-18  Evan Martin  <[email protected]>

        Reviewed by Tony Chang.

        [chromium] make action_derivedsourcesallinone.py quiet
        https://bugs.webkit.org/show_bug.cgi?id=61081

        In gyp, it's the responsibility of the build system to print what actions are doing;
        for example, the compile command is generally silent, while the build system prints
        "compiling".

        Make this program behave like a compiler: silent on success.

        * WebCore.gyp/scripts/action_derivedsourcesallinone.py:
        delete a print statement.

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (86779 => 86780)


--- trunk/Source/WebCore/ChangeLog	2011-05-18 18:28:38 UTC (rev 86779)
+++ trunk/Source/WebCore/ChangeLog	2011-05-18 18:42:16 UTC (rev 86780)
@@ -1,3 +1,19 @@
+2011-05-18  Evan Martin  <[email protected]>
+
+        Reviewed by Tony Chang.
+
+        [chromium] make action_derivedsourcesallinone.py quiet
+        https://bugs.webkit.org/show_bug.cgi?id=61081
+
+        In gyp, it's the responsibility of the build system to print what actions are doing;
+        for example, the compile command is generally silent, while the build system prints
+        "compiling".
+
+        Make this program behave like a compiler: silent on success.
+
+        * WebCore.gyp/scripts/action_derivedsourcesallinone.py:
+        delete a print statement.
+
 2011-05-18  David Kilzer  <[email protected]>
 
         <http://webkit.org/b/61078> Use toHTTPPipeliningPriority() in initializeMaximumHTTPConnectionCountPerHost()

Modified: trunk/Source/WebCore/WebCore.gyp/scripts/action_derivedsourcesallinone.py (86779 => 86780)


--- trunk/Source/WebCore/WebCore.gyp/scripts/action_derivedsourcesallinone.py	2011-05-18 18:28:38 UTC (rev 86779)
+++ trunk/Source/WebCore/WebCore.gyp/scripts/action_derivedsourcesallinone.py	2011-05-18 18:42:16 UTC (rev 86780)
@@ -191,7 +191,6 @@
 
     filesMetaData = extractMetaData(idlFileNames)
     for fileName in outputFileNames:
-        print 'Generating derived sources list into %s...' % fileName
         partition = outputFileNames.index(fileName)
         fileContents = generateContent(filesMetaData, partition, len(outputFileNames))
         writeContent(fileContents, fileName)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to