summaryrefslogtreecommitdiffstats
path: root/build/gyp_chromium
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-03 01:11:10 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-03-03 01:11:10 +0000
commitba0c15246e040e97b8817cf44e55ff2b116631af (patch)
treed9cad285e4b78b526e59c06575ab4d5cede5ee7b /build/gyp_chromium
parent812ab9c324bd34ed4f1770fac071406e4b901cac (diff)
downloadchromium_src-ba0c15246e040e97b8817cf44e55ff2b116631af.zip
chromium_src-ba0c15246e040e97b8817cf44e55ff2b116631af.tar.gz
chromium_src-ba0c15246e040e97b8817cf44e55ff2b116631af.tar.bz2
Another attempt at getting free space on win bots
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@254428 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/gyp_chromium')
-rwxr-xr-xbuild/gyp_chromium6
1 files changed, 4 insertions, 2 deletions
diff --git a/build/gyp_chromium b/build/gyp_chromium
index a6300a3..8bfe62e 100755
--- a/build/gyp_chromium
+++ b/build/gyp_chromium
@@ -527,10 +527,12 @@ 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
- print('Using automatic toolchain in %s (%s edition), free space: %dM.' % (
+ out_dir = os.path.abspath(GetOutputDirectory())
+ print('Using automatic toolchain in %s (%s edition), '
+ 'free space in %s: %dM.' % (
toolchain,
'Pro' if version_is_pro else 'Express',
- GetFreeSpaceMBWindows(GetOutputDirectory())))
+ out_dir, GetFreeSpaceMBWindows(out_dir)))
# If CHROMIUM_GYP_SYNTAX_CHECK is set to 1, it will invoke gyp with --check
# to enfore syntax checking.