Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(516)

Unified Diff: utils/compiler/buildbot.py

Issue 10837269: Remove disfunctional "always clobber" from Windows build. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/compiler/buildbot.py
===================================================================
--- utils/compiler/buildbot.py (revision 10771)
+++ utils/compiler/buildbot.py (working copy)
@@ -142,17 +142,6 @@
- mode: either 'debug' or 'release'
- system: either 'linux', 'mac', or 'win7'
"""
- # TODO(efortuna): Currently we always clobber Windows builds. The VM
- # team thinks there's a problem with dependency tracking on Windows that
- # is leading to occasional build failures. Remove when this gyp issue has
- # been ironed out.
- if system == 'win7':
- for build in ['Release_', 'Debug_']:
- for arch in ['ia32', 'x64']:
- outdir = build + arch
- shutil.rmtree(outdir, ignore_errors=True)
- shutil.rmtree('runtime/%s' % outdir, ignore_errors=True)
-
os.chdir(DART_PATH)
args = [sys.executable, './tools/build.py', '--mode=' + mode, 'create_sdk']
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698