Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(15)

Unified Diff: build/landmines.py

Issue 26718002: Remove references to sconsbuild (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: build/landmines.py
diff --git a/build/landmines.py b/build/landmines.py
index 91b4fa9e60d8c6ab9490e2205af8524cbd97b915..7b4c5b5ecc623ff88b553f2ca5f8ffed4e8fa12f 100755
--- a/build/landmines.py
+++ b/build/landmines.py
@@ -47,8 +47,6 @@ def get_target_build_dir(build_tool, target, is_iphone=False):
ret = os.path.join(SRC_DIR, 'out', target)
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)
else:
raise NotImplementedError('Unexpected GYP_GENERATORS (%s)' % build_tool)
return os.path.abspath(ret)

Powered by Google App Engine
This is Rietveld 408576698