* Enable workaround for building Android with C++14. * Disable build hooks for WebRTC on Android. Change log:d323a482ee..7114a66134Full diff:d323a482ee..7114a66134Changed dependencies: * src/base:66d3c08e82..0b41aca75a* src/build:2a5e6515a5..a2a451d3c0* src/buildtools:ceb050498e..5af0a3a8b8* src/ios:2085f316c1..0a0ac63bd3* src/testing:3127a16731..8a25f55d8b* src/third_party:b4122f732f..8c0e65fa05* src/third_party/boringssl/src: https://boringssl.googlesource.com/boringssl.git/+log/f4ecc84644..ae9f0616c5 * src/third_party/catapult:d27175a044..f8acf3b642* src/third_party/depot_tools:6d0d04458d..e081cbe5aa* src/third_party/icu:98218d1e92..08cb956852* src/third_party/libvpx/source/libvpx:cbb83ba4aa..6b9c691daf* src/tools:5730fb2d3f..3e167a7bd3DEPS diff:d323a482ee..7114a66134/DEPS No update to Clang. TBR=marpan@webrtc.org, BUG=webrtc:8148 CQ_INCLUDE_TRYBOTS=master.internal.tryserver.corp.webrtc:linux_internal Review-Url: https://codereview.webrtc.org/3003393002 Cr-Commit-Position: refs/heads/master@{#19517}
48 lines
1.9 KiB
Plaintext
48 lines
1.9 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 = [ "//webrtc/*" ]
|
|
|
|
# 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
|
|
|
|
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.11"
|
|
|
|
# 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
|
|
}
|