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

Unified Diff: build/mac/should_use_hermetic_xcode.py

Issue 2445993004: Turn on hermetic toolchain for all corp machines. (Closed)
Patch Set: Don't use hermetic toolchain on iOS. Created 4 years, 1 month 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 | « .gn ('k') | build/mac_toolchain.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/mac/should_use_hermetic_xcode.py
diff --git a/build/mac/should_use_hermetic_xcode.py b/build/mac/should_use_hermetic_xcode.py
new file mode 100755
index 0000000000000000000000000000000000000000..14ddfacdc5020b780334eb838ebe9bfddbd06314
--- /dev/null
+++ b/build/mac/should_use_hermetic_xcode.py
@@ -0,0 +1,26 @@
+#!/usr/bin/env python
+# Copyright 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Prints "1" if Chrome targets should be built with hermetic xcode. Otherwise
+prints "0"."""
+
+import os
+import sys
+
+
+def _IsCorpMachine():
+ return os.path.isdir('/Library/GoogleCorpSupport/')
+
+
+def main():
+ if os.environ.get('FORCE_MAC_TOOLCHAIN') or _IsCorpMachine():
+ return "1"
+ else:
+ return "0"
+
+
+if __name__ == '__main__':
+ print main()
+ sys.exit(0)
« no previous file with comments | « .gn ('k') | build/mac_toolchain.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698