diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-04 11:05:46 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-04 11:05:46 +0000 |
commit | 3d7ec2f804af7c9c757782ff72d98591a873b533 (patch) | |
tree | 37b5a92028e9700acf7fb08e4bceb858eee1d66b /build/gyp_chromium | |
parent | cfeb6eedca30160b15d9a3b61f2e2b3ef1bb4245 (diff) | |
download | chromium_src-3d7ec2f804af7c9c757782ff72d98591a873b533.zip chromium_src-3d7ec2f804af7c9c757782ff72d98591a873b533.tar.gz chromium_src-3d7ec2f804af7c9c757782ff72d98591a873b533.tar.bz2 |
Always process landmines, even if GYP_CHROMIUM_NO_ACTION is set
R=machenbach@chromium.org
BUG=none
Review URL: https://codereview.chromium.org/314933004
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@274762 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build/gyp_chromium')
-rwxr-xr-x | build/gyp_chromium | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/build/gyp_chromium b/build/gyp_chromium index 26028dc..48c7389 100755 --- a/build/gyp_chromium +++ b/build/gyp_chromium @@ -190,6 +190,10 @@ if __name__ == '__main__': args = sys.argv[1:] if int(os.environ.get('GYP_CHROMIUM_NO_ACTION', 0)): + # Check for landmines (reasons to clobber the build) in any case. + print 'Running build/landmines.py...' + subprocess.check_call( + [sys.executable, os.path.join(script_dir, 'landmines.py')]) print 'Skipping gyp_chromium due to GYP_CHROMIUM_NO_ACTION env var.' sys.exit(0) |