1# Copyright 2015 The LibYuv 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 9import("//build/dotfile_settings.gni") 10 11# The location of the build configuration file. 12buildconfig = "//build/config/BUILDCONFIG.gn" 13 14# The python interpreter to use by default. On Windows, this will look 15# for python3.exe and python3.bat. 16script_executable = "python3" 17 18# The secondary source root is a parallel directory tree where 19# GN build files are placed when they can not be placed directly 20# in the source tree, e.g. for third party source trees. 21secondary_source = "//build/secondary/" 22 23# These are the targets to check headers for by default. The files in targets 24# matching these patterns (see "gn help label_pattern" for format) will have 25# their includes checked for proper dependencies when you run either 26# "gn check" or "gn gen --check". 27check_targets = [ "//libyuv/*" ] 28 29# These are the list of GN files that run exec_script. This whitelist exists 30# to force additional review for new uses of exec_script, which is strongly 31# discouraged except for gypi_to_gn calls. 32exec_script_whitelist = build_dotfile_settings.exec_script_whitelist + 33 [ "//build_overrides/build.gni" ] 34 35default_args = { 36 mac_sdk_min = "10.12" 37 ios_deployment_target = "12.0" 38} 39