Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1616)

Unified Diff: build/landmines.py

Issue 167943002: Don't raise for GYP_GENERATORS=dump_dependency_json, don't warn when using gyp_env (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/landmines.py
diff --git a/build/landmines.py b/build/landmines.py
index 7b4c5b5ecc623ff88b553f2ca5f8ffed4e8fa12f..857585adbfa6b84bf2ccf07d4c4e2aedd9f4592e 100755
--- a/build/landmines.py
+++ b/build/landmines.py
@@ -15,7 +15,6 @@ build is clobbered.
"""
import difflib
-import gyp_helper
import logging
import optparse
import os
@@ -113,7 +112,9 @@ def process_options():
def main():
landmine_scripts = process_options()
- gyp_helper.apply_chromium_gyp_env()
+
+ if landmine_utils.builder() == 'dump_dependency_json':
+ return 0
for target in ('Debug', 'Release', 'Debug_x64', 'Release_x64'):
landmines = []
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698