1# This file is used by the GN meta build system to find the root of the source 2# tree and to set startup options. For documentation on the values set in this 3# file, run "gn help dotfile" at the command line. 4 5import("//build/dotfile_settings.gni") 6 7# The location of the build configuration file. 8buildconfig = "//build/config/BUILDCONFIG.gn" 9 10# The python interpreter to use by default. On Windows, this will look 11# for python3.exe and python3.bat. 12script_executable = "python3" 13 14# These are the targets to check headers for by default. The files in targets 15# matching these patterns (see "gn help label_pattern" for format) will have 16# their includes checked for proper dependencies when you run either 17# "gn check" or "gn gen --check". 18no_check_targets = [ 19 "//:cppgc_base", 20 "//:v8_internal_headers", 21 "//src/inspector:inspector", 22 "//test/cctest:cctest_sources", 23 "//third_party/icu:*", 24] 25 26# These are the list of GN files that run exec_script. This whitelist exists 27# to force additional review for new uses of exec_script, which is strongly 28# discouraged except for gypi_to_gn calls. 29exec_script_whitelist = build_dotfile_settings.exec_script_whitelist + 30 [ "//build_overrides/build.gni" ] 31