diff options
author | newt@chromium.org <newt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-12 01:13:21 +0000 |
---|---|---|
committer | newt@chromium.org <newt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-04-12 01:13:21 +0000 |
commit | a403a3d5aead637939190b8361189877f14fc746 (patch) | |
tree | 0560ba8f013c37bfb7abb1b877716b151f74a017 /build | |
parent | 53dbdbc103a0a3bf40b62b43643afb54afb627bd (diff) | |
download | chromium_src-a403a3d5aead637939190b8361189877f14fc746.zip chromium_src-a403a3d5aead637939190b8361189877f14fc746.tar.gz chromium_src-a403a3d5aead637939190b8361189877f14fc746.tar.bz2 |
Make landmines.py ignore eclipse gyp generator.
The eclipse gyp generator is used to generate eclipse project files, not
to actually build anything. Landmines should return early if the gyp
generator is eclipse rather than failing with the error "Unexpected
GYP_GENERATORS (eclipse)"
Review URL: https://codereview.chromium.org/236063002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@263438 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-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 857585a..70e5a4c 100755 --- a/build/landmines.py +++ b/build/landmines.py @@ -113,7 +113,7 @@ def process_options(): def main(): landmine_scripts = process_options() - if landmine_utils.builder() == 'dump_dependency_json': + if landmine_utils.builder() in ('dump_dependency_json', 'eclipse'): return 0 for target in ('Debug', 'Release', 'Debug_x64', 'Release_x64'): |