blob: de2655819c2ad4f2ae19471e3d35cb15869da5a4 [file] [log] [blame]
Henrik Kjellander0be9df42016-02-23 07:18:43 +01001# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
2#
3# Use of this source code is governed by a BSD-style license
4# that can be found in the LICENSE file in the root of the source
5# tree. An additional intellectual property rights grant can be found
6# in the file PATENTS. All contributing project authors may
7# be found in the AUTHORS file in the root of the source tree.
8
9# See https://bugs.chromium.org/p/webrtc/issues/detail?id=5453.
kjellander10cd6ff2016-02-26 03:21:14 -080010# Some WebRTC targets require the 10.7 deployment version of the Mac SDK and a
11# 10.11 min SDK but those targets are only used in non-Chromium builds. We can
12# remove this when Chromium drops 10.6 support and also requires 10.7.
13mac_sdk_min_build_override = "10.11"
kthelgasoncc2d1c62016-11-09 07:44:27 -080014mac_deployment_target_build_override = "10.9"
kjellandere3897ad2016-04-28 02:51:02 -070015
kjellander68208892016-06-16 23:29:30 -070016# Some non-Chromium builds don't support building java targets.
17enable_java_templates = true
18
ehmaldonado70279212016-08-31 01:59:54 -070019# Some non-Chromium builds don't use Chromium's third_party/binutils.
20linux_use_bundled_binutils_override = true
21
kjellandere3897ad2016-04-28 02:51:02 -070022# Variable that can be used to support multiple build scenarios, like having
23# Chromium specific targets in a client project's GN file etc.
24build_with_chromium = false
ehmaldonado2df32a32016-08-24 07:46:11 -070025
26# Use our own suppressions files.
27asan_suppressions_file = "//build/sanitizers/asan_suppressions.cc"
28lsan_suppressions_file = "//webrtc/build/sanitizers/lsan_suppressions_webrtc.cc"
29tsan_suppressions_file = "//webrtc/build/sanitizers/tsan_suppressions_webrtc.cc"
ehmaldonado08c047e2016-08-31 01:55:04 -070030
31# Android lint suppressions file
32lint_suppressions_file = "//webrtc/build/android/suppressions.xml"
kjellanderb1125682016-10-26 13:38:03 -070033
34# For Chromium, Android 32-bit non-component, non-clang builds hit a 4GiB size
35# limit, making them requiring symbol_level=2. WebRTC doesn't hit that problem
36# so we just ignore that assert. See https://crbug.com/648948 for more info.
37ignore_elf32_limitations = true
kjellander218f4362016-11-13 23:54:24 -080038
39# Use system Xcode installation instead of the Chromium bundled Mac toolchain,
40# since it contains only SDK 10.11, not 10.12 which WebRTC needs.
41use_system_xcode = true