diff options
author | iannucci@chromium.org <iannucci@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-29 21:17:44 +0000 |
---|---|---|
committer | iannucci@chromium.org <iannucci@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-03-29 21:17:44 +0000 |
commit | 31e8a85a3ca9f76d10ddfa6920d89fc2abe47628 (patch) | |
tree | b401c7d46a46eacf597026aa1f9ff637cb91a320 | |
parent | 6f99d22158a48c7ab442b1f8a53cad83c5f6757e (diff) | |
download | chromium_src-31e8a85a3ca9f76d10ddfa6920d89fc2abe47628.zip chromium_src-31e8a85a3ca9f76d10ddfa6920d89fc2abe47628.tar.gz chromium_src-31e8a85a3ca9f76d10ddfa6920d89fc2abe47628.tar.bz2 |
Set landmines on x64 too.
For some reason I was only setting up landmines in the 32 bit output folders.
This will allow us to clobber on x64 builds too.
R=ilevy@chromium.org
BUG=
Review URL: https://codereview.chromium.org/13133005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@191446 0039d316-1c4b-4281-b951-d872f2087c98
-rwxr-xr-x | build/landmines.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/landmines.py b/build/landmines.py index d23049d..4a894b5 100755 --- a/build/landmines.py +++ b/build/landmines.py @@ -223,7 +223,7 @@ def main(): gyp_helper.apply_chromium_gyp_env() - for target in ('Debug', 'Release'): + for target in ('Debug', 'Release', 'Debug_x64', 'Release_x64'): set_up_landmines(target) return 0 |