summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authornewt@chromium.org <newt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-12 01:13:21 +0000
committernewt@chromium.org <newt@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2014-04-12 01:13:21 +0000
commita403a3d5aead637939190b8361189877f14fc746 (patch)
tree0560ba8f013c37bfb7abb1b877716b151f74a017 /build
parent53dbdbc103a0a3bf40b62b43643afb54afb627bd (diff)
downloadchromium_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-xbuild/landmines.py2
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'):