From d074d4795857bfae589dad7510c7cf1330a0e5a8 Mon Sep 17 00:00:00 2001 From: "iannucci@chromium.org" Date: Thu, 15 Nov 2012 01:52:07 +0000 Subject: 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 --- build/landmines.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build/landmines.py') 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) -- cgit v1.1