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

Unified Diff: scripts/slave/recipe_modules/chromium/config.py

Issue 2436723003: Never use the hermetic xcode toolchain for iOS recipes. (Closed)
Patch Set: Created 4 years, 2 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 | scripts/slave/recipe_modules/ios/api.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: scripts/slave/recipe_modules/chromium/config.py
diff --git a/scripts/slave/recipe_modules/chromium/config.py b/scripts/slave/recipe_modules/chromium/config.py
index 2c340bf30bd89db9b20eefd0bc299180a3a28485..624cbf39f0f52cbe0c74c0866774ec9b27e84468 100644
--- a/scripts/slave/recipe_modules/chromium/config.py
+++ b/scripts/slave/recipe_modules/chromium/config.py
@@ -63,7 +63,6 @@ def BaseConfig(HOST_PLATFORM, HOST_ARCH, HOST_BITS,
GYP_MSVS_VERSION = Single(basestring, required=False),
GYP_USE_SEPARATE_MSPDBSRV = Single(int, jsonish_fn=str, required=False),
LLVM_DOWNLOAD_GOLD_PLUGIN = Single(int, required=False),
- FORCE_MAC_TOOLCHAIN = Single(int, required=False),
),
env = ConfigGroup(
PATH = List(Path),
@@ -236,6 +235,10 @@ def ninja(c):
c.build_dir = c.CHECKOUT_PATH.join(out_path)
@config_ctx()
+def force_mac_toolchain_off(c):
+ c.env.FORCE_MAC_TOOLCHAIN = 0
+
+@config_ctx()
def msvs2013(c):
c.gn_args.append('visual_studio_version=2013')
c.gyp_env.GYP_MSVS_VERSION = '2013'
« no previous file with comments | « no previous file | scripts/slave/recipe_modules/ios/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698