| Index: build/landmines.py
|
| diff --git a/build/landmines.py b/build/landmines.py
|
| index b62e75851cb4e74581440943a36dd9631fc772f1..f7dc07d1cb27d761a88c550f7c03ed922fbd1079 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)
|
|
|