diff options
author | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-03 20:16:28 +0000 |
---|---|---|
committer | scottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-03-03 20:16:28 +0000 |
commit | 1d3ff4f926b43d8693a69f1873abcdb23fe9e5df (patch) | |
tree | a7f38dea67b35479227f1a9326183957c9b043bd /build/gyp_chromium | |
parent | 999261d17eb407a53a6727cb5166adc3c61578e2 (diff) | |
download | chromium_src-1d3ff4f926b43d8693a69f1873abcdb23fe9e5df.zip chromium_src-1d3ff4f926b43d8693a69f1873abcdb23fe9e5df.tar.gz chromium_src-1d3ff4f926b43d8693a69f1873abcdb23fe9e5df.tar.bz2 |
Revert 254428 "Another attempt at getting free space on win bots"
Not working for some reason, and makes the output confusing, so revert
for now.
> Another attempt at getting free space on win bots
TBR=scottmg@chromium.org
Review URL: https://codereview.chromium.org/185393013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254545 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/gyp_chromium')
-rwxr-xr-x | build/gyp_chromium | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/build/gyp_chromium b/build/gyp_chromium index 8bfe62e..a6300a3 100755 --- a/build/gyp_chromium +++ b/build/gyp_chromium @@ -527,12 +527,10 @@ if __name__ == '__main__': os.environ['PATH'] = runtime_path + ';' + os.environ['PATH'] # TODO(scottmg): Temporarily add free space print to try to see how close # we're getting to failures on windows bots. http://crbug.com/348350 - out_dir = os.path.abspath(GetOutputDirectory()) - print('Using automatic toolchain in %s (%s edition), ' - 'free space in %s: %dM.' % ( + print('Using automatic toolchain in %s (%s edition), free space: %dM.' % ( toolchain, 'Pro' if version_is_pro else 'Express', - out_dir, GetFreeSpaceMBWindows(out_dir))) + GetFreeSpaceMBWindows(GetOutputDirectory()))) # If CHROMIUM_GYP_SYNTAX_CHECK is set to 1, it will invoke gyp with --check # to enfore syntax checking. |