summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorscottmg <scottmg@chromium.org>2014-08-28 19:37:33 -0700
committerCommit bot <commit-bot@chromium.org>2014-08-29 02:38:49 +0000
commite72944be164918acb81933d0742e1369e51f2958 (patch)
tree05d3112394014eae779f7894a5d5a7562ca6dc01 /build
parentb6cfa6a1c84229eab303875c9ea64f817338ff8e (diff)
downloadchromium_src-e72944be164918acb81933d0742e1369e51f2958.zip
chromium_src-e72944be164918acb81933d0742e1369e51f2958.tar.gz
chromium_src-e72944be164918acb81933d0742e1369e51f2958.tar.bz2
Never clobber all of build in landmines
We don't support msvs any more anyway, and clobbering all of build/ is always a bad idea. (I'm not sure this'll fix anything, but maybe we'll get a better error.) R=kbr@chromium.org,iannucci@chromium.org BUG=408839 Review URL: https://codereview.chromium.org/519503002 Cr-Commit-Position: refs/heads/master@{#292554}
Diffstat (limited to 'build')
-rwxr-xr-xbuild/landmines.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/build/landmines.py b/build/landmines.py
index b62e758..f7dc07d 100755
--- a/build/landmines.py
+++ b/build/landmines.py
@@ -44,8 +44,6 @@ def get_build_dir(build_tool, is_iphone=False):
ret = os.path.join(SRC_DIR, 'xcodebuild')
elif build_tool in ['make', 'ninja', 'ninja-ios']: # TODO: Remove ninja-ios.
ret = os.path.join(SRC_DIR, os.environ.get('CHROMIUM_OUT_DIR', 'out'))
- elif build_tool in ['msvs', 'vs', 'ib']:
- ret = os.path.join(SRC_DIR, 'build')
else:
raise NotImplementedError('Unexpected GYP_GENERATORS (%s)' % build_tool)
return os.path.abspath(ret)