mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 16:56:55 +08:00
First roll in almost a year, android device tests fail but that needs to be fixed separately. Change log:64c8c30faa..eaac4f14d9Full diff:64c8c30faa..eaac4f14d9Changed dependencies: * src/base:e096814b04..4045370905* src/build:2d2f9f2b85..fd86d60f33* src/buildtools:6302c11756..37dc929ecb* src/buildtools/third_party/libc++/trunk:d9040c75cf..79a2e924d9* src/buildtools/third_party/libc++abi/trunk:196ba1aaa8..7d5c92f6cf* src/buildtools/third_party/libunwind/trunk:d999d54f4b..d7b11d7989* src/ios:60ef55beac..57422bee2c* src/testing:40b4417105..c4bd9205ee* src/third_party:24ccdf9b75..f7d9d7e9dd* src/third_party/android_ndk: https://chromium.googlesource.com/android_ndk.git/+log/27c0a8d090..401019bf85 * src/third_party/auto/src:f40317ae21..00cb81ed09* src/third_party/boringssl/src: https://boringssl.googlesource.com/boringssl.git/+log/1607f54fed..a10017c548 * src/third_party/catapult: https://chromium.googlesource.com/catapult.git/+log/ccc9dd2835..5cb305306a * src/third_party/depot_tools:91bb7506bd..a806594b95* src/third_party/freetype/src:26e2a89598..86b9c9347f* src/third_party/googletest/src:4fe018038f..4ec4cd23f4* src/third_party/harfbuzz-ng/src:c39ab82c90..cc9bb29491* src/third_party/icu:c2a4cae149..2a822c5626* src/third_party/libjpeg_turbo:d5148db386..ad8b3b0f84* src/third_party/libunwindstack:11659d420a..b34a0059a6* src/third_party/lss: https://chromium.googlesource.com/linux-syscall-support.git/+log/29f7c7e018..92a65a8f5d * src/third_party/nasm:19f3fad68d..e9be5fd6d7* src/third_party/robolectric/robolectric:2f3e0a3ac4..123d61524d* src/tools:1bb7c085e6..4f73c6f51d* src/tools/swarming_client:d46ea7635f..a32a1607f6DEPS diff:64c8c30faa..eaac4f14d9/DEPS Clang version changed llvmorg-12-init-10666-gc9f69ee7:llvmorg-13-init-15163-g98033fdc Details:64c8c30faa..eaac4f14d9/tools/clang/scripts/update.py TBR=fbarchard@chromium.org BUG=libyuv:891 No-Try: True Change-Id: I17c9ae10b1ba1c9b39810f390bbddafa149e1512 Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/3035171 Reviewed-by: Mirko Bonadei <mbonadei@chromium.org> Commit-Queue: Mirko Bonadei <mbonadei@chromium.org>
41 lines
1.6 KiB
Plaintext
41 lines
1.6 KiB
Plaintext
# Copyright 2015 The LibYuv 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 python interpreter to use by default. On Windows, this will look
|
|
# for python3.exe and python3.bat.
|
|
script_executable = "python3"
|
|
|
|
# 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 = [ "//libyuv/*" ]
|
|
|
|
# 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 = {
|
|
mac_sdk_min = "10.12"
|
|
|
|
# https://bugs.chromium.org/p/libyuv/issues/detail?id=826
|
|
ios_deployment_target = "10.0"
|
|
}
|