summaryrefslogtreecommitdiffstats
path: root/build/landmines.py
diff options
context:
space:
mode:
authoriannucci@chromium.org <iannucci@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-15 01:52:07 +0000
committeriannucci@chromium.org <iannucci@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-11-15 01:52:07 +0000
commitd074d4795857bfae589dad7510c7cf1330a0e5a8 (patch)
tree196586f092a5659b866576640fe1ccaa76dccfe5 /build/landmines.py
parent107e33ab3982f3f7fb56a1a2ac2b0eec0b67091b (diff)
downloadchromium_src-d074d4795857bfae589dad7510c7cf1330a0e5a8.zip
chromium_src-d074d4795857bfae589dad7510c7cf1330a0e5a8.tar.gz
chromium_src-d074d4795857bfae589dad7510c7cf1330a0e5a8.tar.bz2
Fix NotImplementedError for vs and ib build-tools
R=nsylvain@chromium.org BUG= Review URL: https://chromiumcodereview.appspot.com/11362244 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@167818 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/landmines.py')
-rwxr-xr-xbuild/landmines.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/landmines.py b/build/landmines.py
index 36253e9..321c596 100755
--- a/build/landmines.py
+++ b/build/landmines.py
@@ -158,7 +158,7 @@ def get_target_build_dir(build_tool, target, is_iphone=False):
ret = os.path.join(SRC_DIR, 'out', target)
elif build_tool == 'ninja':
ret = os.path.join(SRC_DIR, 'out', target)
- elif build_tool == 'msvs':
+ elif build_tool in ['msvs', 'vs', 'ib']:
ret = os.path.join(SRC_DIR, 'build', target)
elif build_tool == 'scons':
ret = os.path.join(SRC_DIR, 'sconsbuild', target)