Commit 2803b8ef authored by erikchen's avatar erikchen Committed by Commit bot

Use the hermetic toolchain if FORCE_MAC_TOOLCHAIN is set.

FORCE_MAC_TOOLCHAIN is set for all macs in the infra fleet, so this CL turns on
hermetic xcode + GN for all machines.

BUG=626093

Review-Url: https://codereview.chromium.org/2431523002
Cr-Commit-Position: refs/heads/master@{#427110}
parent 4a593833
......@@ -46,7 +46,12 @@ declare_args() {
# instead use a hermetic install of Xcode. [The hermetic install can be
# obtained with gclient sync after setting the environment variable
# FORCE_MAC_TOOLCHAIN].
use_system_xcode = true
use_system_xcode = ""
}
if ((is_mac || is_ios) && use_system_xcode == "") {
_result = getenv("FORCE_MAC_TOOLCHAIN")
use_system_xcode = _result == ""
}
# The path to the hermetic install of Xcode. Only relevant when
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment