From 841a85b19cc10d719505ea2c7e0e49bae843db6e Mon Sep 17 00:00:00 2001 From: jbudorick Date: Wed, 23 Nov 2016 13:33:28 -0800 Subject: Roll pdfium/build/ dc8cb2c8b..acf607f7d (79 commits). https://chromium.googlesource.com/chromium/src/build.git/+log/dc8cb2c8bcc3..acf607f7d345 R=thestig@chromium.org,dsinclair@chromium.org BUG=pdfium:415 Review-Url: https://codereview.chromium.org/2527613003 --- build_overrides/build.gni | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'build_overrides') diff --git a/build_overrides/build.gni b/build_overrides/build.gni index a9e8000a85..61d7814005 100644 --- a/build_overrides/build.gni +++ b/build_overrides/build.gni @@ -40,4 +40,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 + } } -- cgit v1.2.3