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

Unified Diff: build/gyp_chromium

Issue 153073004: Move landmines into gyp_chromium (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 10 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
« no previous file with comments | « build/get_landmines.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/gyp_chromium
diff --git a/build/gyp_chromium b/build/gyp_chromium
index 30f1711c3764d6857a37001b7a3005d2998da772..9353752f6514d055058fd09507b688e067a0979f 100755
--- a/build/gyp_chromium
+++ b/build/gyp_chromium
@@ -488,6 +488,13 @@ if __name__ == '__main__':
# Off we go...
gyp_rc = gyp.main(args)
+ # Check for landmines (reasons to clobber the build). This must be run here,
+ # rather than a separate runhooks step so that any environment modifications
+ # from above are picked up.
+ print 'Running build/landmines.py...'
+ subprocess.check_call(
+ [sys.executable, os.path.join(script_dir, 'landmines.py')])
iannucci 2014/02/05 23:47:50 Presumably 'args' doesn't contain any relevant goo
scottmg 2014/02/05 23:55:17 Hm, good question. I think -Dgyp_output_dir is the
+
if vs2013_runtime_dll_dirs:
CopyVsRuntimeDlls(GetOutputDirectory(), vs2013_runtime_dll_dirs)
« no previous file with comments | « build/get_landmines.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698