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

Unified Diff: build_gyp/gyp_pdfium

Issue 1915953002: Skip GYP if GYP_PDFIUM_NO_ACTION set. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 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_gyp/gyp_pdfium
diff --git a/build_gyp/gyp_pdfium b/build_gyp/gyp_pdfium
index c65337861ee1cdab73ada6b5f7ff19cfca13e09a..c79593b9907629cb15d698db916afcbb4e31552e 100755
--- a/build_gyp/gyp_pdfium
+++ b/build_gyp/gyp_pdfium
@@ -26,6 +26,10 @@ def run_gyp(args):
def main():
+ if int(os.environ.get('GYP_PDFIUM_NO_ACTION', 0)):
+ print 'Skipping gyp_pdfium due to GYP_PDFIUM_NO_ACTION env var.'
+ sys.exit(0)
+
args = sys.argv[1:]
args.append(os.path.join(pdfium_root, 'build_gyp', 'all.gyp'))
« 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