Oleh Prypin ceec4d0a97 Roll chromium_revision 5df4e1bfe7..5bd5874cbf (518692:519731) + iOS fix
Pin iOS version to 9.0, to avoid the upstream change to 10.0

Change log: 5df4e1bfe7..5bd5874cbf
Full diff: 5df4e1bfe7..5bd5874cbf

Changed dependencies:
* src/base: 4843599735..fc034c4143
* src/build: 99653454ee..f0766940d5
* src/ios: 7287c9baeb..49bd74cee7
* src/testing: 60c665fffe..373652d16f
* src/third_party: 6a94dad699..34c5bb433a
* src/third_party/catapult: https://chromium.googlesource.com/catapult.git/+log/2ffb57b102..230a61040f
* src/third_party/depot_tools: 7d9d9233cb..1b30125fbc
* src/third_party/ffmpeg: abead8cbcf..9cb03e5705
* src/third_party/icu: 5ed26985c0..741688ebf3
* src/third_party/libvpx/source/libvpx: ea14a1a965..cbe62b9c2d
* src/tools: 4e917ad6ac..8d915c324e
DEPS diff: 5df4e1bfe7..5bd5874cbf/DEPS

No update to Clang.

TBR=marpan@webrtc.org
CQ_INCLUDE_TRYBOTS=master.internal.tryserver.corp.webrtc:linux_internal

Bug: webrtc:8570, webrtc:8580
Change-Id: I36440e0e1a3b3daac767e196acd5bfadb4eb6d9c
Reviewed-on: https://webrtc-review.googlesource.com/26026
Commit-Queue: Oleh Prypin <oprypin@webrtc.org>
Reviewed-by: Oleh Prypin <oprypin@webrtc.org>
Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#20919}
2017-11-28 18:42:38 +00:00

78 lines
2.6 KiB
Plaintext

# Copyright (c) 2015 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.
import("//build/dotfile_settings.gni")
# The location of the build configuration file.
buildconfig = "//build/config/BUILDCONFIG.gn"
# The secondary source root is a parallel directory tree where
# GN build files are placed when they can not be placed directly
# in the source tree, e.g. for third party source trees.
secondary_source = "//build/secondary/"
# These are the targets to check headers for by default. The files in targets
# matching these patterns (see "gn help label_pattern" for format) will have
# their includes checked for proper dependencies when you run either
# "gn check" or "gn gen --check".
check_targets = [
"//api/*",
"//audio/*",
"//backup/*",
"//call/*",
"//common_audio/*",
"//common_video/*",
"//examples/*",
"//logging/*",
"//media/*",
"//modules/*",
"//ortc/*",
"//p2p/*",
"//pc/*",
"//rtc_base/*",
"//rtc_tools/*",
"//sdk/*",
"//stats/*",
"//system_wrappers/*",
"//test/*",
"//video/*",
"//voice_engine/*",
]
# These are the list of GN files that run exec_script. This whitelist exists
# to force additional review for new uses of exec_script, which is strongly
# discouraged except for gypi_to_gn calls.
exec_script_whitelist = build_dotfile_settings.exec_script_whitelist +
[ "//build_overrides/build.gni" ]
default_args = {
# Webrtc does not support component builds because we are not using the
# template "component" but we rely directly on "rtc_static_library" and
# "rtc_shared_library". This means that we cannot use the chromium default
# value for this argument.
# This also means that the user can override this value using --args or
# the args.gn file but this setting will be ignored because we don't support
# component builds.
is_component_build = false
mac_sdk_min = "10.12"
# http://bugs.webrtc.org/8570
ios_deployment_target = "9.0"
# WebRTC does not want to switch to C++14 yet.
use_cxx11 = true
# WebRTC relies on Chromium's Android test infrastructure.
use_cxx11_on_android = false
# WebRTC does not provide the gflags dependency. Because libyuv uses it only
# for unittests, it can be disabled (see third_party/libyuv/BUILD.gn)
libyuv_use_gflags = false
}