diff options
author | scottmg <scottmg@chromium.org> | 2014-08-28 19:37:33 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-29 02:38:49 +0000 |
commit | e72944be164918acb81933d0742e1369e51f2958 (patch) | |
tree | 05d3112394014eae779f7894a5d5a7562ca6dc01 /build | |
parent | b6cfa6a1c84229eab303875c9ea64f817338ff8e (diff) | |
download | chromium_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-x | build/landmines.py | 2 |
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) |