| Index: build_overrides/build.gni
|
| diff --git a/build_overrides/build.gni b/build_overrides/build.gni
|
| index 122ec63f7519397420989e597076e8c32b4f545e..c607f818b7ea5ecb5621cb5acfa440ab7c52b653 100644
|
| --- a/build_overrides/build.gni
|
| +++ b/build_overrides/build.gni
|
| @@ -37,4 +37,22 @@ declare_args() {
|
| # due to 4GiB file size limit, see https://crbug.com/648948.
|
| # Set this flag to true to skip the assertion.
|
| ignore_elf32_limitations = false
|
| +
|
| + # Use the system install of Xcode for tools like ibtool, libtool, etc.
|
| + # This does not affect the compiler. When this variable is false, targets will
|
| + # 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 = ""
|
| +}
|
| +
|
| +if (use_system_xcode == "") {
|
| + if (target_os == "mac") {
|
| + _result =
|
| + exec_script("//build/mac/should_use_hermetic_xcode.py", [], "value")
|
| + use_system_xcode = _result == 0
|
| + }
|
| + if (target_os == "ios") {
|
| + use_system_xcode = true
|
| + }
|
| }
|
|
|