summaryrefslogtreecommitdiffstats
path: root/build/landmines.py
diff options
context:
space:
mode:
authorscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-17 23:50:02 +0000
committerscottmg@chromium.org <scottmg@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-01-17 23:50:02 +0000
commit68d8069189de214a44a59095bd8f46e51217921b (patch)
treeea16b7c89d1d30b6819f7f997ef05e989be6c13a /build/landmines.py
parent4344a3c6d9e58ab7b9ee613024186ef34f619c30 (diff)
downloadchromium_src-68d8069189de214a44a59095bd8f46e51217921b.zip
chromium_src-68d8069189de214a44a59095bd8f46e51217921b.tar.gz
chromium_src-68d8069189de214a44a59095bd8f46e51217921b.tar.bz2
Add help to landmines.py if it errors out with unexpected builder
R=iannucci@chromium.org Review URL: https://codereview.chromium.org/12025005 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177534 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 4cd5722..6c769e9 100755
--- a/build/landmines.py
+++ b/build/landmines.py
@@ -168,7 +168,7 @@ def get_target_build_dir(build_tool, target, is_iphone=False):
elif build_tool == 'scons':
ret = os.path.join(SRC_DIR, 'sconsbuild', target)
else:
- raise NotImplementedError()
+ raise NotImplementedError('Unexpected GYP_GENERATORS (%s)' % build_tool)
return os.path.abspath(ret)