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

Unified Diff: gypfiles/gyp_v8

Issue 2049683004: [gn] Skip gyp_v8 when gn should run (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Created 4 years, 6 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: gypfiles/gyp_v8
diff --git a/gypfiles/gyp_v8 b/gypfiles/gyp_v8
index e97507a360566db6664d49bb95a99f4eed93e33b..8be39d961536f186e7da7d3440dd28d5e27055a6 100755
--- a/gypfiles/gyp_v8
+++ b/gypfiles/gyp_v8
@@ -118,6 +118,10 @@ def run_gyp(args):
if __name__ == '__main__':
args = sys.argv[1:]
+ if int(os.environ.get('GYP_CHROMIUM_NO_ACTION', 0)):
+ print 'Skipping gyp_v8 due to GYP_CHROMIUM_NO_ACTION env var.'
+ sys.exit(0)
+
gyp_environment.set_environment()
# This could give false positives since it doesn't actually do real option
« 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