2016-02-23 07:18:43 +01:00
|
|
|
# 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.
|
|
|
|
|
|
2016-06-16 23:29:30 -07:00
|
|
|
# Some non-Chromium builds don't support building java targets.
|
|
|
|
|
enable_java_templates = true
|
|
|
|
|
|
2016-08-31 01:59:54 -07:00
|
|
|
# Some non-Chromium builds don't use Chromium's third_party/binutils.
|
|
|
|
|
linux_use_bundled_binutils_override = true
|
|
|
|
|
|
2018-11-14 09:52:53 +01:00
|
|
|
# Don't set this variable to true when building stadalone WebRTC, it is
|
|
|
|
|
# only needed to support both WebRTC standalone and Chromium builds.
|
2016-04-28 02:51:02 -07:00
|
|
|
build_with_chromium = false
|
2016-08-24 07:46:11 -07:00
|
|
|
|
|
|
|
|
# Use our own suppressions files.
|
|
|
|
|
asan_suppressions_file = "//build/sanitizers/asan_suppressions.cc"
|
2017-05-09 08:30:10 +02:00
|
|
|
lsan_suppressions_file = "//tools_webrtc/sanitizers/lsan_suppressions_webrtc.cc"
|
|
|
|
|
tsan_suppressions_file = "//tools_webrtc/sanitizers/tsan_suppressions_webrtc.cc"
|
2016-12-20 08:04:25 +01:00
|
|
|
msan_blacklist_path =
|
2017-05-09 08:30:10 +02:00
|
|
|
rebase_path("//tools_webrtc/msan/blacklist.txt", root_build_dir)
|
2016-12-20 08:04:25 +01:00
|
|
|
ubsan_blacklist_path =
|
2017-05-09 08:30:10 +02:00
|
|
|
rebase_path("//tools_webrtc/ubsan/blacklist.txt", root_build_dir)
|
2016-12-20 08:04:25 +01:00
|
|
|
ubsan_vptr_blacklist_path =
|
2017-05-09 08:30:10 +02:00
|
|
|
rebase_path("//tools_webrtc/ubsan/vptr_blacklist.txt", root_build_dir)
|
2016-08-31 01:55:04 -07:00
|
|
|
|
|
|
|
|
# Android lint suppressions file
|
2017-05-09 08:30:10 +02:00
|
|
|
lint_suppressions_file = "//tools_webrtc/android/suppressions.xml"
|
2016-10-26 13:38:03 -07:00
|
|
|
|
|
|
|
|
# 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
|
2016-11-13 23:54:24 -08:00
|
|
|
|
2017-09-11 11:38:48 -07:00
|
|
|
# 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")
|
2019-03-14 16:37:19 +01:00
|
|
|
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
|
2017-09-11 11:38:48 -07:00
|
|
|
}
|