Changeset 86780 in webkit


Ignore:
Timestamp:
May 18, 2011 11:42:16 AM (13 years ago)
Author:
evan@chromium.org
Message:

2011-05-18 Evan Martin <evan@chromium.org>

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.
Location:
trunk/Source/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebCore/ChangeLog

    r86778 r86780  
     12011-05-18  Evan Martin  <evan@chromium.org>
     2
     3        Reviewed by Tony Chang.
     4
     5        [chromium] make action_derivedsourcesallinone.py quiet
     6        https://bugs.webkit.org/show_bug.cgi?id=61081
     7
     8        In gyp, it's the responsibility of the build system to print what actions are doing;
     9        for example, the compile command is generally silent, while the build system prints
     10        "compiling".
     11
     12        Make this program behave like a compiler: silent on success.
     13
     14        * WebCore.gyp/scripts/action_derivedsourcesallinone.py:
     15        delete a print statement.
     16
    1172011-05-18  David Kilzer  <ddkilzer@apple.com>
    218
  • trunk/Source/WebCore/WebCore.gyp/scripts/action_derivedsourcesallinone.py

    r58352 r86780  
    192192    filesMetaData = extractMetaData(idlFileNames)
    193193    for fileName in outputFileNames:
    194         print 'Generating derived sources list into %s...' % fileName
    195194        partition = outputFileNames.index(fileName)
    196195        fileContents = generateContent(filesMetaData, partition, len(outputFileNames))
Note: See TracChangeset for help on using the changeset viewer.