mirror of
https://chromium.googlesource.com/libyuv/libyuv
synced 2025-12-06 08:46:47 +08:00
Change log:829c6df33d..7d683aeda8Full diff:829c6df33d..7d683aeda8Changed dependencies: * src/base:e9e6396224..417936cae4* src/build:dcea344303..806b01ed96* src/buildtools:075dd7e228..b79692f320* src/buildtools/clang_format/script:99876cacf7..8b525d2747* src/buildtools/third_party/libc++/trunk:79a2e924d9..a4dc7f17ca* src/buildtools/third_party/libc++abi/trunk:665b74f7d1..5c3e02e92a* src/buildtools/third_party/libunwind/trunk:f51a154281..7ff728a977* src/ios:81826d980c..625640808c* src/testing:f4e42be132..154d994baf* src/third_party:42c249feeb..ea1616408d* src/third_party/android_ndk: https://chromium.googlesource.com/android_ndk.git/+log/401019bf85..8388a2be54 * src/third_party/auto/src:fe67d853d6..14413dc9c7* src/third_party/boringssl/src: https://boringssl.googlesource.com/boringssl.git/+log/3a667d10e9..04989786e9 * src/third_party/catapult: https://chromium.googlesource.com/catapult.git/+log/75423c310e..5b90d5e756 * src/third_party/depot_tools:2ffa1bde79..08bb5c487f* src/third_party/freetype/src:cff026d415..33ceac2afc* src/third_party/googletest/src:e2f3978937..af29db7ec2* src/third_party/harfbuzz-ng/src:64b29dbd59..56c4670935* src/third_party/icu:bf66d373ae..20f8ac695a* src/third_party/libjpeg_turbo:02959c3ee1..ed683925e4* src/third_party/libunwindstack:6868358481..3c86843ae0* src/third_party/lss: https://chromium.googlesource.com/linux-syscall-support.git/+log/92a65a8f5d..ce877209e1 * src/tools:198dc87952..f85dc28ce5DEPS diff:829c6df33d..7d683aeda8/DEPS Clang version changed llvmorg-14-init-8564-g34b903d8:llvmorg-16-init-4949-g8ace9ea258c9 Details:829c6df33d..7d683aeda8/tools/clang/scripts/update.py TBR=mbonadei@chromium.org BUG=None Change-Id: I29a61f5e47def397ebda05d56062001e009df58d Reviewed-on: https://chromium-review.googlesource.com/c/libyuv/libyuv/+/3909683 Reviewed-by: Frank Barchard <fbarchard@chromium.org> Commit-Queue: Mirko Bonadei <mbonadei@chromium.org>
39 lines
1.5 KiB
Plaintext
39 lines
1.5 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"
|
|
ios_deployment_target = "12.0"
|
|
}
|