Change log:5177dd5686..4d95e6c77bFull diff:5177dd5686..4d95e6c77bChanged dependencies * src/base:12aafbd23b..2df7267880* src/build:45f27c5e79..a03951acb9* src/ios:6d0f4efc06..9200aad36b* src/testing:a67f60963b..502600d41a* src/third_party:b81d3c846f..e0df6e10ad* src/third_party/catapult: https://chromium.googlesource.com/catapult.git/+log/03e7ff4035..2ad47493f8 * src/third_party/depot_tools:a85d58e50e..37e562110f* src/tools:d018c278d3..050a4a5e26DEPS diff:5177dd5686..4d95e6c77b/DEPS Clang version changed a6ae333a0c23fc9b0783ca45e2676abac00c6723:f7f1abdb8893af4a606ca1a8f5347a426e9c7f9e Details:5177dd5686..4d95e6c77b/tools/clang/scripts/update.py TBR=chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com, BUG=None Change-Id: I55bb359cd525252ea0c46035d0f27447cd7fe010 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/176821 Reviewed-by: Andrey Logvin <landrey@webrtc.org> Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Reviewed-by: Autoroller <chromium-webrtc-autoroll@webrtc-ci.iam.gserviceaccount.com> Commit-Queue: Andrey Logvin <landrey@webrtc.org> Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org> Cr-Commit-Position: refs/heads/master@{#31477}
49 lines
2.1 KiB
Plaintext
49 lines
2.1 KiB
Plaintext
# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
# Some non-Chromium builds don't support building java targets.
|
|
enable_java_templates = true
|
|
|
|
# Some non-Chromium builds don't use Chromium's third_party/binutils.
|
|
linux_use_bundled_binutils_override = true
|
|
|
|
# Don't set this variable to true when building stadalone WebRTC, it is
|
|
# only needed to support both WebRTC standalone and Chromium builds.
|
|
build_with_chromium = false
|
|
|
|
# WebRTC checks out google_benchmark by default since it is always used.
|
|
checkout_google_benchmark = true
|
|
|
|
# Use our own suppressions files.
|
|
asan_suppressions_file = "//build/sanitizers/asan_suppressions.cc"
|
|
lsan_suppressions_file = "//tools_webrtc/sanitizers/lsan_suppressions_webrtc.cc"
|
|
tsan_suppressions_file = "//tools_webrtc/sanitizers/tsan_suppressions_webrtc.cc"
|
|
msan_blacklist_path =
|
|
rebase_path("//tools_webrtc/msan/blacklist.txt", root_build_dir)
|
|
ubsan_blacklist_path =
|
|
rebase_path("//tools_webrtc/ubsan/blacklist.txt", root_build_dir)
|
|
ubsan_vptr_blacklist_path =
|
|
rebase_path("//tools_webrtc/ubsan/vptr_blacklist.txt", root_build_dir)
|
|
|
|
# For Chromium, Android 32-bit non-component, non-clang builds hit a 4GiB size
|
|
# limit, making them requiring symbol_level=2. WebRTC doesn't hit that problem
|
|
# so we just ignore that assert. See https://crbug.com/648948 for more info.
|
|
ignore_elf32_limitations = true
|
|
|
|
# Use bundled hermetic Xcode installation maintainted by Chromium,
|
|
# except for local iOS builds where it's unsupported.
|
|
if (host_os == "mac") {
|
|
_result = exec_script("//build/mac/should_use_hermetic_xcode.py",
|
|
[ target_os ],
|
|
"value")
|
|
assert(_result != 2,
|
|
"Do not allow building targets with the default " +
|
|
"hermetic toolchain if the minimum OS version is not met.")
|
|
use_system_xcode = _result == 0
|
|
}
|