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) |