diff --git a/docs/gen/build_arguments.md b/docs/gen/build_arguments.md
index 6bd202a19c609d9e521acbe3bfc51c4d269f9766..2d26350b9441a35a7052ca112f115da405de29ae 100644
--- a/docs/gen/build_arguments.md
+++ b/docs/gen/build_arguments.md
@@ -2,121 +2,121 @@
 
 ## All builds
 
-### system_package_key
-The package key to use for signing Fuchsia packages made by the
-`package()` template (and the `system_image` package).  If this
-doesn't exist yet when it's needed, it will be generated.  New
-keys can be generated with the `pm -k FILE genkey` host command.
+### msd_arm_enable_cache_coherency
+With this flag set the system tries to use cache coherent memory if the
+GPU supports it.
 
-**Current value (from the default):** `"//build/development.key"`
+**Current value (from the default):** `true`
 
-From //build/package.gni:18
+From //garnet/drivers/gpu/msd-arm-mali/src/BUILD.gn:13
 
-### vbmeta_r_partition
+### skia_use_opencl
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `false`
 
-From //build/images/BUILD.gn:44
+From //third_party/skia/BUILD.gn:32
 
-### current_cpu
+### rustc_prefix
+Sets a custom base directory for `rustc` and `cargo`.
+This can be used to test custom Rust toolchains.
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `"//buildtools/linux-x64/rust/bin"`
 
-### dart_use_crashpad
-Whether to link Crashpad library for crash handling. Only supported on
-Windows for now.
+From //build/rust/config.gni:17
+
+### scenic_use_views2
+Temporary flag, switches Flutter to using Scenic's new View API.
 
 **Current value (from the default):** `false`
 
-From //third_party/dart/runtime/runtime_args.gni:51
+From //garnet/bin/ui/scenic/config.gni:7
 
-### extra_authorized_keys_file
-Additional SSH authorized_keys file to include in the build.
-For example:
-  extra_authorized_keys_file=\"$HOME/.ssh/id_rsa.pub\"
+### dart_snapshot_kind
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `"kernel"`
 
-From [//third_party/openssh-portable/fuchsia/developer-keys/BUILD.gn:11](https://fuchsia.googlesource.com/third_party/openssh-portable/+/62f4ca0d82fa50a3405703837031a15c36dccdd4/fuchsia/developer-keys/BUILD.gn#11)
+From //third_party/dart/utils/application_snapshot.gni:14
 
-### gocache_dir
-  gocache_dir
-    Directory GOCACHE environment variable will be set to. This directory
-    will have build and test results cached, and is safe to be written to
-    concurrently. If overridden, this directory must be a full path.
+### have_secmem_ta
+The secmem TA must be obtained elsewhere and put into the firmware
+directory.
 
-**Current value (from the default):** `"/b/s/w/ir/k/root_build_dir/host_x64/.gocache"`
+**Current value (from the default):** `false`
 
-From //build/go/go_build.gni:16
+From //garnet/bin/sysmem-assistant/BUILD.gn:44
 
-### msd_arm_enable_protected_debug_swap_mode
-In protected mode, faults don't return as much information so they're much harder to debug. To
-work around that, add a mode where protected atoms are executed in non-protected mode and
-vice-versa.
+### linux_guest_extras_path
 
-NOTE: The memory security ranges should also be set (in TrustZone) to the opposite of normal, so
-that non-protected mode accesses can only access protected memory and vice versa.  Also,
-growable memory faults won't work in this mode, so larger portions of growable memory should
-precommitted (which is not done by default).
+**Current value (from the default):** `""`
 
-**Current value (from the default):** `false`
+From //src/virtualization/packages/linux_guest/BUILD.gn:13
 
-From //garnet/drivers/gpu/msd-arm-mali/src/BUILD.gn:23
+### board_name
+Board name used for paving and amber updates.
 
-### skia_android_serial
+**Current value for `target_cpu = "arm64"`:** `"qemu-arm64"`
 
-**Current value (from the default):** `""`
+From //boards/arm64.gni:7
 
-From //third_party/skia/BUILD.gn:41
+**Overridden from the default:** `""`
 
-### build_libvulkan_qcom_adreno
-Targets that will be built as qualcomm vulkan ICDS.
+From //build/package.gni:21
 
-**Current value (from the default):** `[]`
+**Current value for `target_cpu = "x64"`:** `"pc"`
 
-From //garnet/lib/magma/gnbuild/magma.gni:44
+From //boards/x64.gni:7
 
-### sdk_dirs
-The directories to search for parts of the SDK.
+**Overridden from the default:** `""`
 
-By default, we search the public directories for the various layers.
-In the future, we'll search a pre-built SDK as well.
+From //build/package.gni:21
 
-**Current value (from the default):** `["//garnet/public", "//peridot/public", "//topaz/public"]`
+### zxcrypt_key_source
+This argument specifies from where the system should obtain the zxcrypt
+master key to the system data partition.
 
-From //build/config/fuchsia/sdk.gni:10
+This value be reified as /boot/config/zxcrypt in both the zircon boot image
+and the zedboot boot image, for consumption by fshost and the paver,
+respectively.
 
-### devmgr_config
-List of arguments to add to /boot/config/devmgr.
-These come after synthesized arguments to configure blobfs and pkgfs.
+Acceptable values are:
+* "null": the device should use an all-0's master key, as we lack support
+for any secure on-device storage.
+* "tee": the device is required to have a Trusted Execution Environment
+(TEE) which includes the "keysafe" Trusted Application (associated with the
+KMS service).  The zxcrypt master key should be derived from a per-device
+key accessible only to trusted apps running in the TEE.
+* "tee-opportunistic": the device will attempt to use keys from the TEE if
+available, but will fall back to using the null key if the key from the TEE
+does not work, or if the TEE is not functional on this device.
+* "tee-transitional": the device will require the use of a key from the TEE
+for new volume creation, but will continue to try both a TEE-sourced key and
+the null key when unsealing volumes.
 
-**Current value (from the default):** `[]`
+In the future, we may consider adding support for TPMs, or additional logic
+to explicitly support other fallback behavior.
 
-From //build/images/BUILD.gn:475
+**Current value (from the default):** `"null"`
 
-### flutter_space_dart
-Whether experimental space dart mode is enabled for Flutter applications.
+From //build/images/zxcrypt.gni:29
 
-**Current value (from the default):** `false`
+### build_libvulkan_img_rgx
+Targets that will be built as IMG vulkan ICDS.
 
-From [//topaz/runtime/dart/dart_component.gni:38](https://fuchsia.googlesource.com/topaz/+/f7980ed73a9491553f082ce11cd67f9aa457b3bb/runtime/dart/dart_component.gni#38)
+**Current value (from the default):** `[]`
 
-### msd_intel_gen_build_root
+From //garnet/lib/magma/gnbuild/magma.gni:47
 
-**Current value (from the default):** `"//garnet/drivers/gpu/msd-intel-gen"`
+### zircon_build_root
 
-From //garnet/lib/magma/gnbuild/magma.gni:10
+**Current value (from the default):** `"//zircon"`
 
-### support_insecure_wep
-Enable WEP support.
-Use temporarily for testing driver WEP support.
-This build flag will be replaced by providing
-dedicated WEP specific WLAN targets which products
-can depend on.
+From //garnet/lib/magma/gnbuild/magma.gni:12
 
-**Current value (from the default):** `false`
+### host_byteorder
 
-From //src/connectivity/wlan/lib/wep_deprecated/BUILD.gn:15
+**Current value (from the default):** `"undefined"`
+
+From //build/config/host_byteorder.gni:7
 
 ### log_startup_sleep
 
@@ -124,98 +124,90 @@ From //src/connectivity/wlan/lib/wep_deprecated/BUILD.gn:15
 
 From //garnet/bin/log_listener/BUILD.gn:14
 
-### magma_python_path
-
-**Current value (from the default):** `"/b/s/w/ir/k/third_party/mako"`
-
-From //garnet/lib/magma/gnbuild/magma.gni:14
-
-### max_log_disk_usage
-Controls how many bytes of space on disk are used to persist device logs.
-Should be a string value that only contains digits.
+### scenic_ignore_vsync
 
-**Current value (from the default):** `"0"`
+**Current value (from the default):** `false`
 
-From //garnet/bin/log_listener/BUILD.gn:13
+From //garnet/lib/ui/gfx/BUILD.gn:8
 
-### prebuilt_dart_sdk
-Directory containing prebuilt Dart SDK.
-This must have in its `bin/` subdirectory `gen_snapshot.OS-CPU` binaries.
-Set to empty for a local build.
+### thinlto_cache_dir
+ThinLTO cache directory path.
 
-**Current value (from the default):** `"//topaz/tools/prebuilt-dart-sdk/linux-x64"`
+**Current value (from the default):** `"thinlto-cache"`
 
-From //build/dart/dart.gni:9
+From //build/config/lto/config.gni:16
 
-### skia_version
+### update_kernels
+(deprecated) List of kernel images to include in the update (OTA) package.
+If no list is provided, all built kernels are included. The names in the
+list are strings that must match the filename to be included in the update
+package.
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `[]`
 
-From //third_party/flutter/shell/version/version.gni:8
+From //build/images/BUILD.gn:498
 
-### active_partition
+### blobfs_minimum_data_bytes
+Number of bytes to reserve for data in the fs. This is in addition
+to what is reserved, if any, for the inodes. Data bytes constitutes
+"usable" space of the fs.
+An empty string does not reserve any additional space than minimum
+required for the filesystem.
 
 **Current value (from the default):** `""`
 
-From //build/images/BUILD.gn:45
-
-### auto_login_to_guest
-Whether basemgr should automatically login as a persistent guest user.
-
-**Current value (from the default):** `false`
+From //build/images/fvm.gni:36
 
-From //peridot/bin/basemgr/BUILD.gn:13
+### concurrent_link_jobs
+Maximum number of concurrent link jobs.
 
-### crash_diagnostics_dir
-Clang crash reports directory path. Use empty path to disable altogether.
+We often want to run fewer links at once than we do compiles, because
+linking is memory-intensive. The default to use varies by platform and by
+the amount of memory available, so we call out to a script to get the right
+value.
 
-**Current value (from the default):** `"//root_build_dir/clang-crashreports"`
+**Current value (from the default):** `16`
 
-From //build/config/BUILD.gn:9
+From //build/toolchain/BUILD.gn:15
 
-### skia_lex
+### current_os
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `""`
 
-From //third_party/skia/BUILD.gn:53
+### enable_netboot
+Whether to build the netboot zbi by default.
 
-### cache_package_labels
-If you add package labels to this variable, the packages will be included
-in the 'cache' package set, which represents an additional set of software
-that is made available on disk immediately after paving and in factory
-flows. These packages are not updated with an OTA, but instead are updated
-ephemerally. This cache of software can be evicted by the system if storage
-pressure arises or other policies indicate.
+You can still build //build/images:netboot explicitly even if enable_netboot is false.
 
-**Current value for `target_cpu = "arm64"`:** `[]`
+**Current value for `target_cpu = "arm64"`:** `false`
 
-From //products/core.gni:25
+From //products/core.gni:7
 
-**Overridden from the default:** `[]`
+**Overridden from the default:** `false`
 
-From //BUILD.gn:22
+From //build/images/BUILD.gn:33
 
-**Current value for `target_cpu = "x64"`:** `[]`
+**Current value for `target_cpu = "x64"`:** `false`
 
-From //products/core.gni:25
+From //products/core.gni:7
 
-**Overridden from the default:** `[]`
+**Overridden from the default:** `false`
 
-From //BUILD.gn:22
+From //build/images/BUILD.gn:33
 
-### dart_version_git_info
-Whether the Dart binary version string should include the git hash and
-git commit time.
+### flutter_space_dart
+Whether experimental space dart mode is enabled for Flutter applications.
 
-**Current value (from the default):** `true`
+**Current value (from the default):** `false`
 
-From //third_party/dart/runtime/runtime_args.gni:60
+From [//topaz/runtime/dart/dart_component.gni:38](https://fuchsia.googlesource.com/topaz/+/e815667d2e8f06051f242e52f04785428bd8e743/runtime/dart/dart_component.gni#38)
 
-### debian_guest_earlycon
+### use_ccache
+Set to true to enable compiling with ccache
 
 **Current value (from the default):** `false`
 
-From //src/virtualization/packages/debian_guest/BUILD.gn:10
+From //build/toolchain/ccache.gni:9
 
 ### enable_frame_pointers
 Controls whether the compiler emits full stack frames for function calls.
@@ -230,12 +222,28 @@ remove this option when the issues are addressed.
 
 From //build/config/BUILD.gn:19
 
-### rust_lto
-Sets the default LTO type for rustc bulids.
+### linux_runner_extras
+If `true`, the extras.img will be built and mounted inside the container
+at /mnt/chromeos.
 
-**Current value (from the default):** `"unset"`
+This is useful for including some GN-built binaries into the guest image
+without modifying the termina images.
 
-From //build/rust/config.gni:20
+**Current value (from the default):** `false`
+
+From //src/virtualization/packages/biscotti_guest/linux_runner/BUILD.gn:26
+
+### minfs_minimum_data_bytes
+
+**Current value (from the default):** `""`
+
+From //build/images/fvm.gni:37
+
+### skia_use_piex
+
+**Current value (from the default):** `true`
+
+From //third_party/skia/BUILD.gn:33
 
 ### use_mock_magma
 
@@ -243,75 +251,65 @@ From //build/rust/config.gni:20
 
 From [//third_party/mesa/src/intel/vulkan/BUILD.gn:25](https://fuchsia.googlesource.com/third_party/mesa/+/232bf12b10899d335a3fe69d947a738541ace7d3/src/intel/vulkan/BUILD.gn#25)
 
-### zircon_enable_kernel_debugging_features
-Whether to include various features (non-shipping, insecure, etc.) in the
-kernel or netsvc builds.
+### active_partition
 
-**Current value for `target_cpu = "arm64"`:** `false`
+**Current value (from the default):** `""`
 
-From //products/core.gni:9
+From //build/images/BUILD.gn:45
 
-**Overridden from the default:** `false`
+### auto_update_packages
+Whether the component loader should automatically update packages.
 
-From //build/config/fuchsia/zircon.gni:32
+**Current value (from the default):** `true`
 
-**Current value for `target_cpu = "x64"`:** `false`
+From //garnet/bin/sysmgr/BUILD.gn:10
 
-From //products/core.gni:9
+### dart_default_app
+Controls whether dart_app() targets generate JIT or AOT Dart snapshots.
+This defaults to JIT, use `fx set <ARCH> --args
+'dart_default_app="dart_aot_app"' to switch to AOT.
 
-**Overridden from the default:** `false`
+**Current value (from the default):** `"dart_jit_app"`
 
-From //build/config/fuchsia/zircon.gni:32
+From [//topaz/runtime/dart/dart_component.gni:19](https://fuchsia.googlesource.com/topaz/+/e815667d2e8f06051f242e52f04785428bd8e743/runtime/dart/dart_component.gni#19)
 
-### build_info_version
-Logical version of the current build. If not set, defaults to the timestamp
-of the most recent update.
+### zedboot_devmgr_config
+List of arguments to populate /boot/config/devmgr in the Zedboot image.
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `["netsvc.netboot=true"]`
 
-From //garnet/BUILD.gn:28
+From //build/images/zedboot/BUILD.gn:26
 
-### embedder_for_target
-By default, the dynamic library target exposing the embedder API is only
-built for the host. The reasoning is that platforms that have target
-definitions would not need an embedder API because an embedder
-implementation is already provided for said target. This flag allows tbe
-builder to obtain a shared library exposing the embedder API for alternative
-embedder implementations.
+### build_sdk_archives
+Whether to build SDK tarballs.
 
 **Current value (from the default):** `false`
 
-From //third_party/flutter/shell/platform/embedder/embedder.gni:12
-
-### enable_input_subsystem
-
-**Current value (from the default):** `true`
+From //build/sdk/sdk.gni:13
 
-From //garnet/bin/ui/scenic/BUILD.gn:14
+### engine_version
 
-### host_os
+**Current value (from the default):** `""`
 
-**Current value (from the default):** `"linux"`
+From //third_party/flutter/shell/version/version.gni:6
 
-### linux_guest_extras_path
+### skia_enable_skottie
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `true`
 
-From //src/virtualization/packages/linux_guest/BUILD.gn:13
+From //third_party/skia/modules/skottie/BUILD.gn:9
 
-### thinlto_cache_dir
-ThinLTO cache directory path.
+### msd_intel_gen_build_root
 
-**Current value (from the default):** `"linux_x64-shared/thinlto-cache"`
+**Current value (from the default):** `"//garnet/drivers/gpu/msd-intel-gen"`
 
-From //build/config/lto/config.gni:16
+From //garnet/lib/magma/gnbuild/magma.gni:10
 
-### use_thinlto
-Use ThinLTO variant of LTO if use_lto = true.
+### create_kernel_service_snapshot
 
-**Current value (from the default):** `true`
+**Current value (from the default):** `false`
 
-From //build/config/lto/config.gni:10
+From //third_party/dart/runtime/runtime_args.gni:101
 
 ### expat_build_root
 
@@ -319,265 +317,367 @@ From //build/config/lto/config.gni:10
 
 From //garnet/lib/magma/gnbuild/magma.gni:9
 
-### fvm_image_size
-The size in bytes of the FVM partition image to create. Normally this is
-computed to be just large enough to fit the blob and data images. The
-default value is "", which means to size based on inputs. Specifying a size
-that is too small will result in build failure.
+### host_tools_dir
+This is the directory where host tools intended for manual use by
+developers get installed.  It's something a developer might put
+into their shell's $PATH.  Host tools that are just needed as part
+of the build do not get copied here.  This directory is only for
+things that are generally useful for testing or debugging or
+whatnot outside of the GN build itself.  These are only installed
+by an explicit install_host_tools() rule (see //build/host.gni).
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `"//root_build_dir/tools"`
 
-From //build/images/fvm.gni:12
+From //build/host.gni:13
 
-### scudo_default_options
-Default [Scudo](https://llvm.org/docs/ScudoHardenedAllocator.html)
-options (before the `SCUDO_OPTIONS` environment variable is read at
-runtime).  *NOTE:* This affects only components using the `scudo`
-variant (see GN build argument `select_variant`), and does not affect
-anything when the `use_scudo` build flag is set instead.
+### magma_build_root
 
-**Current value (from the default):** `["abort_on_error=1", "QuarantineSizeKb=0", "ThreadLocalQuarantineSizeKb=0", "DeallocationTypeMismatch=false", "DeleteSizeMismatch=false", "allocator_may_return_null=true"]`
+**Current value (from the default):** `"//garnet/lib/magma"`
 
-From //build/config/scudo/scudo.gni:17
+From //garnet/lib/magma/gnbuild/magma.gni:8
 
-### skia_use_dng_sdk
+### skia_android_serial
 
-**Current value for `target_cpu = "arm64"`:** `false`
+**Current value (from the default):** `""`
 
-From //.gn:26
+From //third_party/skia/BUILD.gn:41
 
-**Overridden from the default:** `true`
+### skia_skqp_global_error_tolerance
 
-From //third_party/skia/BUILD.gn:63
+**Current value (from the default):** `0`
 
-**Current value for `target_cpu = "x64"`:** `false`
+From //third_party/skia/BUILD.gn:55
 
-From //.gn:26
+### select_variant_shortcuts
+List of short names for commonly-used variant selectors.  Normally this
+is not set as a build argument, but it serves to document the available
+set of short-cut names for variant selectors.  Each element of this list
+is a scope where `.name` is the short name and `.select_variant` is a
+a list that can be spliced into [`select_variant`](#select_variant).
 
-**Overridden from the default:** `false`
+**Current value (from the default):**
+```
+[{
+  name = "host_asan"
+  select_variant = [{
+  dir = ["//third_party/yasm", "//third_party/vboot_reference", "//garnet/tools/vboot_reference", "//third_party/shaderc/third_party/spirv-tools"]
+  host = true
+  variant = "asan_no_detect_leaks"
+}, {
+  host = true
+  variant = "asan"
+}]
+}, {
+  name = "asan"
+  select_variant = [{
+  target_type = ["driver_module"]
+  variant = false
+}, {
+  host = false
+  variant = "asan"
+}]
+}]
+```
 
-From //third_party/skia/BUILD.gn:63
+From //build/config/BUILDCONFIG.gn:449
 
-### skia_use_icu
+### skia_enable_fontmgr_win_gdi
 
-**Current value (from the default):** `true`
+**Current value (from the default):** `false`
 
-From //third_party/skia/gn/skia.gni:13
+From //third_party/skia/BUILD.gn:73
 
-### target_sysroot
-The absolute path of the sysroot that is used with the target toolchain.
+### skia_enable_gpu
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `true`
 
-From //build/config/sysroot.gni:7
+From //third_party/skia/gn/skia.gni:11
 
-### current_os
+### skia_use_libwebp
 
-**Current value (from the default):** `""`
+**Current value for `target_cpu = "arm64"`:** `false`
 
-### dart_lib_export_symbols
-Whether libdart should export the symbols of the Dart API.
+From //.gn:29
 
-**Current value (from the default):** `true`
+**Overridden from the default:** `false`
 
-From //third_party/dart/runtime/runtime_args.gni:91
+From //third_party/skia/BUILD.gn:30
 
-### enable_sketchy_subsystem
+**Current value for `target_cpu = "x64"`:** `false`
 
-**Current value (from the default):** `false`
+From //.gn:29
 
-From //garnet/bin/ui/scenic/BUILD.gn:13
+**Overridden from the default:** `true`
 
-### fvm_slice_size
-The size of the FVM partition images "slice size". The FVM slice size is a
-minimum size of a particular chunk of a partition that is stored within
-FVM. A very small slice size may lead to decreased throughput. A very large
-slice size may lead to wasted space. The selected default size of 8mb is
-selected for conservation of space, rather than performance.
+From //third_party/skia/BUILD.gn:30
 
-**Current value (from the default):** `"8388608"`
+### skia_use_vulkan
 
-From //build/images/fvm.gni:19
+**Current value (from the default):** `true`
 
-### skia_use_harfbuzz
+From //third_party/skia/BUILD.gn:86
+
+### use_thinlto
+Use ThinLTO variant of LTO if use_lto = true.
 
 **Current value (from the default):** `true`
 
-From //third_party/skia/gn/skia.gni:14
+From //build/config/lto/config.gni:10
 
-### skia_use_fixed_gamma_text
+### concurrent_dart_jobs
+Maximum number of Dart processes to run in parallel.
+
+Dart analyzer uses a lot of memory which may cause issues when building
+with many parallel jobs e.g. when using goma. To avoid out-of-memory
+errors we explicitly reduce the number of jobs.
+
+**Current value (from the default):** `16`
+
+From //build/dart/BUILD.gn:15
+
+### skia_enable_nima
 
 **Current value (from the default):** `false`
 
-From //third_party/skia/BUILD.gn:27
+From //third_party/skia/BUILD.gn:45
 
-### vbmeta_b_partition
+### skia_gl_standard
 
 **Current value (from the default):** `""`
 
-From //build/images/BUILD.gn:43
+From //third_party/skia/BUILD.gn:80
 
-### dart_use_fallback_root_certificates
-Whether to fall back to built-in root certificates when they cannot be
-verified at the operating system level.
+### go_vet_enabled
+  go_vet_enabled
+    [bool] if false, go vet invocations are disabled for all builds.
 
 **Current value (from the default):** `false`
 
-From //third_party/dart/runtime/runtime_args.gni:43
+From //build/go/go_build.gni:20
 
-### is_debug
-Debug build.
+### allow_layer_guesswork
+Does nothing.
 
-**Current value (from the default):** `true`
+Will be removed after 30 April 2019.
 
-From //build/config/BUILDCONFIG.gn:11
+**Current value (from the default):** `false`
 
-### kernel_cmdline_files
-Files containing additional kernel command line arguments to bake into
-the boot image.  The contents of these files (in order) come after any
-arguments directly in [`kernel_cmdline_args`](#kernel_cmdline_args).
-These can be GN `//` source pathnames or absolute system pathnames.
+From //BUILD.gn:39
 
-**Current value (from the default):** `[]`
+### current_cpu
 
-From //build/images/BUILD.gn:486
+**Current value (from the default):** `""`
 
-### wlancfg_config_type
-Selects the wlan configuration type to use. Choices:
-  "client" - client mode
-  "ap" - access point mode
-  "" (empty string) - no configuration
+### dart_core_snapshot_kind
+Controls the kind of core snapshot linked into the standalone VM. Using a
+core-jit snapshot breaks the ability to change various flags that affect
+code generation.
 
-**Current value (from the default):** `"client"`
+**Current value (from the default):** `"core"`
 
-From //src/connectivity/wlan/wlancfg/BUILD.gn:15
+From //third_party/dart/runtime/runtime_args.gni:56
 
-### msd_arm_enable_all_cores
-Enable all 8 cores, which is faster but emits more heat.
+### concurrent_rust_jobs
+Maximum number of Rust processes to run in parallel.
+
+We run multiple rustc jobs in parallel, each of which can cause significant
+amount of memory, especially when using LTO. To avoid out-of-memory errors
+we explicitly reduce the number of jobs.
+
+**Current value (from the default):** `14`
+
+From //build/rust/BUILD.gn:15
+
+### skia_use_xps
 
 **Current value (from the default):** `true`
 
-From //garnet/drivers/gpu/msd-arm-mali/src/BUILD.gn:9
+From //third_party/skia/BUILD.gn:39
 
-### export_x64_sdk_images
+### zircon_enable_netsvc_debugging_features
 
-**Current value (from the default):** `false`
+**Current value for `target_cpu = "arm64"`:** `false`
 
-From //sdk/BUILD.gn:13
+From //products/core.gni:10
 
-### host_byteorder
+**Overridden from the default:** `false`
 
-**Current value (from the default):** `"undefined"`
+From //build/config/fuchsia/zircon.gni:33
 
-From //build/config/host_byteorder.gni:7
+**Current value for `target_cpu = "x64"`:** `false`
 
-### prebuilt_libvulkan_arm_path
+From //products/core.gni:10
 
-**Current value (from the default):** `""`
+**Overridden from the default:** `false`
 
-From //garnet/lib/magma/gnbuild/magma.gni:23
+From //build/config/fuchsia/zircon.gni:33
 
-### always_zedboot
-Build boot images that prefer Zedboot over local boot (only for EFI).
+### skia_enable_fontmgr_empty
 
 **Current value (from the default):** `false`
 
-From //build/images/BUILD.gn:809
+From //third_party/skia/BUILD.gn:66
 
-### enable_dart_analysis
-Enable all dart analysis
+### use_prebuilt_dart_sdk
+Whether to use the prebuilt Dart SDK for everything.
+When setting this to false, the preubilt Dart SDK will not be used in
+situations where the version of the SDK matters, but may still be used as an
+optimization where the version does not matter.
 
 **Current value (from the default):** `true`
 
-From //build/dart/dart_library.gni:15
+From //build/dart/dart.gni:15
 
-### magma_build_root
+### zedboot_cmdline_files
+Files containing additional kernel command line arguments to bake into
+the Zedboot image.  The contents of these files (in order) come after any
+arguments directly in [`zedboot_cmdline_args`](#zedboot_cmdline_args).
+These can be GN `//` source pathnames or absolute system pathnames.
 
-**Current value (from the default):** `"//garnet/lib/magma"`
+**Current value (from the default):** `[]`
 
-From //garnet/lib/magma/gnbuild/magma.gni:8
+From //build/images/zedboot/BUILD.gn:23
 
-### zircon_r_partition
+### target_cpu
 
-**Current value (from the default):** `""`
+**Current value for `target_cpu = "arm64"`:** `"arm64"`
 
-From //build/images/BUILD.gn:41
+From //boards/arm64.gni:5
 
-### experimental_wlan_client_mlme
-Selects the SoftMAC client implementation to use. Choices:
-  false (default) - C++ Client MLME implementation
-  true - Rust Client MLME implementation
-This argument is temporary until Rust MLME is ready to be used.
+**Overridden from the default:** `""`
 
-**Current value (from the default):** `false`
+**Current value for `target_cpu = "x64"`:** `"x64"`
 
-From //src/connectivity/wlan/lib/mlme/cpp/BUILD.gn:10
+From //boards/x64.gni:5
 
-### skia_skqp_global_error_tolerance
+**Overridden from the default:** `""`
 
-**Current value (from the default):** `0`
+### clang_lib_dir
+Path to Clang lib directory.
 
-From //third_party/skia/BUILD.gn:55
+**Current value (from the default):** `"../build/buildtools/linux-x64/clang/lib"`
 
-### dart_vm_code_coverage
-Whether to enable code coverage for the standalone VM.
+From //build/images/manifest.gni:19
+
+### dart_version_git_info
+Whether the Dart binary version string should include the git hash and
+git commit time.
+
+**Current value (from the default):** `true`
+
+From //third_party/dart/runtime/runtime_args.gni:60
+
+### skia_use_fonthost_mac
 
 **Current value (from the default):** `false`
 
-From //third_party/dart/runtime/runtime_args.gni:39
+From //third_party/skia/BUILD.gn:25
 
-### enable_value_subsystem
+### zircon_args
+[Zircon GN build arguments](../../../zircon/docs/gen/build_arguments.md).
+The default passes through GOMA settings and
+[`select_variant`](#select_variant) shorthand selectors.
+**Only set this if you want to wipe out all the defaults that
+propagate from Fuchsia GN to Zircon GN.**  The default value
+folds in [`zircon_extra_args`](#zircon_extra_args), so usually
+it's better to just set `zircon_extra_args` and leave `zircon_args` alone.
+Any individual Zircon build argument set in `zircon_extra_args` will
+silently clobber the default value shown here.
+
+**Current value (from the default):**
+```
+{
+  default_deps = [":legacy-arm64"]
+  enable_kernel_debugging_features = false
+  enable_netsvc_debugging_features = false
+  goma_dir = "/home/swarming/goma"
+  use_goma = false
+  variants = []
+}
+```
+
+From //build/config/fuchsia/zircon.gni:46
+
+### enable_mdns_trace
+Enables the tracing feature of mdns, which can be turned on using
+"mdns-util verbose".
 
 **Current value (from the default):** `false`
 
-From //garnet/bin/ui/scenic/BUILD.gn:11
+From //src/connectivity/network/mdns/service/BUILD.gn:15
 
-### scenic_ignore_vsync
+### prebuilt_dart_sdk
+Directory containing prebuilt Dart SDK.
+This must have in its `bin/` subdirectory `gen_snapshot.OS-CPU` binaries.
+Set to empty for a local build.
+
+**Current value (from the default):** `"//topaz/tools/prebuilt-dart-sdk/linux-x64"`
+
+From //build/dart/dart.gni:9
+
+### skia_enable_tools
 
 **Current value (from the default):** `false`
 
-From //garnet/lib/ui/gfx/BUILD.gn:8
+From //third_party/skia/gn/skia.gni:12
 
-### skia_llvm_path
+### zircon_a_partition
+arguments to fx flash script
 
 **Current value (from the default):** `""`
 
-From //third_party/skia/BUILD.gn:57
+From //build/images/BUILD.gn:39
 
-### zedboot_cmdline_files
-Files containing additional kernel command line arguments to bake into
-the Zedboot image.  The contents of these files (in order) come after any
-arguments directly in [`zedboot_cmdline_args`](#zedboot_cmdline_args).
-These can be GN `//` source pathnames or absolute system pathnames.
+### blobfs_minimum_inodes
+minimum_inodes is the number of inodes to reserve for the fs
+An empty string does not reserve any additional space than minimum
+required for the filesystem.
 
-**Current value (from the default):** `[]`
+**Current value (from the default):** `""`
 
-From //build/images/zedboot/BUILD.gn:23
+From //build/images/fvm.gni:28
 
-### zircon_enable_netsvc_debugging_features
+### dart_platform_bytecode
+Whether the VM's platform dill file contains bytecode.
+
+**Current value (from the default):** `false`
+
+From //third_party/dart/runtime/runtime_args.gni:84
+
+### skia_use_x11
 
 **Current value for `target_cpu = "arm64"`:** `false`
 
-From //products/core.gni:10
+From //.gn:31
 
 **Overridden from the default:** `false`
 
-From //build/config/fuchsia/zircon.gni:33
+From //third_party/skia/BUILD.gn:38
 
 **Current value for `target_cpu = "x64"`:** `false`
 
-From //products/core.gni:10
+From //.gn:31
 
-**Overridden from the default:** `false`
+**Overridden from the default:** `true`
 
-From //build/config/fuchsia/zircon.gni:33
+From //third_party/skia/BUILD.gn:38
 
-### build_info_board
-Board configuration of the current build
+### system_package_key
+The package key to use for signing Fuchsia packages made by the
+`package()` template (and the `system_image` package).  If this
+doesn't exist yet when it's needed, it will be generated.  New
+keys can be generated with the `pm -k FILE genkey` host command.
 
-**Current value (from the default):** `"qemu-arm64"`
+**Current value (from the default):** `"//build/development.key"`
 
-From //garnet/BUILD.gn:24
+From //build/package.gni:18
+
+### thinlto_jobs
+Number of parallel ThinLTO jobs.
+
+**Current value (from the default):** `8`
+
+From //build/config/lto/config.gni:13
 
 ### escher_use_null_vulkan_config_on_host
 Using Vulkan on host (i.e. Linux) is an involved affair that involves
@@ -591,204 +691,147 @@ unit tests which don't require Vulkan.
 
 From //src/ui/lib/escher/BUILD.gn:16
 
-### skia_enable_particles
+### prebuilt_framework_name
+
+**Current value (from the default):** `""`
+
+From [//topaz/runtime/flutter_runner/prebuilt_framework.gni:7](https://fuchsia.googlesource.com/topaz/+/e815667d2e8f06051f242e52f04785428bd8e743/runtime/flutter_runner/prebuilt_framework.gni#7)
+
+### skia_use_zlib
 
 **Current value (from the default):** `true`
 
-From //third_party/skia/modules/particles/BUILD.gn:7
+From //third_party/skia/BUILD.gn:35
 
-### use_lto
-Use link time optimization (LTO).
+### signed_image
 
 **Current value (from the default):** `false`
 
-From //build/config/lto/config.gni:7
+From //build/images/BUILD.gn:46
 
-### vbmeta_a_partition
+### skia_enable_fontmgr_fuchsia
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `true`
 
-From //build/images/BUILD.gn:42
+From //third_party/skia/BUILD.gn:71
 
-### board_name
-Board name used for paving and amber updates.
+### zedboot_cmdline_args
+List of kernel command line arguments to bake into the Zedboot image.
+See //zircon/docs/kernel_cmdline.md and
+[`zedboot_devmgr_config`](#zedboot_devmgr_config).
 
-**Current value for `target_cpu = "arm64"`:** `"qemu-arm64"`
+**Current value (from the default):** `[]`
 
-From //boards/arm64.gni:7
+From //build/images/zedboot/BUILD.gn:17
 
-**Overridden from the default:** `""`
+### zircon_r_partition
 
-From //build/package.gni:21
+**Current value (from the default):** `""`
 
-**Current value for `target_cpu = "x64"`:** `"pc"`
+From //build/images/BUILD.gn:41
 
-From //boards/x64.gni:7
+### fvm_slice_size
+The size of the FVM partition images "slice size". The FVM slice size is a
+minimum size of a particular chunk of a partition that is stored within
+FVM. A very small slice size may lead to decreased throughput. A very large
+slice size may lead to wasted space. The selected default size of 8mb is
+selected for conservation of space, rather than performance.
 
-**Overridden from the default:** `""`
+**Current value (from the default):** `"8388608"`
 
-From //build/package.gni:21
+From //build/images/fvm.gni:19
 
-### engine_version
+### rust_warnings
+Sets whether Rust compiler warnings cause errors or not.
+"deny" will make all warnings into errors, while "allow" will ignore warnings
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `"deny"`
 
-From //third_party/flutter/shell/version/version.gni:6
+From //build/rust/config.gni:27
 
-### extra_manifest_args
-Extra args to globally apply to the manifest generation script.
+### sdk_id
+Identifier for the Core SDK.
 
-**Current value (from the default):** `[]`
+**Current value (from the default):** `""`
 
-From //build/images/manifest.gni:22
+From //sdk/config.gni:7
 
-### rust_toolchain_triple_suffix
-Sets the fuchsia toolchain target triple suffix (after arch)
+### crashpad_dependencies
 
 **Current value (from the default):** `"fuchsia"`
 
-From //build/rust/config.gni:23
-
-### skia_enable_nvpr
-
-**Current value (from the default):** `false`
-
-From //third_party/skia/BUILD.gn:43
-
-### skia_use_lua
-
-**Current value (from the default):** `false`
-
-From //third_party/skia/BUILD.gn:31
-
-### skia_use_expat
-
-**Current value for `target_cpu = "arm64"`:** `false`
-
-From //.gn:27
-
-**Overridden from the default:** `true`
-
-From //third_party/skia/BUILD.gn:23
-
-**Current value for `target_cpu = "x64"`:** `false`
-
-From //.gn:27
-
-**Overridden from the default:** `true`
-
-From //third_party/skia/BUILD.gn:23
-
-### target_cpu
-
-**Current value for `target_cpu = "arm64"`:** `"arm64"`
-
-From //boards/arm64.gni:5
-
-**Overridden from the default:** `""`
-
-**Current value for `target_cpu = "x64"`:** `"x64"`
-
-From //boards/x64.gni:5
-
-**Overridden from the default:** `""`
-
-### dart_core_snapshot_kind
-Controls the kind of core snapshot linked into the standalone VM. Using a
-core-jit snapshot breaks the ability to change various flags that affect
-code generation.
-
-**Current value (from the default):** `"core"`
-
-From //third_party/dart/runtime/runtime_args.gni:56
-
-### dart_default_app
-Controls whether dart_app() targets generate JIT or AOT Dart snapshots.
-This defaults to JIT, use `fx set <ARCH> --args
-'dart_default_app="dart_aot_app"' to switch to AOT.
-
-**Current value (from the default):** `"dart_jit_app"`
-
-From [//topaz/runtime/dart/dart_component.gni:19](https://fuchsia.googlesource.com/topaz/+/f7980ed73a9491553f082ce11cd67f9aa457b3bb/runtime/dart/dart_component.gni#19)
+From [//third_party/crashpad/build/crashpad_buildconfig.gni:22](https://chromium.googlesource.com/crashpad/crashpad/+/d221b7cadab5f00c6999f060a5bcb0896e25c7b7/build/crashpad_buildconfig.gni#22)
 
-### ledger_sync_credentials_file
+### target_os
 
 **Current value (from the default):** `""`
 
-From //src/ledger/bin/testing/sync_params.gni:6
-
-### skia_enable_fontmgr_win
+### zircon_extra_args
+[Zircon GN build arguments](../../../zircon/docs/gen/build_arguments.md).
+This is included in the default value of [`zircon_args`](#zircon_args) so
+you can set this to add things there without wiping out the defaults.
+When you set `zircon_args` directly, then this has no effect at all.
+Arguments you set here override any arguments in the default
+`zircon_args`.  There is no way to append to a value from the defaults.
+Note that for just setting simple (string-only) values in Zircon GN's
+[`variants`](../../../zircon/docs/gen/build_arguments.md#variants), the
+default [`zircon_args`](#zircon_args) uses a `variants` value derived from
+[`select_variant`](#select_variant) so for simple cases there is no need
+to explicitly set Zircon's `variants` here.
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `{ }`
 
-From //third_party/skia/BUILD.gn:72
+From //build/config/fuchsia/zircon.gni:27
 
-### skia_enable_skpicture
+### enable_input_subsystem
 
 **Current value (from the default):** `true`
 
-From //third_party/skia/BUILD.gn:48
-
-### skia_generate_workarounds
-
-**Current value (from the default):** `false`
-
-From //third_party/skia/BUILD.gn:52
-
-### vk_loader_debug
+From //garnet/bin/ui/scenic/BUILD.gn:14
 
-**Current value (from the default):** `"warn,error"`
+### rust_toolchain_triple_suffix
+Sets the fuchsia toolchain target triple suffix (after arch)
 
-From [//third_party/vulkan_loader_and_validation_layers/loader/BUILD.gn:26](https://fuchsia.googlesource.com/third_party/vulkan_loader_and_validation_layers/+/5aa2763f1d0a436644207f3ab56f40cfbf9bb760/loader/BUILD.gn#26)
+**Current value (from the default):** `"fuchsia"`
 
-### allow_layer_guesswork
-Does nothing.
+From //build/rust/config.gni:23
 
-Will be removed after 30 April 2019.
+### skia_enable_discrete_gpu
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `true`
 
-From //BUILD.gn:39
+From //third_party/skia/BUILD.gn:44
 
-### dart_aot_sharing_basis
-module_suggester is not AOT compiled in debug builds
+### rust_lto
+Sets the default LTO type for rustc bulids.
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `"unset"`
 
-From [//topaz/runtime/dart/dart_component.gni:51](https://fuchsia.googlesource.com/topaz/+/f7980ed73a9491553f082ce11cd67f9aa457b3bb/runtime/dart/dart_component.gni#51)
+From //build/rust/config.gni:20
 
-### host_tools_dir
-This is the directory where host tools intended for manual use by
-developers get installed.  It's something a developer might put
-into their shell's $PATH.  Host tools that are just needed as part
-of the build do not get copied here.  This directory is only for
-things that are generally useful for testing or debugging or
-whatnot outside of the GN build itself.  These are only installed
-by an explicit install_host_tools() rule (see //build/host.gni).
+### enable_sketchy_subsystem
 
-**Current value (from the default):** `"//root_build_dir/tools"`
+**Current value (from the default):** `false`
 
-From //build/host.gni:13
+From //garnet/bin/ui/scenic/BUILD.gn:13
 
-### using_fuchsia_sdk
-Only set in buildroots where targets configure themselves for use with the
-Fuchsia SDK
+### magma_python_path
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `"/b/s/w/ir/k/third_party/mako"`
 
-From //build/fuchsia/sdk.gni:8
+From //garnet/lib/magma/gnbuild/magma.gni:14
 
-### minfs_maximum_bytes
+### prebuilt_libvulkan_arm_path
 
 **Current value (from the default):** `""`
 
-From //build/images/fvm.gni:48
+From //garnet/lib/magma/gnbuild/magma.gni:23
 
-### prebuilt_framework_name
+### skia_use_angle
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `false`
 
-From [//topaz/runtime/flutter_runner/prebuilt_framework.gni:7](https://fuchsia.googlesource.com/topaz/+/f7980ed73a9491553f082ce11cd67f9aa457b3bb/runtime/flutter_runner/prebuilt_framework.gni#7)
+From //third_party/skia/BUILD.gn:21
 
 ### toolchain_variant
 *This should never be set as a build argument.*
@@ -826,163 +869,298 @@ The other fields are the variant's effects as defined in
 
 From //build/config/BUILDCONFIG.gn:74
 
-### use_prebuilt_ffmpeg
-Use a prebuilt ffmpeg binary rather than building it locally.  See
-//src/media/lib/ffmpeg/README.md for details.  This is ignored when
-building in variant builds for which there is no prebuilt.  In that
-case, ffmpeg is always built from source so as to be built with the
-selected variant's config.  When this is false (either explicitly or in
-a variant build) then //third_party/ffmpeg must be in the source tree,
-which requires:
-`jiri import -name integration third_party/ffmpeg https://fuchsia.googlesource.com/integration`
+### build_libvulkan_vsl_gc
+Targets that will be built as verisilicon vulkan ICDS.
 
-**Current value (from the default):** `true`
+**Current value (from the default):** `[]`
 
-From //src/media/lib/ffmpeg/BUILD.gn:14
+From //garnet/lib/magma/gnbuild/magma.gni:41
 
-### blobfs_maximum_bytes
-In addition to reserving space for inodes and data, fs needs additional
-space for maintaining some internal data structures. So the
-space required to reserve inodes and data may exceed sum of the space
-needed for inodes and data.
-maximum_bytes puts an upper bound on the total bytes reserved for inodes,
-data bytes and reservation for all other internal fs metadata.
-An empty string does not put any upper bound. A filesystem may
-reserve few blocks required for its operations.
+### dart_aot_sharing_basis
+module_suggester is not AOT compiled in debug builds
 
 **Current value (from the default):** `""`
 
-From //build/images/fvm.gni:47
+From [//topaz/runtime/dart/dart_component.gni:51](https://fuchsia.googlesource.com/topaz/+/e815667d2e8f06051f242e52f04785428bd8e743/runtime/dart/dart_component.gni#51)
 
-### build_libvulkan_vsl_gc
-Targets that will be built as verisilicon vulkan ICDS.
+### dart_debug_optimization_level
+The optimization level to use for debug builds. Defaults to 0 for builds with
+code coverage enabled.
 
-**Current value (from the default):** `[]`
+**Current value (from the default):** `"2"`
 
-From //garnet/lib/magma/gnbuild/magma.gni:41
+From //third_party/dart/runtime/runtime_args.gni:36
 
-### extra_variants
-Additional variant toolchain configs to support.
-This is just added to [`known_variants`](#known_variants).
+### skia_enable_particles
 
-**Current value (from the default):** `[]`
+**Current value (from the default):** `true`
 
-From //build/config/BUILDCONFIG.gn:403
+From //third_party/skia/modules/particles/BUILD.gn:7
 
-### glm_build_root
+### host_os
 
-**Current value (from the default):** `"//third_party/glm"`
+**Current value (from the default):** `"linux"`
 
-From //garnet/lib/magma/gnbuild/magma.gni:11
+### persist_logs
 
-### use_ccache
-Set to true to enable compiling with ccache
+**Current value (from the default):** `true`
+
+From //build/persist_logs.gni:13
+
+### skia_compile_processors
 
 **Current value (from the default):** `false`
 
-From //build/toolchain/ccache.gni:9
+From //third_party/skia/BUILD.gn:51
 
-### enable_netboot
-Whether to build the netboot zbi by default.
+### using_fuchsia_sdk
+Only set in buildroots where targets configure themselves for use with the
+Fuchsia SDK
 
-You can still build //build/images:netboot explicitly even if enable_netboot is false.
+**Current value (from the default):** `false`
 
-**Current value for `target_cpu = "arm64"`:** `false`
+From //build/fuchsia/sdk.gni:8
 
-From //products/core.gni:7
+### dart_component_kind
+Allow for deduping the VM between standalone, flutter_runner and dart_runner.
 
-**Overridden from the default:** `false`
+**Current value (from the default):** `"shared_library"`
 
-From //build/images/BUILD.gn:33
+From //third_party/dart/runtime/runtime_args.gni:78
 
-**Current value for `target_cpu = "x64"`:** `false`
+### meta_package_labels
+A list of labels for meta packages to be included in the monolith.
 
-From //products/core.gni:7
+**Current value for `target_cpu = "arm64"`:** `["//build/images:config-data", "//build/images:shell-commands", "//src/sys/component_index:component_index"]`
 
-**Overridden from the default:** `false`
+From //products/core.gni:12
 
-From //build/images/BUILD.gn:33
+**Overridden from the default:** `[]`
 
-### host_cpu
+From //build/images/BUILD.gn:36
 
-**Current value (from the default):** `"x64"`
+**Current value for `target_cpu = "x64"`:** `["//build/images:config-data", "//build/images:shell-commands", "//src/sys/component_index:component_index"]`
 
-### kernel_cmdline_args
-List of kernel command line arguments to bake into the boot image.
-See also //zircon/docs/kernel_cmdline.md and
-[`devmgr_config`](#devmgr_config).
+From //products/core.gni:12
 
-**Current value (from the default):** `[]`
+**Overridden from the default:** `[]`
 
-From //build/images/BUILD.gn:480
+From //build/images/BUILD.gn:36
 
-### skia_enable_fontmgr_win_gdi
+### skia_tools_require_resources
 
 **Current value (from the default):** `false`
 
-From //third_party/skia/BUILD.gn:73
+From //third_party/skia/BUILD.gn:60
 
-### board_packages
+### dart_use_fallback_root_certificates
+Whether to fall back to built-in root certificates when they cannot be
+verified at the operating system level.
 
-**Current value for `target_cpu = "arm64"`:** `[]`
+**Current value (from the default):** `false`
 
-From //boards/arm64.gni:9
+From //third_party/dart/runtime/runtime_args.gni:43
 
-**Overridden from the default:** `[]`
+### linux_runner_netmask
 
-From //BUILD.gn:40
+**Current value (from the default):** `"255.255.255.0"`
 
-**Current value for `target_cpu = "x64"`:** `[]`
+From //src/virtualization/packages/biscotti_guest/linux_runner/BUILD.gn:19
 
-From //boards/x64.gni:9
+### skia_use_libpng
 
-**Overridden from the default:** `[]`
+**Current value (from the default):** `true`
 
-From //BUILD.gn:40
+From //third_party/skia/BUILD.gn:29
 
-### skia_use_fonthost_mac
+### use_scudo
+TODO(davemoore): Remove this entire mechanism once standalone scudo is the
+default (DNO-442)
+Enable the [Scudo](https://llvm.org/docs/ScudoHardenedAllocator.html)
+memory allocator.
 
 **Current value (from the default):** `false`
 
-From //third_party/skia/BUILD.gn:25
+From //build/config/scudo/scudo.gni:10
 
-### flutter_runtime_mode
-The runtime mode ("debug", "profile", "release", "dynamic_profile", or "dynamic_release")
+### vbmeta_a_partition
 
-**Current value (from the default):** `"debug"`
+**Current value (from the default):** `""`
 
-From //third_party/flutter/common/config.gni:19
+From //build/images/BUILD.gn:42
 
-### meta_package_labels
-A list of labels for meta packages to be included in the monolith.
+### always_zedboot
+Build boot images that prefer Zedboot over local boot (only for EFI).
 
-**Current value for `target_cpu = "arm64"`:** `["//build/images:config-data", "//build/images:shell-commands", "//src/sys/component_index:component_index"]`
+**Current value (from the default):** `false`
 
-From //products/core.gni:12
+From //build/images/BUILD.gn:809
+
+### board_package_labels
+A list of package labels to include in the 'base' package set. Used by the
+board definition rather than the product definition.
+
+**Current value for `target_cpu = "arm64"`:** `["//garnet/packages/prod:drivers", "//garnet/packages/prod:sysmem-assistant"]`
+
+From //boards/arm64.gni:11
 
 **Overridden from the default:** `[]`
 
-From //build/images/BUILD.gn:36
+From //BUILD.gn:34
 
-**Current value for `target_cpu = "x64"`:** `["//build/images:config-data", "//build/images:shell-commands", "//src/sys/component_index:component_index"]`
+**Current value for `target_cpu = "x64"`:** `["//garnet/packages/prod:drivers"]`
 
-From //products/core.gni:12
+From //boards/x64.gni:13
 
 **Overridden from the default:** `[]`
 
-From //build/images/BUILD.gn:36
+From //BUILD.gn:34
 
-### crashpad_dependencies
+### build_libvulkan_arm_mali
+Targets that will be built as mali vulkan ICDS.
 
-**Current value (from the default):** `"fuchsia"`
+**Current value (from the default):** `[]`
 
-From [//third_party/crashpad/build/crashpad_buildconfig.gni:22](https://chromium.googlesource.com/crashpad/crashpad/+/d221b7cadab5f00c6999f060a5bcb0896e25c7b7/build/crashpad_buildconfig.gni#22)
+From //garnet/lib/magma/gnbuild/magma.gni:38
 
-### flutter_default_app
+### vbmeta_r_partition
 
-**Current value (from the default):** `"flutter_jit_app"`
+**Current value (from the default):** `""`
+
+From //build/images/BUILD.gn:44
+
+### skia_use_icu
+
+**Current value (from the default):** `false`
+
+From //third_party/skia/gn/skia.gni:13
+
+### skia_enable_flutter_defines
+
+**Current value for `target_cpu = "arm64"`:** `true`
+
+From //.gn:24
+
+**Overridden from the default:** `false`
+
+From //third_party/skia/BUILD.gn:17
+
+**Current value for `target_cpu = "x64"`:** `true`
+
+From //.gn:24
+
+**Overridden from the default:** `false`
+
+From //third_party/skia/BUILD.gn:17
+
+### skia_enable_fontmgr_android
+
+**Current value (from the default):** `false`
+
+From //third_party/skia/BUILD.gn:70
+
+### skia_use_egl
+
+**Current value (from the default):** `false`
+
+From //third_party/skia/BUILD.gn:22
+
+### enable_dart_analysis
+Enable all dart analysis
+
+**Current value (from the default):** `true`
+
+From //build/dart/dart_library.gni:15
+
+### flutter_aot_sharing_basis
+When AOT compiling, an app will reference objects in the sharing basis's
+snapshot when available instead of writing the objects in its own snapshot.
+The snapshot of the sharing basis app will be included in every other app's
+package and deduplicated by blobfs.
+
+**Current value (from the default):** `""`
+
+From [//topaz/runtime/dart/dart_component.gni:27](https://fuchsia.googlesource.com/topaz/+/e815667d2e8f06051f242e52f04785428bd8e743/runtime/dart/dart_component.gni#27)
+
+### skia_qt_path
 
-From [//topaz/runtime/dart/dart_component.gni:12](https://fuchsia.googlesource.com/topaz/+/f7980ed73a9491553f082ce11cd67f9aa457b3bb/runtime/dart/dart_component.gni#12)
+**Current value (from the default):** `""`
+
+From //third_party/skia/BUILD.gn:50
+
+### build_libvulkan_qcom_adreno
+Targets that will be built as qualcomm vulkan ICDS.
+
+**Current value (from the default):** `[]`
+
+From //garnet/lib/magma/gnbuild/magma.gni:44
+
+### msd_arm_enable_all_cores
+Enable all 8 cores, which is faster but emits more heat.
+
+**Current value (from the default):** `true`
+
+From //garnet/drivers/gpu/msd-arm-mali/src/BUILD.gn:9
+
+### skia_use_metal
+
+**Current value (from the default):** `false`
+
+From //third_party/skia/BUILD.gn:36
+
+### skia_use_sfntly
+
+**Current value for `target_cpu = "arm64"`:** `false`
+
+From //.gn:30
+
+**Overridden from the default:** `false`
+
+From //third_party/skia/BUILD.gn:64
+
+**Current value for `target_cpu = "x64"`:** `false`
+
+From //.gn:30
+
+**Overridden from the default:** `true`
+
+From //third_party/skia/BUILD.gn:64
+
+### use_vulkan_loader_for_tests
+Mesa doesn't properly handle loader-less operation;
+their GetInstanceProcAddr implementation returns 0 for some interfaces.
+On ARM there may be multiple libvulkan_arms, so they can't all be linked
+to.
+
+**Current value (from the default):** `true`
+
+From //garnet/lib/magma/gnbuild/magma.gni:31
+
+### crash_diagnostics_dir
+Clang crash reports directory path. Use empty path to disable altogether.
+
+**Current value (from the default):** `"//root_build_dir/clang-crashreports"`
+
+From //build/config/BUILD.gn:9
+
+### linux_runner_gateway
+
+**Current value (from the default):** `"10.0.0.1"`
+
+From //src/virtualization/packages/biscotti_guest/linux_runner/BUILD.gn:18
+
+### minfs_minimum_inodes
+
+**Current value (from the default):** `""`
+
+From //build/images/fvm.gni:29
+
+### dart_lib_export_symbols
+Whether libdart should export the symbols of the Dart API.
+
+**Current value (from the default):** `true`
+
+From //third_party/dart/runtime/runtime_args.gni:91
 
 ### known_variants
 List of variants that will form the basis for variant toolchains.
@@ -1098,474 +1276,318 @@ Each element of the list is one variant, which is a scope defining:
 
 From //build/config/BUILDCONFIG.gn:338
 
-### skia_use_opencl
+### use_vboot
+Use vboot images
 
 **Current value (from the default):** `false`
 
-From //third_party/skia/BUILD.gn:32
+From //build/images/boot.gni:11
 
-### dart_component_kind
+### skia_use_harfbuzz
 
-**Current value (from the default):** `"static_library"`
+**Current value (from the default):** `true`
 
-From //third_party/dart/runtime/runtime_args.gni:80
+From //third_party/skia/gn/skia.gni:14
 
-### skia_enable_fontmgr_custom
+### base_package_labels
+If you add package labels to this variable, the packages will be included in
+the 'base' package set, which represents the set of packages that are part
+of an OTA. These pacakages are updated as an atomic unit during an OTA
+process and are immutable and are a superset of the TCB (Trusted Computing
+Base) for a product. These packages are never evicted by the system.
 
-**Current value (from the default):** `true`
+**Current value for `target_cpu = "arm64"`:** `["//garnet/packages/config:kernel_crash_checker", "//garnet/packages/prod:crashpad_agent", "//garnet/packages/prod:feedback_agent", "//garnet/packages/prod:kernel_crash_checker", "//garnet/packages/products:base", "//bundles:kitchen_sink"]`
 
-From //third_party/skia/BUILD.gn:68
+From //root_build_dir/args.gn:3
 
-### skia_use_zlib
+**Overridden from the default:** `[]`
 
-**Current value (from the default):** `true`
+From //BUILD.gn:14
 
-From //third_party/skia/BUILD.gn:35
+**Current value for `target_cpu = "x64"`:** `["//garnet/packages/config:kernel_crash_checker", "//garnet/packages/prod:crashpad_agent", "//garnet/packages/prod:feedback_agent", "//garnet/packages/prod:kernel_crash_checker", "//garnet/packages/products:base", "//bundles:kitchen_sink"]`
 
-### crashpad_use_boringssl_for_http_transport_socket
-TODO(scottmg): https://crbug.com/crashpad/266 fuchsia:DX-690: BoringSSL
-was removed from the Fuchsia SDK. Re-enable it when we have a way to acquire
-a BoringSSL lib again.
+From //root_build_dir/args.gn:3
 
-**Current value (from the default):** `true`
+**Overridden from the default:** `[]`
 
-From [//third_party/crashpad/util/net/tls.gni:21](https://chromium.googlesource.com/crashpad/crashpad/+/d221b7cadab5f00c6999f060a5bcb0896e25c7b7/util/net/tls.gni#21)
+From //BUILD.gn:14
 
-### dart_debug_optimization_level
-The optimization level to use for debug builds. Defaults to 0 for builds with
-code coverage enabled.
+### host_cpu
 
-**Current value (from the default):** `"2"`
+**Current value (from the default):** `"x64"`
 
-From //third_party/dart/runtime/runtime_args.gni:36
+### skia_lex
 
-### framework_packages
+**Current value (from the default):** `false`
 
-**Current value (from the default):** `["collection", "flutter", "meta", "typed_data", "vector_math"]`
+From //third_party/skia/BUILD.gn:53
 
-From [//topaz/runtime/flutter_runner/prebuilt_framework.gni:8](https://fuchsia.googlesource.com/topaz/+/f7980ed73a9491553f082ce11cd67f9aa457b3bb/runtime/flutter_runner/prebuilt_framework.gni#8)
+### dart_target_arch
+Explicitly set the target architecture to use a simulator.
+Available options are: arm, arm64, x64, ia32, and dbc.
 
-### skia_enable_pdf
+**Current value (from the default):** `"arm64"`
 
-**Current value for `target_cpu = "arm64"`:** `false`
+From //third_party/dart/runtime/runtime_args.gni:32
 
-From //.gn:25
+### debian_guest_qcow
+Package the rootfs as a QCOW image (as opposed to a flat file).
 
-**Overridden from the default:** `true`
+**Current value (from the default):** `true`
 
-From //third_party/skia/BUILD.gn:46
+From //src/virtualization/packages/debian_guest/BUILD.gn:9
 
-**Current value for `target_cpu = "x64"`:** `false`
+### fuchsia_use_vulkan
+Consolidated build toggle for use of Vulkan across Fuchsia
 
-From //.gn:25
+**Current value (from the default):** `true`
 
-**Overridden from the default:** `true`
+From //build/vulkan/config.gni:7
 
-From //third_party/skia/BUILD.gn:46
+### is_debug
+Debug build.
 
-### warn_on_sdk_changes
-Whether to only warn when an SDK has been modified.
-If false, any unacknowledged SDK change will cause a build failure.
+**Current value (from the default):** `true`
 
-**Current value (from the default):** `false`
+From //build/config/BUILDCONFIG.gn:11
 
-From //build/sdk/config.gni:8
+### skia_generate_workarounds
 
-### skia_enable_flutter_defines
+**Current value (from the default):** `false`
 
-**Current value for `target_cpu = "arm64"`:** `true`
+From //third_party/skia/BUILD.gn:52
 
-From //.gn:24
+### board_packages
 
-**Overridden from the default:** `false`
+**Current value for `target_cpu = "arm64"`:** `[]`
 
-From //third_party/skia/BUILD.gn:17
+From //boards/arm64.gni:9
 
-**Current value for `target_cpu = "x64"`:** `true`
+**Overridden from the default:** `[]`
 
-From //.gn:24
+From //BUILD.gn:40
 
-**Overridden from the default:** `false`
+**Current value for `target_cpu = "x64"`:** `[]`
 
-From //third_party/skia/BUILD.gn:17
+From //boards/x64.gni:9
 
-### flutter_profile
+**Overridden from the default:** `[]`
 
-**Current value (from the default):** `true`
+From //BUILD.gn:40
 
-From [//topaz/runtime/dart/dart_component.gni:32](https://fuchsia.googlesource.com/topaz/+/f7980ed73a9491553f082ce11cd67f9aa457b3bb/runtime/dart/dart_component.gni#32)
+### cloudkms_key_dir
 
-### select_variant
-List of "selectors" to request variant builds of certain targets.
-Each selector specifies matching criteria and a chosen variant.
-The first selector in the list to match a given target determines
-which variant is used for that target.
+**Current value (from the default):** `"projects/fuchsia-infra/locations/global/keyRings/test-secrets/cryptoKeys"`
 
-Each selector is either a string or a scope.  A shortcut selector is
-a string; it gets expanded to a full selector.  A full selector is a
-scope, described below.
+From //build/testing/secret_spec.gni:8
 
-A string selector can match a name in
-[`select_variant_shortcuts`](#select_variant_shortcuts).  If it's not a
-specific shortcut listed there, then it can be the name of any variant
-described in [`known_variants`](#known_variants) and
-[`universal_variants`](#universal_variants) (and combinations thereof).
-A `selector` that's a simple variant name selects for every binary
-built in the target toolchain: `{ host=false variant=selector }`.
+### dart_custom_version_for_pub
+When this argument is a non-empty string, the version repoted by the
+Dart VM will be one that is compatible with pub's interpretation of
+semantic version strings. The version string will also include the values
+of the argument. In particular the version string will read:
 
-If a string selector contains a slash, then it's `"shortcut/filename"`
-and selects only the binary in the target toolchain whose `output_name`
-matches `"filename"`, i.e. it adds `output_name=["filename"]` to each
-selector scope that the shortcut's name alone would yield.
+    "M.m.p-dev.x.x-$(dart_custom_version_for_pub)-$(short_git_hash)"
 
-The scope that forms a full selector defines some of these:
+Where 'M', 'm', and 'p' are the major, minor and patch version numbers,
+and 'dev.x.x' is the dev version tag most recently preceeding the current
+revision. The short git hash can be omitted by setting
+dart_version_git_info=false
 
-    variant (required)
-        [string or `false`] The variant that applies if this selector
-        matches.  This can be `false` to choose no variant, or a string
-        that names the variant.  See
-        [`known_variants`](#known_variants) and
-        [`universal_variants`](#universal_variants).
+**Current value (from the default):** `""`
 
-The rest below are matching criteria.  All are optional.
-The selector matches if and only if all of its criteria match.
-If none of these is defined, then the selector always matches.
+From //third_party/dart/runtime/runtime_args.gni:73
 
-The first selector in the list to match wins and then the rest of
-the list is ignored.  So construct more complex rules by using a
-"blacklist" selector with `variant=false` before a catch-all or
-"whitelist" selector that names a variant.
+### skia_use_wuffs
 
-Each "[strings]" criterion is a list of strings, and the criterion
-is satisfied if any of the strings matches against the candidate string.
+**Current value (from the default):** `false`
 
-    host
-        [boolean] If true, the selector matches in the host toolchain.
-        If false, the selector matches in the target toolchain.
+From //third_party/skia/BUILD.gn:34
 
-    testonly
-        [boolean] If true, the selector matches targets with testonly=true.
-        If false, the selector matches in targets without testonly=true.
+### dart_debug
+Instead of using is_debug, we introduce a different flag for specifying a
+Debug build of Dart so that clients can still use a Release build of Dart
+while themselves doing a Debug build.
 
-    target_type
-        [strings]: `"executable"`, `"loadable_module"`, or `"driver_module"`
+**Current value (from the default):** `false`
 
-    output_name
-        [strings]: target's `output_name` (default: its `target name`)
+From //third_party/dart/runtime/runtime_args.gni:9
 
-    label
-        [strings]: target's full label with `:` (without toolchain suffix)
+### skia_use_fixed_gamma_text
 
-    name
-        [strings]: target's simple name (label after last `/` or `:`)
+**Current value (from the default):** `false`
 
-    dir
-        [strings]: target's label directory (`//dir` for `//dir:name`).
+From //third_party/skia/BUILD.gn:27
 
-**Current value (from the default):** `[]`
+### skia_use_fontconfig
 
-From //build/config/BUILDCONFIG.gn:626
+**Current value for `target_cpu = "arm64"`:** `false`
 
-### skia_use_angle
+From //.gn:28
 
-**Current value (from the default):** `false`
+**Overridden from the default:** `false`
 
-From //third_party/skia/BUILD.gn:21
+From //third_party/skia/BUILD.gn:24
 
-### create_kernel_service_snapshot
+**Current value for `target_cpu = "x64"`:** `false`
 
-**Current value (from the default):** `false`
+From //.gn:28
 
-From //third_party/dart/runtime/runtime_args.gni:101
+**Overridden from the default:** `true`
 
-### dart_version
+From //third_party/skia/BUILD.gn:24
 
-**Current value (from the default):** `""`
+### skia_enable_spirv_validation
 
-From //third_party/flutter/shell/version/version.gni:10
+**Current value (from the default):** `false`
 
-### linux_runner_extras
-If `true`, the extras.img will be built and mounted inside the container
-at /mnt/chromeos.
+From //third_party/skia/BUILD.gn:47
 
-This is useful for including some GN-built binaries into the guest image
-without modifying the termina images.
+### support_insecure_wep
+Enable WEP support.
+Use temporarily for testing driver WEP support.
+This build flag will be replaced by providing
+dedicated WEP specific WLAN targets which products
+can depend on.
 
 **Current value (from the default):** `false`
 
-From //src/virtualization/packages/biscotti_guest/linux_runner/BUILD.gn:26
+From //src/connectivity/wlan/lib/wep_deprecated/BUILD.gn:15
 
-### signed_image
+### magma_enable_developer_build
+Enable this to have the msd include a suite of tests and invoke them
+automatically when the driver starts.
 
 **Current value (from the default):** `false`
 
-From //build/images/BUILD.gn:46
+From //garnet/lib/magma/gnbuild/magma.gni:21
 
-### zircon_b_partition
+### scudo_default_options
+Default [Scudo](https://llvm.org/docs/ScudoHardenedAllocator.html)
+options (before the `SCUDO_OPTIONS` environment variable is read at
+runtime).  *NOTE:* This affects only components using the `scudo`
+variant (see GN build argument `select_variant`), and does not affect
+anything when the `use_scudo` build flag is set instead.
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `["abort_on_error=1", "QuarantineSizeKb=0", "ThreadLocalQuarantineSizeKb=0", "DeallocationTypeMismatch=false", "DeleteSizeMismatch=false", "allocator_may_return_null=true"]`
 
-From //build/images/BUILD.gn:40
+From //build/config/scudo/scudo.gni:17
 
-### data_partition_manifest
-Path to manifest file containing data to place into the initial /data
-partition.
+### skia_enable_ccpr
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `true`
 
-From //build/images/BUILD.gn:28
+From //third_party/skia/BUILD.gn:42
 
-### debian_guest_qcow
-Package the rootfs as a QCOW image (as opposed to a flat file).
+### shell_enable_vulkan
 
-**Current value (from the default):** `true`
+**Current value (from the default):** `false`
 
-From //src/virtualization/packages/debian_guest/BUILD.gn:9
+From //third_party/flutter/shell/config.gni:6
 
-### skia_enable_skshaper
+### skia_enable_pdf
 
-**Current value (from the default):** `true`
+**Current value for `target_cpu = "arm64"`:** `false`
 
-From //third_party/skia/modules/skshaper/BUILD.gn:9
+From //.gn:25
 
-### add_qemu_to_build_archives
-Whether to include images necessary to run Fuchsia in QEMU in build
-archives.
+**Overridden from the default:** `true`
 
-**Current value (from the default):** `false`
+From //third_party/skia/BUILD.gn:46
 
-From //build/images/BUILD.gn:51
+**Current value for `target_cpu = "x64"`:** `false`
 
-### custom_signing_script
-If non-empty, the given script will be invoked to produce a signed ZBI
-image. The given script must accept -z for the input zbi path, and -o for
-the output signed zbi path. The path must be in GN-label syntax (i.e.
-starts with //).
+From //.gn:25
 
-**Current value (from the default):** `""`
+**Overridden from the default:** `true`
 
-From //build/images/custom_signing.gni:12
+From //third_party/skia/BUILD.gn:46
 
-### fuchsia_use_vulkan
-Consolidated build toggle for use of Vulkan across Fuchsia
+### dart_use_crashpad
+Whether to link Crashpad library for crash handling. Only supported on
+Windows for now.
 
-**Current value (from the default):** `true`
+**Current value (from the default):** `false`
 
-From //build/vulkan/config.gni:7
+From //third_party/dart/runtime/runtime_args.gni:51
 
-### skia_enable_vulkan_debug_layers
+### fvm_image_size
+The size in bytes of the FVM partition image to create. Normally this is
+computed to be just large enough to fit the blob and data images. The
+default value is "", which means to size based on inputs. Specifying a size
+that is too small will result in build failure.
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `""`
 
-From //third_party/skia/BUILD.gn:49
+From //build/images/fvm.gni:12
 
-### use_prebuilt_dart_sdk
-Whether to use the prebuilt Dart SDK for everything.
-When setting this to false, the preubilt Dart SDK will not be used in
-situations where the version of the SDK matters, but may still be used as an
-optimization where the version does not matter.
+### goma_dir
+Absolute directory containing the Goma source code.
 
-**Current value (from the default):** `true`
+**Current value (from the default):** `"/home/swarming/goma"`
 
-From //build/dart/dart.gni:15
+From //build/toolchain/goma.gni:12
 
-### build_sdk_archives
-Whether to build SDK tarballs.
+### use_lto
+Use link time optimization (LTO).
 
 **Current value (from the default):** `false`
 
-From //build/sdk/sdk.gni:13
+From //build/config/lto/config.gni:7
 
-### dart_target_arch
-Explicitly set the target architecture to use a simulator.
-Available options are: arm, arm64, x64, ia32, and dbc.
-
-**Current value (from the default):** `"arm64"`
-
-From //third_party/dart/runtime/runtime_args.gni:32
-
-### rust_warnings
-Sets whether Rust compiler warnings cause errors or not.
-"deny" will make all warnings into errors, while "allow" will ignore warnings
-
-**Current value (from the default):** `"deny"`
-
-From //build/rust/config.gni:27
-
-### select_variant_shortcuts
-List of short names for commonly-used variant selectors.  Normally this
-is not set as a build argument, but it serves to document the available
-set of short-cut names for variant selectors.  Each element of this list
-is a scope where `.name` is the short name and `.select_variant` is a
-a list that can be spliced into [`select_variant`](#select_variant).
-
-**Current value (from the default):**
-```
-[{
-  name = "host_asan"
-  select_variant = [{
-  dir = ["//third_party/yasm", "//third_party/vboot_reference", "//garnet/tools/vboot_reference", "//third_party/shaderc/third_party/spirv-tools"]
-  host = true
-  variant = "asan_no_detect_leaks"
-}, {
-  host = true
-  variant = "asan"
-}]
-}, {
-  name = "asan"
-  select_variant = [{
-  target_type = ["driver_module"]
-  variant = false
-}, {
-  host = false
-  variant = "asan"
-}]
-}]
-```
-
-From //build/config/BUILDCONFIG.gn:449
-
-### zircon_a_partition
-arguments to fx flash script
-
-**Current value (from the default):** `""`
-
-From //build/images/BUILD.gn:39
-
-### fuchsia_sdk_root
-Consumers of the Fuchsia SDK instantiate templates for various SDK parts at
-a specific spot within their buildroots. The target name for the specific
-part is then derived from the part name as specified in the meta.json
-manifest. Different buildroot instantiate the SDK parts at different
-locations and then set this variable. GN rules can then prefix this variable
-name in SDK builds to the name of the SDK part. This flag is meaningless in
-non-SDK buildroots.
-
-**Current value (from the default):** `""`
-
-From //build/fuchsia/sdk.gni:17
-
-### linux_runner_netmask
-
-**Current value (from the default):** `"255.255.255.0"`
-
-From //src/virtualization/packages/biscotti_guest/linux_runner/BUILD.gn:19
-
-### skia_enable_fontmgr_android
-
-**Current value (from the default):** `false`
-
-From //third_party/skia/BUILD.gn:70
-
-### clang_prefix
-The default clang toolchain provided by the buildtools. This variable is
-additionally consumed by the Go toolchain.
-
-**Current value (from the default):** `"../buildtools/linux-x64/clang/bin"`
-
-From //build/config/clang/clang.gni:11
-
-### concurrent_link_jobs
-Maximum number of concurrent link jobs.
-
-We often want to run fewer links at once than we do compiles, because
-linking is memory-intensive. The default to use varies by platform and by
-the amount of memory available, so we call out to a script to get the right
-value.
-
-**Current value (from the default):** `16`
-
-From //build/toolchain/BUILD.gn:15
-
-### scenic_enable_vulkan_validation
-Include the vulkan validation layers in scenic.
-
-**Current value (from the default):** `true`
-
-From //garnet/bin/ui/BUILD.gn:40
-
-### zircon_asserts
-
-**Current value (from the default):** `true`
-
-From //build/config/fuchsia/BUILD.gn:205
-
-### scenic_use_views2
-Temporary flag, switches Flutter to using Scenic's new View API.
-
-**Current value (from the default):** `false`
-
-From //garnet/bin/ui/scenic/config.gni:7
-
-### sdk_id
-Identifier for the Core SDK.
+### blobfs_maximum_bytes
+In addition to reserving space for inodes and data, fs needs additional
+space for maintaining some internal data structures. So the
+space required to reserve inodes and data may exceed sum of the space
+needed for inodes and data.
+maximum_bytes puts an upper bound on the total bytes reserved for inodes,
+data bytes and reservation for all other internal fs metadata.
+An empty string does not put any upper bound. A filesystem may
+reserve few blocks required for its operations.
 
 **Current value (from the default):** `""`
 
-From //sdk/config.gni:7
-
-### skia_enable_fontmgr_custom_empty
-
-**Current value (from the default):** `false`
-
-From //third_party/skia/BUILD.gn:69
-
-### skia_enable_skottie
-
-**Current value (from the default):** `true`
-
-From //third_party/skia/modules/skottie/BUILD.gn:9
+From //build/images/fvm.gni:47
 
-### skia_tools_require_resources
+### dart_vm_code_coverage
+Whether to enable code coverage for the standalone VM.
 
 **Current value (from the default):** `false`
 
-From //third_party/skia/BUILD.gn:60
-
-### use_goma
-Set to true to enable distributed compilation using Goma.
+From //third_party/dart/runtime/runtime_args.gni:39
 
-**Current value (from the default):** `false`
+### linux_runner_ip
+Default values for the guest network configuration.
 
-From //build/toolchain/goma.gni:9
+These are currently hard-coded to match what is setup in the virtio-net
+device.
 
-### blobfs_minimum_inodes
-minimum_inodes is the number of inodes to reserve for the fs
-An empty string does not reserve any additional space than minimum
-required for the filesystem.
+See //src/virtualization/bin/vmm/device/virtio_net.cc for more details.
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `"10.0.0.2"`
 
-From //build/images/fvm.gni:28
+From //src/virtualization/packages/biscotti_guest/linux_runner/BUILD.gn:17
 
-### flutter_aot_sharing_basis
-When AOT compiling, an app will reference objects in the sharing basis's
-snapshot when available instead of writing the objects in its own snapshot.
-The snapshot of the sharing basis app will be included in every other app's
-package and deduplicated by blobfs.
+### fuchsia_vulkan_sdk
+Path to Fuchsia Vulkan SDK
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `"//third_party/vulkan_loader_and_validation_layers"`
 
-From [//topaz/runtime/dart/dart_component.gni:27](https://fuchsia.googlesource.com/topaz/+/f7980ed73a9491553f082ce11cd67f9aa457b3bb/runtime/dart/dart_component.gni#27)
+From //build/vulkan/config.gni:10
 
-### skia_gl_standard
+### prebuilt_framework_path
 
 **Current value (from the default):** `""`
 
-From //third_party/skia/BUILD.gn:80
-
-### skia_use_libheif
-
-**Current value (from the default):** `false`
-
-From //third_party/skia/BUILD.gn:37
+From [//topaz/runtime/flutter_runner/prebuilt_framework.gni:6](https://fuchsia.googlesource.com/topaz/+/e815667d2e8f06051f242e52f04785428bd8e743/runtime/flutter_runner/prebuilt_framework.gni#6)
 
-### thinlto_jobs
-Number of parallel ThinLTO jobs.
+### toolchain_manifests
+Manifest files describing target libraries from toolchains.
+Can be either // source paths or absolute system paths.
 
-**Current value (from the default):** `8`
+**Current value (from the default):** `["/b/s/w/ir/k/buildtools/linux-x64/clang/lib/aarch64-fuchsia.manifest"]`
 
-From //build/config/lto/config.gni:13
+From //build/images/manifest.gni:11
 
 ### universal_variants
 
@@ -1582,367 +1604,344 @@ From //build/config/lto/config.gni:13
 
 From //build/config/BUILDCONFIG.gn:423
 
-### update_kernels
-(deprecated) List of kernel images to include in the update (OTA) package.
-If no list is provided, all built kernels are included. The names in the
-list are strings that must match the filename to be included in the update
-package.
-
-**Current value (from the default):** `[]`
+### zircon_b_partition
 
-From //build/images/BUILD.gn:498
+**Current value (from the default):** `""`
 
-### zircon_extra_args
-[Zircon GN build arguments](../../../zircon/docs/gen/build_arguments.md).
-This is included in the default value of [`zircon_args`](#zircon_args) so
-you can set this to add things there without wiping out the defaults.
-When you set `zircon_args` directly, then this has no effect at all.
-Arguments you set here override any arguments in the default
-`zircon_args`.  There is no way to append to a value from the defaults.
-Note that for just setting simple (string-only) values in Zircon GN's
-[`variants`](../../../zircon/docs/gen/build_arguments.md#variants), the
-default [`zircon_args`](#zircon_args) uses a `variants` value derived from
-[`select_variant`](#select_variant) so for simple cases there is no need
-to explicitly set Zircon's `variants` here.
+From //build/images/BUILD.gn:40
 
-**Current value (from the default):** `{ }`
+### cache_package_labels
+If you add package labels to this variable, the packages will be included
+in the 'cache' package set, which represents an additional set of software
+that is made available on disk immediately after paving and in factory
+flows. These packages are not updated with an OTA, but instead are updated
+ephemerally. This cache of software can be evicted by the system if storage
+pressure arises or other policies indicate.
 
-From //build/config/fuchsia/zircon.gni:27
+**Current value for `target_cpu = "arm64"`:** `[]`
 
-### blobfs_minimum_data_bytes
-Number of bytes to reserve for data in the fs. This is in addition
-to what is reserved, if any, for the inodes. Data bytes constitutes
-"usable" space of the fs.
-An empty string does not reserve any additional space than minimum
-required for the filesystem.
+From //products/core.gni:25
 
-**Current value (from the default):** `""`
+**Overridden from the default:** `[]`
 
-From //build/images/fvm.gni:36
+From //BUILD.gn:22
 
-### dart_custom_version_for_pub
-When this argument is a non-empty string, the version repoted by the
-Dart VM will be one that is compatible with pub's interpretation of
-semantic version strings. The version string will also include the values
-of the argument. In particular the version string will read:
+**Current value for `target_cpu = "x64"`:** `[]`
 
-    "M.m.p-dev.x.x-$(dart_custom_version_for_pub)-$(short_git_hash)"
+From //products/core.gni:25
 
-Where 'M', 'm', and 'p' are the major, minor and patch version numbers,
-and 'dev.x.x' is the dev version tag most recently preceeding the current
-revision. The short git hash can be omitted by setting
-dart_version_git_info=false
+**Overridden from the default:** `[]`
 
-**Current value (from the default):** `""`
+From //BUILD.gn:22
 
-From //third_party/dart/runtime/runtime_args.gni:73
+### concurrent_go_jobs
+Maximum number of Go processes to run in parallel.
 
-### dart_snapshot_kind
+**Current value (from the default):** `16`
 
-**Current value (from the default):** `"kernel"`
+From //build/go/BUILD.gn:11
 
-From //third_party/dart/utils/application_snapshot.gni:14
+### skia_llvm_path
 
-### msd_arm_enable_cache_coherency
-With this flag set the system tries to use cache coherent memory if the
-GPU supports it.
+**Current value (from the default):** `""`
 
-**Current value (from the default):** `true`
+From //third_party/skia/BUILD.gn:57
 
-From //garnet/drivers/gpu/msd-arm-mali/src/BUILD.gn:13
+### skia_llvm_lib
 
-### symbol_level
-How many symbols to include in the build. This affects the performance of
-the build since the symbols are large and dealing with them is slow.
-  2 means regular build with symbols.
-  1 means minimal symbols, usually enough for backtraces only. Symbols with
-internal linkage (static functions or those in anonymous namespaces) may not
-appear when using this level.
-  0 means no symbols.
+**Current value (from the default):** `"LLVM"`
 
-**Current value (from the default):** `2`
+From //third_party/skia/BUILD.gn:58
 
-From //build/config/compiler.gni:13
+### zircon_asserts
 
-### universe_package_labels
-If you add package labels to this variable, the packages will be included
-in the 'universe' package set, which represents all software that is
-produced that is to be published to a package repository or to the SDK by
-the build. The build system ensures that the universe package set includes
-the base and cache package sets, which means you do not need to redundantly
-include those labels in this variable.
+**Current value (from the default):** `true`
 
-**Current value for `target_cpu = "arm64"`:** `["//garnet/packages/prod:vboot_reference", "//bundles:tools"]`
+From //build/config/fuchsia/BUILD.gn:205
 
-From //products/core.gni:27
+### dart_use_tcmalloc
+Whether to link the standalone VM against tcmalloc. The standalone build of
+the VM enables this only for Linux builds.
 
-**Overridden from the default:** `[]`
+**Current value (from the default):** `false`
 
-From //BUILD.gn:30
+From //third_party/dart/runtime/runtime_args.gni:47
 
-**Current value for `target_cpu = "x64"`:** `["//garnet/packages/prod:vboot_reference", "//bundles:tools"]`
+### skia_enable_fontmgr_custom
 
-From //products/core.gni:27
+**Current value (from the default):** `false`
 
-**Overridden from the default:** `[]`
+From //third_party/skia/BUILD.gn:68
 
-From //BUILD.gn:30
+### skia_enable_fontmgr_win
 
-### linux_runner_ip
-Default values for the guest network configuration.
+**Current value (from the default):** `false`
 
-These are currently hard-coded to match what is setup in the virtio-net
-device.
+From //third_party/skia/BUILD.gn:72
 
-See //src/virtualization/bin/vmm/device/virtio_net.cc for more details.
+### skia_enable_nvpr
 
-**Current value (from the default):** `"10.0.0.2"`
+**Current value (from the default):** `false`
 
-From //src/virtualization/packages/biscotti_guest/linux_runner/BUILD.gn:17
+From //third_party/skia/BUILD.gn:43
 
-### magma_enable_developer_build
-Enable this to have the msd include a suite of tests and invoke them
-automatically when the driver starts.
+### skia_use_lua
 
 **Current value (from the default):** `false`
 
-From //garnet/lib/magma/gnbuild/magma.gni:21
+From //third_party/skia/BUILD.gn:31
 
-### skia_pdf_subset_harfbuzz
-TODO: set skia_pdf_subset_harfbuzz to skia_use_harfbuzz.
+### wlancfg_config_type
+Selects the wlan configuration type to use. Choices:
+  "client" - client mode
+  "ap" - access point mode
+  "" (empty string) - no configuration
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `"client"`
 
-From //third_party/skia/gn/skia.gni:18
+From //src/connectivity/wlan/wlancfg/BUILD.gn:15
 
-### skia_qt_path
+### build_info_board
+Board configuration of the current build
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `"qemu-arm64"`
 
-From //third_party/skia/BUILD.gn:50
+From //garnet/BUILD.gn:24
+
+### dart_runtime_mode
+Set the runtime mode. This affects how the runtime is built and what
+features it has. Valid values are:
+'develop' (the default) - VM is built to run as a JIT with all development
+features enabled.
+'profile' - The VM is built to run with AOT compiled code with only the
+CPU profiling features enabled.
+'release' - The VM is built to run with AOT compiled code with no developer
+features enabled.
 
-### concurrent_dart_jobs
-Maximum number of Dart processes to run in parallel.
+These settings are only used for Flutter, at the moment. A standalone build
+of the Dart VM should leave this set to "develop", and should set
+'is_debug', 'is_release', or 'is_product'.
 
-Dart analyzer uses a lot of memory which may cause issues when building
-with many parallel jobs e.g. when using goma. To avoid out-of-memory
-errors we explicitly reduce the number of jobs.
+TODO(rmacnak): dart_runtime_mode no longer selects whether libdart is build
+for JIT or AOT, since libdart waw split into libdart_jit and
+libdart_precompiled_runtime. We should remove this flag and just set
+dart_debug/dart_product.
 
-**Current value (from the default):** `16`
+**Current value (from the default):** `"develop"`
 
-From //build/dart/BUILD.gn:15
+From //third_party/dart/runtime/runtime_args.gni:28
 
-### enable_mdns_trace
-Enables the tracing feature of mdns, which can be turned on using
-"mdns-util verbose".
+### embedder_for_target
+By default, the dynamic library target exposing the embedder API is only
+built for the host. The reasoning is that platforms that have target
+definitions would not need an embedder API because an embedder
+implementation is already provided for said target. This flag allows tbe
+builder to obtain a shared library exposing the embedder API for alternative
+embedder implementations.
 
 **Current value (from the default):** `false`
 
-From //src/connectivity/network/mdns/service/BUILD.gn:15
+From //third_party/flutter/shell/platform/embedder/embedder.gni:12
 
-### icu_use_data_file
-Tells icu to load an external data file rather than rely on the icudata
-being linked directly into the binary.
+### select_variant
+List of "selectors" to request variant builds of certain targets.
+Each selector specifies matching criteria and a chosen variant.
+The first selector in the list to match a given target determines
+which variant is used for that target.
 
-This flag is a bit confusing. As of this writing, icu.gyp set the value to
-0 but common.gypi sets the value to 1 for most platforms (and the 1 takes
-precedence).
+Each selector is either a string or a scope.  A shortcut selector is
+a string; it gets expanded to a full selector.  A full selector is a
+scope, described below.
 
-TODO(GYP) We'll probably need to enhance this logic to set the value to
-true or false in similar circumstances.
+A string selector can match a name in
+[`select_variant_shortcuts`](#select_variant_shortcuts).  If it's not a
+specific shortcut listed there, then it can be the name of any variant
+described in [`known_variants`](#known_variants) and
+[`universal_variants`](#universal_variants) (and combinations thereof).
+A `selector` that's a simple variant name selects for every binary
+built in the target toolchain: `{ host=false variant=selector }`.
 
-**Current value (from the default):** `true`
+If a string selector contains a slash, then it's `"shortcut/filename"`
+and selects only the binary in the target toolchain whose `output_name`
+matches `"filename"`, i.e. it adds `output_name=["filename"]` to each
+selector scope that the shortcut's name alone would yield.
 
-From [//third_party/icu/config.gni:15](https://fuchsia.googlesource.com/third_party/icu/+/65e4aa3b8cc6b41cf31136b9474a9c97bdc27739/config.gni#15)
+The scope that forms a full selector defines some of these:
 
-### build_info_product
-Product configuration of the current build
+    variant (required)
+        [string or `false`] The variant that applies if this selector
+        matches.  This can be `false` to choose no variant, or a string
+        that names the variant.  See
+        [`known_variants`](#known_variants) and
+        [`universal_variants`](#universal_variants).
 
-**Current value (from the default):** `""`
+The rest below are matching criteria.  All are optional.
+The selector matches if and only if all of its criteria match.
+If none of these is defined, then the selector always matches.
 
-From //garnet/BUILD.gn:21
+The first selector in the list to match wins and then the rest of
+the list is ignored.  So construct more complex rules by using a
+"blacklist" selector with `variant=false` before a catch-all or
+"whitelist" selector that names a variant.
 
-### zircon_args
-[Zircon GN build arguments](../../../zircon/docs/gen/build_arguments.md).
-The default passes through GOMA settings and
-[`select_variant`](#select_variant) shorthand selectors.
-**Only set this if you want to wipe out all the defaults that
-propagate from Fuchsia GN to Zircon GN.**  The default value
-folds in [`zircon_extra_args`](#zircon_extra_args), so usually
-it's better to just set `zircon_extra_args` and leave `zircon_args` alone.
-Any individual Zircon build argument set in `zircon_extra_args` will
-silently clobber the default value shown here.
+Each "[strings]" criterion is a list of strings, and the criterion
+is satisfied if any of the strings matches against the candidate string.
 
-**Current value (from the default):**
-```
-{
-  default_deps = [":legacy-arm64"]
-  enable_kernel_debugging_features = false
-  enable_netsvc_debugging_features = false
-  goma_dir = "/home/swarming/goma"
-  use_goma = false
-  variants = []
-}
-```
+    host
+        [boolean] If true, the selector matches in the host toolchain.
+        If false, the selector matches in the target toolchain.
 
-From //build/config/fuchsia/zircon.gni:46
+    testonly
+        [boolean] If true, the selector matches targets with testonly=true.
+        If false, the selector matches in targets without testonly=true.
 
-### dart_platform_bytecode
-Whether the VM's platform dill file contains bytecode.
+    target_type
+        [strings]: `"executable"`, `"loadable_module"`, or `"driver_module"`
 
-**Current value (from the default):** `false`
+    output_name
+        [strings]: target's `output_name` (default: its `target name`)
 
-From //third_party/dart/runtime/runtime_args.gni:84
+    label
+        [strings]: target's full label with `:` (without toolchain suffix)
 
-### skia_use_vulkan
+    name
+        [strings]: target's simple name (label after last `/` or `:`)
 
-**Current value (from the default):** `false`
+    dir
+        [strings]: target's label directory (`//dir` for `//dir:name`).
+
+**Current value (from the default):** `[]`
 
-From //third_party/skia/BUILD.gn:88
+From //build/config/BUILDCONFIG.gn:626
 
-### skia_use_x11
+### skia_use_dng_sdk
 
 **Current value for `target_cpu = "arm64"`:** `false`
 
-From //.gn:31
+From //.gn:26
 
-**Overridden from the default:** `true`
+**Overridden from the default:** `false`
 
-From //third_party/skia/BUILD.gn:38
+From //third_party/skia/BUILD.gn:63
 
 **Current value for `target_cpu = "x64"`:** `false`
 
-From //.gn:31
-
-**Overridden from the default:** `false`
-
-From //third_party/skia/BUILD.gn:38
-
-### use_vboot
-Use vboot images
+From //.gn:26
 
-**Current value (from the default):** `false`
+**Overridden from the default:** `true`
 
-From //build/images/boot.gni:11
+From //third_party/skia/BUILD.gn:63
 
-### dart_space_dart
-Whether experimental space dart mode is enabled for Dart applications.
+### use_vbmeta
+If true, then the paving script will pave vbmeta images to the target device.
+It is assumed that the vbmeta image will be created by the custom_signing_script.
 
 **Current value (from the default):** `false`
 
-From [//topaz/runtime/dart/dart_component.gni:41](https://fuchsia.googlesource.com/topaz/+/f7980ed73a9491553f082ce11cd67f9aa457b3bb/runtime/dart/dart_component.gni#41)
+From //build/images/custom_signing.gni:16
 
-### fastboot_product
+### build_info_product
+Product configuration of the current build
 
 **Current value (from the default):** `""`
 
-From //build/images/BUILD.gn:47
+From //garnet/BUILD.gn:21
 
-### prebuilt_framework_path
+### enable_value_subsystem
 
-**Current value (from the default):** `""`
+**Current value (from the default):** `false`
 
-From [//topaz/runtime/flutter_runner/prebuilt_framework.gni:6](https://fuchsia.googlesource.com/topaz/+/f7980ed73a9491553f082ce11cd67f9aa457b3bb/runtime/flutter_runner/prebuilt_framework.gni#6)
+From //garnet/bin/ui/scenic/BUILD.gn:11
 
-### skia_enable_fontmgr_fuchsia
+### exclude_kernel_service
+Whether the VM includes the kernel service in all modes (debug, release,
+product).
 
 **Current value (from the default):** `false`
 
-From //third_party/skia/BUILD.gn:71
+From //third_party/dart/runtime/runtime_args.gni:88
 
-### skia_use_freetype
+### skia_use_expat
 
-**Current value (from the default):** `true`
+**Current value for `target_cpu = "arm64"`:** `false`
 
-From //third_party/skia/BUILD.gn:26
+From //.gn:27
 
-### toolchain_manifests
-Manifest files describing target libraries from toolchains.
-Can be either // source paths or absolute system paths.
+**Overridden from the default:** `true`
 
-**Current value (from the default):** `["/b/s/w/ir/k/buildtools/linux-x64/clang/lib/aarch64-fuchsia.manifest"]`
+From //third_party/skia/BUILD.gn:23
 
-From //build/images/manifest.gni:11
+**Current value for `target_cpu = "x64"`:** `false`
 
-### cloudkms_key_dir
+From //.gn:27
 
-**Current value (from the default):** `"projects/fuchsia-infra/locations/global/keyRings/test-secrets/cryptoKeys"`
+**Overridden from the default:** `true`
 
-From //build/testing/secret_spec.gni:8
+From //third_party/skia/BUILD.gn:23
 
-### dart_runtime_mode
-Set the runtime mode. This affects how the runtime is built and what
-features it has. Valid values are:
-'develop' (the default) - VM is built to run as a JIT with all development
-features enabled.
-'profile' - The VM is built to run with AOT compiled code with only the
-CPU profiling features enabled.
-'release' - The VM is built to run with AOT compiled code with no developer
-features enabled.
+### vk_loader_debug
 
-These settings are only used for Flutter, at the moment. A standalone build
-of the Dart VM should leave this set to "develop", and should set
-'is_debug', 'is_release', or 'is_product'.
+**Current value (from the default):** `"warn,error"`
 
-TODO(rmacnak): dart_runtime_mode no longer selects whether libdart is build
-for JIT or AOT, since libdart waw split into libdart_jit and
-libdart_precompiled_runtime. We should remove this flag and just set
-dart_debug/dart_product.
+From [//third_party/vulkan_loader_and_validation_layers/loader/BUILD.gn:26](https://fuchsia.googlesource.com/third_party/vulkan_loader_and_validation_layers/+/5aa2763f1d0a436644207f3ab56f40cfbf9bb760/loader/BUILD.gn#26)
 
-**Current value (from the default):** `"develop"`
+### debian_guest_earlycon
 
-From //third_party/dart/runtime/runtime_args.gni:28
+**Current value (from the default):** `false`
 
-### enable_gfx_subsystem
+From //src/virtualization/packages/debian_guest/BUILD.gn:10
 
-**Current value (from the default):** `true`
+### gocache_dir
+  gocache_dir
+    Directory GOCACHE environment variable will be set to. This directory
+    will have build and test results cached, and is safe to be written to
+    concurrently. If overridden, this directory must be a full path.
 
-From //garnet/bin/ui/scenic/BUILD.gn:12
+**Current value (from the default):** `"/b/s/w/ir/k/root_build_dir/.gocache"`
 
-### full_dart_sdk
+From //build/go/go_build.gni:16
 
-**Current value (from the default):** `false`
+### kernel_cmdline_args
+List of kernel command line arguments to bake into the boot image.
+See also //zircon/docs/kernel_cmdline.md and
+[`devmgr_config`](#devmgr_config).
 
-From //third_party/flutter/BUILD.gn:14
+**Current value (from the default):** `[]`
 
-### skia_enable_fontmgr_empty
+From //build/images/BUILD.gn:480
 
-**Current value (from the default):** `false`
+### build_info_version
+Logical version of the current build. If not set, defaults to the timestamp
+of the most recent update.
 
-From //third_party/skia/BUILD.gn:66
+**Current value (from the default):** `""`
 
-### use_scudo
-TODO(davemoore): Remove this entire mechanism once standalone scudo is the
-default (DNO-442)
-Enable the [Scudo](https://llvm.org/docs/ScudoHardenedAllocator.html)
-memory allocator.
+From //garnet/BUILD.gn:28
 
-**Current value (from the default):** `false`
+### fastboot_product
 
-From //build/config/scudo/scudo.gni:10
+**Current value (from the default):** `""`
 
-### go_vet_enabled
-  go_vet_enabled
-    [bool] if false, go vet invocations are disabled for all builds.
+From //build/images/BUILD.gn:47
 
-**Current value (from the default):** `false`
+### skia_enable_fontmgr_custom_empty
+
+**Current value (from the default):** `true`
 
-From //build/go/go_build.gni:20
+From //third_party/skia/BUILD.gn:69
 
-### goma_dir
-Absolute directory containing the Goma source code.
+### auto_login_to_guest
+Whether basemgr should automatically login as a persistent guest user.
 
-**Current value (from the default):** `"/home/swarming/goma"`
+**Current value (from the default):** `false`
 
-From //build/toolchain/goma.gni:12
+From //peridot/bin/basemgr/BUILD.gn:13
 
-### have_secmem_ta
-The secmem TA must be obtained elsewhere and put into the firmware
-directory.
+### ledger_sync_credentials_file
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `""`
 
-From //garnet/bin/sysmem-assistant/BUILD.gn:44
+From //src/ledger/bin/testing/sync_params.gni:6
 
 ### max_fvm_size
 Maximum allowable size for the FVM in a release mode build
@@ -1952,432 +1951,425 @@ Zero means no limit
 
 From //build/images/max_fvm_size.gni:8
 
-### shell_enable_vulkan
-
-**Current value (from the default):** `false`
-
-From //third_party/flutter/shell/config.gni:6
-
-### use_vulkan_loader_for_tests
-Mesa doesn't properly handle loader-less operation;
-their GetInstanceProcAddr implementation returns 0 for some interfaces.
-On ARM there may be multiple libvulkan_arms, so they can't all be linked
-to.
-
-**Current value (from the default):** `true`
-
-From //garnet/lib/magma/gnbuild/magma.gni:31
-
-### skia_use_libpng
+### use_prebuilt_ffmpeg
+Use a prebuilt ffmpeg binary rather than building it locally.  See
+//src/media/lib/ffmpeg/README.md for details.  This is ignored when
+building in variant builds for which there is no prebuilt.  In that
+case, ffmpeg is always built from source so as to be built with the
+selected variant's config.  When this is false (either explicitly or in
+a variant build) then //third_party/ffmpeg must be in the source tree,
+which requires:
+`jiri import -name integration third_party/ffmpeg https://fuchsia.googlesource.com/integration`
 
 **Current value (from the default):** `true`
 
-From //third_party/skia/BUILD.gn:29
-
-### skia_use_libwebp
+From //src/media/lib/ffmpeg/BUILD.gn:14
 
-**Current value for `target_cpu = "arm64"`:** `false`
+### add_qemu_to_build_archives
+Whether to include images necessary to run Fuchsia in QEMU in build
+archives.
 
-From //.gn:29
+**Current value (from the default):** `false`
 
-**Overridden from the default:** `true`
+From //build/images/BUILD.gn:51
 
-From //third_party/skia/BUILD.gn:30
+### glm_build_root
 
-**Current value for `target_cpu = "x64"`:** `false`
+**Current value (from the default):** `"//third_party/glm"`
 
-From //.gn:29
+From //garnet/lib/magma/gnbuild/magma.gni:11
 
-**Overridden from the default:** `false`
+### symbol_level
+How many symbols to include in the build. This affects the performance of
+the build since the symbols are large and dealing with them is slow.
+  2 means regular build with symbols.
+  1 means minimal symbols, usually enough for backtraces only. Symbols with
+internal linkage (static functions or those in anonymous namespaces) may not
+appear when using this level.
+  0 means no symbols.
 
-From //third_party/skia/BUILD.gn:30
+**Current value (from the default):** `2`
 
-### board_package_labels
-A list of package labels to include in the 'base' package set. Used by the
-board definition rather than the product definition.
+From //build/config/compiler.gni:13
 
-**Current value for `target_cpu = "arm64"`:** `["//garnet/packages/prod:drivers", "//garnet/packages/prod:sysmem-assistant"]`
+### skia_enable_vulkan_debug_layers
 
-From //boards/arm64.gni:11
+**Current value (from the default):** `false`
 
-**Overridden from the default:** `[]`
+From //third_party/skia/BUILD.gn:49
 
-From //BUILD.gn:34
+### clang_prefix
+The default clang toolchain provided by the buildtools. This variable is
+additionally consumed by the Go toolchain.
 
-**Current value for `target_cpu = "x64"`:** `["//garnet/packages/prod:drivers"]`
+**Current value (from the default):** `"../buildtools/linux-x64/clang/bin"`
 
-From //boards/x64.gni:13
+From //build/config/clang/clang.gni:11
 
-**Overridden from the default:** `[]`
+### enable_gfx_subsystem
 
-From //BUILD.gn:34
+**Current value (from the default):** `true`
 
-### bootfs_extra
-List of extra manifest entries for files to add to the BOOTFS.
-Each entry can be a "TARGET=SOURCE" string, or it can be a scope
-with `sources` and `outputs` in the style of a copy() target:
-`outputs[0]` is used as `TARGET` (see `gn help source_expansion`).
+From //garnet/bin/ui/scenic/BUILD.gn:12
 
-**Current value (from the default):** `[]`
+### minfs_maximum_bytes
 
-From //build/images/BUILD.gn:492
+**Current value (from the default):** `""`
 
-### concurrent_rust_jobs
-Maximum number of Rust processes to run in parallel.
+From //build/images/fvm.gni:48
 
-We run multiple rustc jobs in parallel, each of which can cause significant
-amount of memory, especially when using LTO. To avoid out-of-memory errors
-we explicitly reduce the number of jobs.
+### zircon_enable_kernel_debugging_features
+Whether to include various features (non-shipping, insecure, etc.) in the
+kernel or netsvc builds.
 
-**Current value (from the default):** `14`
+**Current value for `target_cpu = "arm64"`:** `false`
 
-From //build/rust/BUILD.gn:15
+From //products/core.gni:9
 
-### magma_enable_tracing
-Enable this to include fuchsia tracing capability
+**Overridden from the default:** `false`
 
-**Current value (from the default):** `true`
+From //build/config/fuchsia/zircon.gni:32
 
-From //garnet/lib/magma/gnbuild/magma.gni:17
+**Current value for `target_cpu = "x64"`:** `false`
 
-### skia_enable_atlas_text
+From //products/core.gni:9
 
-**Current value (from the default):** `false`
+**Overridden from the default:** `false`
 
-From //third_party/skia/BUILD.gn:65
+From //build/config/fuchsia/zircon.gni:32
 
-### skia_use_egl
+### warn_on_sdk_changes
+Whether to only warn when an SDK has been modified.
+If false, any unacknowledged SDK change will cause a build failure.
 
 **Current value (from the default):** `false`
 
-From //third_party/skia/BUILD.gn:22
+From //build/sdk/config.gni:8
 
-### skia_use_xps
+### flutter_profile
 
 **Current value (from the default):** `true`
 
-From //third_party/skia/BUILD.gn:39
-
-### use_vbmeta
-If true, then the paving script will pave vbmeta images to the target device.
-It is assumed that the vbmeta image will be created by the custom_signing_script.
-
-**Current value (from the default):** `false`
-
-From //build/images/custom_signing.gni:16
+From [//topaz/runtime/dart/dart_component.gni:32](https://fuchsia.googlesource.com/topaz/+/e815667d2e8f06051f242e52f04785428bd8e743/runtime/dart/dart_component.gni#32)
 
-### zedboot_devmgr_config
-List of arguments to populate /boot/config/devmgr in the Zedboot image.
+### select_variant_canonical
+*This should never be set as a build argument.*
+It exists only to be set in `toolchain_args`.
+See //build/toolchain/clang_toolchain.gni for details.
 
-**Current value (from the default):** `["netsvc.netboot=true"]`
+**Current value (from the default):** `[]`
 
-From //build/images/zedboot/BUILD.gn:26
+From //build/config/BUILDCONFIG.gn:631
 
-### base_package_labels
-If you add package labels to this variable, the packages will be included in
-the 'base' package set, which represents the set of packages that are part
-of an OTA. These pacakages are updated as an atomic unit during an OTA
-process and are immutable and are a superset of the TCB (Trusted Computing
-Base) for a product. These packages are never evicted by the system.
+### universe_package_labels
+If you add package labels to this variable, the packages will be included
+in the 'universe' package set, which represents all software that is
+produced that is to be published to a package repository or to the SDK by
+the build. The build system ensures that the universe package set includes
+the base and cache package sets, which means you do not need to redundantly
+include those labels in this variable.
 
-**Current value for `target_cpu = "arm64"`:** `["//garnet/packages/config:kernel_crash_checker", "//garnet/packages/prod:crashpad_agent", "//garnet/packages/prod:feedback_agent", "//garnet/packages/prod:kernel_crash_checker", "//garnet/packages/products:base", "//topaz/bundles:buildbot"]`
+**Current value for `target_cpu = "arm64"`:** `["//garnet/packages/prod:vboot_reference", "//bundles:tools"]`
 
-From //root_build_dir/args.gn:3
+From //products/core.gni:27
 
 **Overridden from the default:** `[]`
 
-From //BUILD.gn:14
+From //BUILD.gn:30
 
-**Current value for `target_cpu = "x64"`:** `["//garnet/packages/config:kernel_crash_checker", "//garnet/packages/prod:crashpad_agent", "//garnet/packages/prod:feedback_agent", "//garnet/packages/prod:kernel_crash_checker", "//garnet/packages/products:base", "//topaz/bundles:buildbot"]`
+**Current value for `target_cpu = "x64"`:** `["//garnet/packages/prod:vboot_reference", "//bundles:tools"]`
 
-From //root_build_dir/args.gn:3
+From //products/core.gni:27
 
 **Overridden from the default:** `[]`
 
-From //BUILD.gn:14
+From //BUILD.gn:30
 
-### linux_runner_gateway
+### dart_force_product
+Forces all Dart and Flutter apps to build in a specific configuration that
+we use to build products.
 
-**Current value (from the default):** `"10.0.0.1"`
+**Current value (from the default):** `false`
 
-From //src/virtualization/packages/biscotti_guest/linux_runner/BUILD.gn:18
+From [//topaz/runtime/dart/config.gni:10](https://fuchsia.googlesource.com/topaz/+/e815667d2e8f06051f242e52f04785428bd8e743/runtime/dart/config.gni#10)
 
-### skia_use_libjpeg_turbo
+### vbmeta_b_partition
 
-**Current value (from the default):** `true`
+**Current value (from the default):** `""`
 
-From //third_party/skia/BUILD.gn:28
+From //build/images/BUILD.gn:43
 
-### skia_compile_processors
+### experimental_wlan_client_mlme
+Selects the SoftMAC client implementation to use. Choices:
+  false (default) - C++ Client MLME implementation
+  true - Rust Client MLME implementation
+This argument is temporary until Rust MLME is ready to be used.
 
 **Current value (from the default):** `false`
 
-From //third_party/skia/BUILD.gn:51
+From //src/connectivity/wlan/lib/mlme/cpp/BUILD.gn:10
 
-### skia_enable_ccpr
+### framework_packages
 
-**Current value (from the default):** `true`
+**Current value (from the default):** `["collection", "flutter", "meta", "typed_data", "vector_math"]`
 
-From //third_party/skia/BUILD.gn:42
+From [//topaz/runtime/flutter_runner/prebuilt_framework.gni:8](https://fuchsia.googlesource.com/topaz/+/e815667d2e8f06051f242e52f04785428bd8e743/runtime/flutter_runner/prebuilt_framework.gni#8)
 
-### build_libvulkan_arm_mali
-Targets that will be built as mali vulkan ICDS.
+### kernel_cmdline_files
+Files containing additional kernel command line arguments to bake into
+the boot image.  The contents of these files (in order) come after any
+arguments directly in [`kernel_cmdline_args`](#kernel_cmdline_args).
+These can be GN `//` source pathnames or absolute system pathnames.
 
 **Current value (from the default):** `[]`
 
-From //garnet/lib/magma/gnbuild/magma.gni:38
-
-### concurrent_go_jobs
-Maximum number of Go processes to run in parallel.
-
-**Current value (from the default):** `16`
-
-From //build/go/BUILD.gn:11
+From //build/images/BUILD.gn:486
 
-### dart_debug
-Instead of using is_debug, we introduce a different flag for specifying a
-Debug build of Dart so that clients can still use a Release build of Dart
-while themselves doing a Debug build.
+### magma_enable_tracing
+Enable this to include fuchsia tracing capability
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `true`
 
-From //third_party/dart/runtime/runtime_args.gni:9
+From //garnet/lib/magma/gnbuild/magma.gni:17
 
-### exclude_kernel_service
-Whether the VM includes the kernel service in all modes (debug, release,
-product).
+### skia_pdf_subset_harfbuzz
+TODO: set skia_pdf_subset_harfbuzz to skia_use_harfbuzz.
 
 **Current value (from the default):** `false`
 
-From //third_party/dart/runtime/runtime_args.gni:88
-
-### minfs_minimum_data_bytes
-
-**Current value (from the default):** `""`
-
-From //build/images/fvm.gni:37
-
-### rustc_prefix
-Sets a custom base directory for `rustc` and `cargo`.
-This can be used to test custom Rust toolchains.
-
-**Current value (from the default):** `"//buildtools/linux-x64/rust/bin"`
-
-From //build/rust/config.gni:17
+From //third_party/skia/gn/skia.gni:18
 
-### persist_logs
+### skia_use_freetype
 
 **Current value (from the default):** `true`
 
-From //build/persist_logs.gni:13
+From //third_party/skia/BUILD.gn:26
 
-### skia_enable_discrete_gpu
+### bootfs_extra
+List of extra manifest entries for files to add to the BOOTFS.
+Each entry can be a "TARGET=SOURCE" string, or it can be a scope
+with `sources` and `outputs` in the style of a copy() target:
+`outputs[0]` is used as `TARGET` (see `gn help source_expansion`).
 
-**Current value (from the default):** `true`
+**Current value (from the default):** `[]`
 
-From //third_party/skia/BUILD.gn:44
+From //build/images/BUILD.gn:492
 
-### skia_use_piex
+### crashpad_use_boringssl_for_http_transport_socket
+TODO(scottmg): https://crbug.com/crashpad/266 fuchsia:DX-690: BoringSSL
+was removed from the Fuchsia SDK. Re-enable it when we have a way to acquire
+a BoringSSL lib again.
 
 **Current value (from the default):** `true`
 
-From //third_party/skia/BUILD.gn:33
+From [//third_party/crashpad/util/net/tls.gni:21](https://chromium.googlesource.com/crashpad/crashpad/+/d221b7cadab5f00c6999f060a5bcb0896e25c7b7/util/net/tls.gni#21)
 
-### skia_use_sfntly
+### extra_manifest_args
+Extra args to globally apply to the manifest generation script.
 
-**Current value for `target_cpu = "arm64"`:** `false`
+**Current value (from the default):** `[]`
 
-From //.gn:30
+From //build/images/manifest.gni:22
 
-**Overridden from the default:** `true`
+### skia_version
 
-From //third_party/skia/BUILD.gn:64
+**Current value (from the default):** `""`
 
-**Current value for `target_cpu = "x64"`:** `false`
+From //third_party/flutter/shell/version/version.gni:8
 
-From //.gn:30
+### custom_signing_script
+If non-empty, the given script will be invoked to produce a signed ZBI
+image. The given script must accept -z for the input zbi path, and -o for
+the output signed zbi path. The path must be in GN-label syntax (i.e.
+starts with //).
 
-**Overridden from the default:** `false`
+**Current value (from the default):** `""`
 
-From //third_party/skia/BUILD.gn:64
+From //build/images/custom_signing.gni:12
 
-### skia_use_wuffs
+### full_dart_sdk
 
 **Current value (from the default):** `false`
 
-From //third_party/skia/BUILD.gn:34
+From //third_party/flutter/BUILD.gn:14
 
-### auto_update_packages
-Whether the component loader should automatically update packages.
+### icu_use_data_file
+Tells icu to load an external data file rather than rely on the icudata
+being linked directly into the binary.
+
+This flag is a bit confusing. As of this writing, icu.gyp set the value to
+0 but common.gypi sets the value to 1 for most platforms (and the 1 takes
+precedence).
+
+TODO(GYP) We'll probably need to enhance this logic to set the value to
+true or false in similar circumstances.
 
 **Current value (from the default):** `true`
 
-From //garnet/bin/sysmgr/BUILD.gn:10
+From [//third_party/icu/config.gni:15](https://fuchsia.googlesource.com/third_party/icu/+/65e4aa3b8cc6b41cf31136b9474a9c97bdc27739/config.gni#15)
 
-### build_libvulkan_img_rgx
-Targets that will be built as IMG vulkan ICDS.
+### export_x64_sdk_images
 
-**Current value (from the default):** `[]`
+**Current value (from the default):** `false`
 
-From //garnet/lib/magma/gnbuild/magma.gni:47
+From //sdk/BUILD.gn:13
 
-### clang_lib_dir
-Path to Clang lib directory.
+### max_log_disk_usage
+Controls how many bytes of space on disk are used to persist device logs.
+Should be a string value that only contains digits.
 
-**Current value (from the default):** `"../build/buildtools/linux-x64/clang/lib"`
+**Current value (from the default):** `"0"`
 
-From //build/images/manifest.gni:19
+From //garnet/bin/log_listener/BUILD.gn:13
 
-### select_variant_canonical
-*This should never be set as a build argument.*
-It exists only to be set in `toolchain_args`.
-See //build/toolchain/clang_toolchain.gni for details.
+### flutter_default_app
 
-**Current value (from the default):** `[]`
+**Current value (from the default):** `"flutter_jit_app"`
 
-From //build/config/BUILDCONFIG.gn:631
+From [//topaz/runtime/dart/dart_component.gni:12](https://fuchsia.googlesource.com/topaz/+/e815667d2e8f06051f242e52f04785428bd8e743/runtime/dart/dart_component.gni#12)
 
-### zxcrypt_key_source
-This argument specifies from where the system should obtain the zxcrypt
-master key to the system data partition.
+### flutter_runtime_mode
+The runtime mode ("debug", "profile", "release", "dynamic_profile", or "dynamic_release")
 
-This value be reified as /boot/config/zxcrypt in both the zircon boot image
-and the zedboot boot image, for consumption by fshost and the paver,
-respectively.
+**Current value (from the default):** `"debug"`
 
-Acceptable values are:
-* "null": the device should use an all-0's master key, as we lack support
-for any secure on-device storage.
-* "tee": the device is required to have a Trusted Execution Environment
-(TEE) which includes the "keysafe" Trusted Application (associated with the
-KMS service).  The zxcrypt master key should be derived from a per-device
-key accessible only to trusted apps running in the TEE.
-* "tee-opportunistic": the device will attempt to use keys from the TEE if
-available, but will fall back to using the null key if the key from the TEE
-does not work, or if the TEE is not functional on this device.
-* "tee-transitional": the device will require the use of a key from the TEE
-for new volume creation, but will continue to try both a TEE-sourced key and
-the null key when unsealing volumes.
+From //third_party/flutter/common/config.gni:19
 
-In the future, we may consider adding support for TPMs, or additional logic
-to explicitly support other fallback behavior.
+### msd_arm_enable_protected_debug_swap_mode
+In protected mode, faults don't return as much information so they're much harder to debug. To
+work around that, add a mode where protected atoms are executed in non-protected mode and
+vice-versa.
 
-**Current value (from the default):** `"null"`
+NOTE: The memory security ranges should also be set (in TrustZone) to the opposite of normal, so
+that non-protected mode accesses can only access protected memory and vice versa.  Also,
+growable memory faults won't work in this mode, so larger portions of growable memory should
+precommitted (which is not done by default).
 
-From //build/images/zxcrypt.gni:29
+**Current value (from the default):** `false`
 
-### minfs_minimum_inodes
+From //garnet/drivers/gpu/msd-arm-mali/src/BUILD.gn:23
 
-**Current value (from the default):** `""`
+### skia_enable_skpicture
 
-From //build/images/fvm.gni:29
+**Current value (from the default):** `true`
 
-### skia_enable_gpu
+From //third_party/skia/BUILD.gn:48
+
+### skia_enable_skshaper
 
 **Current value (from the default):** `true`
 
-From //third_party/skia/gn/skia.gni:11
+From //third_party/skia/modules/skshaper/BUILD.gn:9
 
-### skia_enable_nima
+### dart_space_dart
+Whether experimental space dart mode is enabled for Dart applications.
 
 **Current value (from the default):** `false`
 
-From //third_party/skia/BUILD.gn:45
+From [//topaz/runtime/dart/dart_component.gni:41](https://fuchsia.googlesource.com/topaz/+/e815667d2e8f06051f242e52f04785428bd8e743/runtime/dart/dart_component.gni#41)
 
-### skia_llvm_lib
+### devmgr_config
+List of arguments to add to /boot/config/devmgr.
+These come after synthesized arguments to configure blobfs and pkgfs.
 
-**Current value (from the default):** `"LLVM"`
+**Current value (from the default):** `[]`
 
-From //third_party/skia/BUILD.gn:58
+From //build/images/BUILD.gn:475
 
-### target_os
+### extra_authorized_keys_file
+Additional SSH authorized_keys file to include in the build.
+For example:
+  extra_authorized_keys_file=\"$HOME/.ssh/id_rsa.pub\"
 
 **Current value (from the default):** `""`
 
-### dart_force_product
-Forces all Dart and Flutter apps to build in a specific configuration that
-we use to build products.
+From [//third_party/openssh-portable/fuchsia/developer-keys/BUILD.gn:11](https://fuchsia.googlesource.com/third_party/openssh-portable/+/62f4ca0d82fa50a3405703837031a15c36dccdd4/fuchsia/developer-keys/BUILD.gn#11)
+
+### use_goma
+Set to true to enable distributed compilation using Goma.
 
 **Current value (from the default):** `false`
 
-From [//topaz/runtime/dart/config.gni:10](https://fuchsia.googlesource.com/topaz/+/f7980ed73a9491553f082ce11cd67f9aa457b3bb/runtime/dart/config.gni#10)
+From //build/toolchain/goma.gni:9
 
-### skia_enable_tools
+### skia_enable_atlas_text
 
 **Current value (from the default):** `false`
 
-From //third_party/skia/gn/skia.gni:12
-
-### zedboot_cmdline_args
-List of kernel command line arguments to bake into the Zedboot image.
-See //zircon/docs/kernel_cmdline.md and
-[`zedboot_devmgr_config`](#zedboot_devmgr_config).
-
-**Current value (from the default):** `[]`
+From //third_party/skia/BUILD.gn:65
 
-From //build/images/zedboot/BUILD.gn:17
+### dart_version
 
-### skia_use_metal
+**Current value (from the default):** `""`
 
-**Current value (from the default):** `false`
+From //third_party/flutter/shell/version/version.gni:10
 
-From //third_party/skia/BUILD.gn:36
+### data_partition_manifest
+Path to manifest file containing data to place into the initial /data
+partition.
 
-### skia_use_fontconfig
+**Current value (from the default):** `""`
 
-**Current value for `target_cpu = "arm64"`:** `false`
+From //build/images/BUILD.gn:28
 
-From //.gn:28
+### extra_variants
+Additional variant toolchain configs to support.
+This is just added to [`known_variants`](#known_variants).
 
-**Overridden from the default:** `true`
+**Current value (from the default):** `[]`
 
-From //third_party/skia/BUILD.gn:24
+From //build/config/BUILDCONFIG.gn:403
 
-**Current value for `target_cpu = "x64"`:** `false`
+### sdk_dirs
+The directories to search for parts of the SDK.
 
-From //.gn:28
+By default, we search the public directories for the various layers.
+In the future, we'll search a pre-built SDK as well.
 
-**Overridden from the default:** `false`
+**Current value (from the default):** `["//garnet/public", "//peridot/public", "//topaz/public"]`
 
-From //third_party/skia/BUILD.gn:24
+From //build/config/fuchsia/sdk.gni:10
 
-### dart_use_tcmalloc
-Whether to link the standalone VM against tcmalloc. The standalone build of
-the VM enables this only for Linux builds.
+### target_sysroot
+The absolute path of the sysroot that is used with the target toolchain.
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `""`
 
-From //third_party/dart/runtime/runtime_args.gni:47
+From //build/config/sysroot.gni:7
 
-### fuchsia_vulkan_sdk
-Path to Fuchsia Vulkan SDK
+### skia_use_libjpeg_turbo
 
-**Current value (from the default):** `"//third_party/vulkan_loader_and_validation_layers"`
+**Current value (from the default):** `true`
 
-From //build/vulkan/config.gni:10
+From //third_party/skia/BUILD.gn:28
 
-### skia_enable_spirv_validation
+### fuchsia_sdk_root
+Consumers of the Fuchsia SDK instantiate templates for various SDK parts at
+a specific spot within their buildroots. The target name for the specific
+part is then derived from the part name as specified in the meta.json
+manifest. Different buildroot instantiate the SDK parts at different
+locations and then set this variable. GN rules can then prefix this variable
+name in SDK builds to the name of the SDK part. This flag is meaningless in
+non-SDK buildroots.
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `""`
 
-From //third_party/skia/BUILD.gn:47
+From //build/fuchsia/sdk.gni:17
 
-### zircon_build_root
+### scenic_enable_vulkan_validation
+Include the vulkan validation layers in scenic.
 
-**Current value (from the default):** `"//zircon"`
+**Current value (from the default):** `true`
 
-From //garnet/lib/magma/gnbuild/magma.gni:12
+From //garnet/bin/ui/BUILD.gn:40
 
-## `target_cpu = "arm64"`
+### skia_use_libheif
 
-### arm_float_abi
-The ARM floating point mode. This is either the string "hard", "soft", or
-"softfp". An empty string means to use the default one for the
-arm_version.
+**Current value (from the default):** `false`
 
-**Current value (from the default):** `""`
+From //third_party/skia/BUILD.gn:37
 
-From //build/config/arm.gni:20
+## `target_cpu = "arm64"`
 
 ### arm_optionally_use_neon
 Whether to enable optional NEON code paths.
@@ -2414,6 +2406,15 @@ From //build/config/arm.gni:12
 
 From //garnet/drivers/video/amlogic-decoder/BUILD.gn:11
 
+### arm_float_abi
+The ARM floating point mode. This is either the string "hard", "soft", or
+"softfp". An empty string means to use the default one for the
+arm_version.
+
+**Current value (from the default):** `""`
+
+From //build/config/arm.gni:20
+
 ## `target_cpu = "x64"`
 
 ### msd_intel_enable_mapping_cache
diff --git a/zircon/docs/gen/build_arguments.md b/zircon/docs/gen/build_arguments.md
index 584a93012c2e8ef826371c5bcbd763be4cc12540..88aef045c98e50315a4131bc3573853852ca4fcb 100644
--- a/zircon/docs/gen/build_arguments.md
+++ b/zircon/docs/gen/build_arguments.md
@@ -2,19 +2,95 @@
 
 ## All builds
 
-### enable_user_pci
-Enable userspace PCI and disable kernel PCI.
+### use_prebuilt_clang
+If $clang_tool_dir is "", then this controls how the Clang toolchain
+binaries are found.  If true, then the standard prebuilt is used.
+Otherwise the tools are just expected to be found by the shell via `PATH`.
+
+**Current value (from the default):** `true`
+
+From //public/gn/toolchain/clang.gni:9
+
+### current_cpu
+
+**Current value (from the default):** `""`
+
+### current_os
+
+**Current value (from the default):** `""`
+
+### use_goma
+Set to true to enable distributed compilation using Goma.
 
 **Current value (from the default):** `false`
 
-From //kernel/params.gni:42
+From //public/gn/toolchain/goma.gni:9
 
-### goma_dir
-Absolute directory containing the Goma source code.
+### default_deps
+Defines the `//:default` target: what `ninja` with no arguments does.
 
-**Current value (from the default):** `"/home/swarming/goma"`
+**Current value (from the default):** `[":build-tests", ":ids", ":images", ":tools"]`
 
-From //public/gn/toolchain/goma.gni:12
+From //BUILD.gn:19
+
+### tests_in_image
+Whether to include all the Zircon tests in the main standalone ZBI.
+TODO(mcgrathr): This will be replaced by a more sophisticated plan for
+what images to build rather than a single "everything" image that needs
+to be pared down.
+
+**Current value (from the default):** `true`
+
+From //BUILD.gn:16
+
+### thinlto_jobs
+Number of parallel ThinLTO jobs.
+
+**Current value (from the default):** `8`
+
+From //public/gn/config/lto/BUILD.gn:19
+
+### target_os
+
+**Current value (from the default):** `""`
+
+### toolchain
+*This must never be set as a build argument.*
+It exists only to be set via c_toolchain().
+See environment() for more information.
+
+**Current value (from the default):**
+```
+{
+  configs = []
+  environment = "stub"
+  globals = { }
+  label = "//public/gn/toolchain:stub"
+}
+```
+
+From //public/gn/BUILDCONFIG.gn:20
+
+### enable_lock_dep
+Enable kernel lock dependency tracking.
+
+**Current value (from the default):** `false`
+
+From //kernel/params.gni:32
+
+### host_cpu
+
+**Current value (from the default):** `"x64"`
+
+### opt_level
+* -1 means really unoptimized (-O0), usually only build-tested and not run.
+* 0 means "optimized for debugging" (-Og), light enough to avoid confusion.
+  1, 2, and 3 are increasing levels of optimization.
+* 4 is optimized for space rather than purely for speed.
+
+**Current value (from the default):** `2`
+
+From //public/gn/config/levels.gni:15
 
 ### use_ccache
 Set to true to enable compiling with ccache.
@@ -32,6 +108,92 @@ the tools are just expected to be found in PATH.
 
 From //public/gn/toolchain/gcc.gni:9
 
+### zx
+*This must never be set as a build argument*.
+
+"$zx/" is the prefix for GN "source-absolute" paths in the Zircon
+build.  When Zircon is built standalone, the Zircon repository is the
+root of the build (where `.gn` is found) so "$zx/" becomes "//".  When
+Zircon is part of a larger unified build, there is a higher-level `.gn`
+file that uses `default_args` to set "$zx/" to "//zircon/".
+
+**Current value (from the default):** `"/"`
+
+From //public/gn/BUILDCONFIG.gn:13
+
+### enable_kernel_debugging_features
+Whether to include various features (non-shipping, insecure, etc.) in the
+kernel or netsvc builds.
+
+**Current value (from the default):** `false`
+
+From //public/gn/config/product_parameters.gni:12
+
+### host_os
+
+**Current value (from the default):** `"linux"`
+
+### kernel_version_string
+Version string embedded in the kernel for `zx_system_get_version`.
+If set to the default "", a string is generated based on the
+Zircon git revision of the checkout.
+
+**Current value (from the default):** `""`
+
+From //kernel/lib/version/BUILD.gn:9
+
+### gcc_tool_dir
+Directory where the GCC toolchain binaries ("gcc", "nm", etc.) are
+found.  If this is "", then the behavior depends on $use_prebuilt_gcc.
+This directory is expected to contain `aarch64-elf-*` and `x86_64-elf-*`
+tools used to build for the Fuchsia targets.  This directory will not
+be used for host tools; if GCC is selected for host builds, only the
+system-installed tools found by the shell via `PATH` will be used.
+
+**Current value (from the default):** `""`
+
+From //public/gn/toolchain/gcc.gni:17
+
+### target_cpu
+
+**Current value (from the default):** `""`
+
+### enable_user_pci
+Enable userspace PCI and disable kernel PCI.
+
+**Current value (from the default):** `false`
+
+From //kernel/params.gni:42
+
+### kernel_extra_defines
+Extra macro definitions for kernel code, e.g. "DISABLE_KASLR",
+"ENABLE_KERNEL_LL_DEBUG".
+
+**Current value (from the default):** `[]`
+
+From //kernel/params.gni:46
+
+### sysroot
+The `--sysroot` directory for host compilations.
+This can be a string, which only applies to $host_os-$host_cpu.
+Or it can be a list of scopes containing `cpu`, `os`, and `sysroot`.
+The empty list (or empty string) means don't use `--sysroot` at all.
+
+**Current value (from the default):**
+```
+[{
+  cpu = "arm64"
+  os = "linux"
+  sysroot = "//prebuilt/downloads/sysroot/linux-arm64"
+}, {
+  cpu = "x64"
+  os = "linux"
+  sysroot = "//prebuilt/downloads/sysroot/linux-x64"
+}]
+```
+
+From //public/gn/config/BUILD.gn:16
+
 ### assert_level
 * 0 means no assertions, not even standard C `assert()`.
 * 1 means `ZX_ASSERT` but not `ZX_DEBUG_ASSERT`.
@@ -41,13 +203,6 @@ From //public/gn/toolchain/gcc.gni:9
 
 From //public/gn/config/levels.gni:9
 
-### default_deps
-Defines the `//:default` target: what `ninja` with no arguments does.
-
-**Current value (from the default):** `[":ids", ":images", ":tools"]`
-
-From //BUILD.gn:19
-
 ### detailed_scheduler_tracing
 Enable detailed scheduler traces.
 
@@ -61,36 +216,73 @@ From //kernel/params.gni:39
 
 From //public/gn/config/product_parameters.gni:13
 
+### enable_lock_dep_tests
+Enable kernel lock dependency tracking tests.  By default this is
+enabled when tracking is enabled, but can also be eanbled independently
+to assess whether the tests build and *fail correctly* when lockdep is
+disabled.
+
+**Current value (from the default):** `false`
+
+From //kernel/params.gni:54
+
+### goma_dir
+Absolute directory containing the Goma source code.
+
+**Current value (from the default):** `"/home/swarming/goma"`
+
+From //public/gn/toolchain/goma.gni:12
+
+### build_id_dir
+Directory to populate with `xx/yyy` and `xx/yyy.debug` links to ELF
+files.  For every ELF binary built, with build ID `xxyyy` (lowercase
+hexadecimal of any length), `xx/yyy` is a hard link to the stripped
+file and `xx/yyy.debug` is a hard link to the unstripped file.
+Symbolization tools and debuggers find symbolic information this way.
+
+**Current value (from the default):** `"/b/s/w/ir/k/out/build-zircon/.build-id"`
+
+From //public/gn/toolchain/c_toolchain.gni:17
+
+### crash_diagnostics_dir
+Clang crash reports directory path. Use empty path to disable altogether.
+
+**Current value (from the default):** `"/b/s/w/ir/k/out/build-zircon/clang-crashreports"`
+
+From //public/gn/config/BUILD.gn:10
+
+### enable_fair_scheduler
+Disable fair scheduler by default on all architectures.
+ZX-3959: Disable by default until E2E tests stabilize.
+
+**Current value (from the default):** `false`
+
+From //kernel/params.gni:36
+
 ### kernel_aspace_base
 
 **Current value (from the default):** `"0xffffff8000000000UL"`
 
 From //kernel/params.gni:28
 
-### target_os
-
-**Current value (from the default):** `""`
+### kernel_base
 
-### current_os
+**Current value (from the default):** `"0xffffffff80100000"`
 
-**Current value (from the default):** `""`
+From //kernel/params.gni:20
 
-### enable_lock_dep
-Enable kernel lock dependency tracking.
+### malloc
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `"scudo"`
 
-From //kernel/params.gni:32
+From //third_party/ulib/musl/BUILD.gn:6
 
-### enable_lock_dep_tests
-Enable kernel lock dependency tracking tests.  By default this is
-enabled when tracking is enabled, but can also be eanbled independently
-to assess whether the tests build and *fail correctly* when lockdep is
-disabled.
+### smp_max_cpus
+Maximum number of CPUs the kernel will run on (others will be ignored).
 
-**Current value (from the default):** `false`
+**Current value (from the default):** `32`
 
-From //kernel/params.gni:54
+From //kernel/params.gni:7
 
 ### symbol_level
 * 0 means no debugging information.
@@ -101,22 +293,18 @@ From //kernel/params.gni:54
 
 From //public/gn/config/levels.gni:20
 
-### toolchain
-*This must never be set as a build argument.*
-It exists only to be set via c_toolchain().
-See environment() for more information.
+### asan_default_options
+Default [AddressSanitizer](https://llvm.org/docs/AddressSanitizer.html)
+options (before the `ASAN_OPTIONS` environment variable is read at
+runtime).  This can be set as a build argument to affect most "asan"
+variants in $variants (which see), or overridden in $toolchain_args in
+one of those variants.  Note that setting this nonempty may conflict
+with programs that define their own `__asan_default_options` C
+function.
 
-**Current value (from the default):**
-```
-{
-  configs = []
-  environment = "stub"
-  globals = { }
-  label = "//public/gn/toolchain:stub"
-}
-```
+**Current value (from the default):** `""`
 
-From //public/gn/BUILDCONFIG.gn:20
+From //public/gn/config/instrumentation/BUILD.gn:13
 
 ### clang_tool_dir
 Directory where the Clang toolchain binaries ("clang", "llvm-nm", etc.) are
@@ -127,36 +315,19 @@ This toolchain is expected to support both Fuchsia targets and the host.
 
 From //public/gn/toolchain/clang.gni:14
 
-### kernel_base
-
-**Current value (from the default):** `"0xffffffff80100000"`
-
-From //kernel/params.gni:20
-
-### kernel_version_string
-Version string embedded in the kernel for `zx_system_get_version`.
-If set to the default "", a string is generated based on the
-Zircon git revision of the checkout.
-
-**Current value (from the default):** `""`
-
-From //kernel/lib/version/BUILD.gn:9
-
-### malloc
+### enable_acpi_debug
+Enable debug output in the ACPI library (used by the ACPI bus driver).
 
-**Current value (from the default):** `"scudo"`
+**Current value (from the default):** `false`
 
-From //third_party/ulib/musl/BUILD.gn:6
+From //third_party/lib/acpica/BUILD.gn:9
 
-### tests_in_image
-Whether to include all the Zircon tests in the main standalone ZBI.
-TODO(mcgrathr): This will be replaced by a more sophisticated plan for
-what images to build rather than a single "everything" image that needs
-to be pared down.
+### thinlto_cache_dir
+ThinLTO cache directory path.
 
-**Current value (from the default):** `true`
+**Current value (from the default):** `"user-x64-lto/thinlto-cache"`
 
-From //BUILD.gn:16
+From //public/gn/config/lto/BUILD.gn:22
 
 ### variants
 List of "selectors" to request variant builds of certain targets.  Each
@@ -378,162 +549,5 @@ Variant scope parameters
 
 **Current value (from the default):** `[]`
 
-From //public/gn/toolchain/environment.gni:225
-
-### build_id_dir
-Directory to populate with `xx/yyy` and `xx/yyy.debug` links to ELF
-files.  For every ELF binary built, with build ID `xxyyy` (lowercase
-hexadecimal of any length), `xx/yyy` is a hard link to the stripped
-file and `xx/yyy.debug` is a hard link to the unstripped file.
-Symbolization tools and debuggers find symbolic information this way.
-
-**Current value (from the default):** `"/b/s/w/ir/k/out/build-zircon/.build-id"`
-
-From //public/gn/toolchain/c_toolchain.gni:17
-
-### enable_acpi_debug
-Enable debug output in the ACPI library (used by the ACPI bus driver).
-
-**Current value (from the default):** `false`
-
-From //third_party/lib/acpica/BUILD.gn:9
-
-### enable_fair_scheduler
-Disable fair scheduler by default on all architectures.
-ZX-3959: Disable by default until E2E tests stabilize.
-
-**Current value (from the default):** `false`
-
-From //kernel/params.gni:36
-
-### sysroot
-The `--sysroot` directory for host compilations.
-This can be a string, which only applies to $host_os-$host_cpu.
-Or it can be a list of scopes containing `cpu`, `os`, and `sysroot`.
-The empty list (or empty string) means don't use `--sysroot` at all.
-
-**Current value (from the default):**
-```
-[{
-  cpu = "arm64"
-  os = "linux"
-  sysroot = "//prebuilt/downloads/sysroot/linux-arm64"
-}, {
-  cpu = "x64"
-  os = "linux"
-  sysroot = "//prebuilt/downloads/sysroot/linux-x64"
-}]
-```
-
-From //public/gn/config/BUILD.gn:16
-
-### use_goma
-Set to true to enable distributed compilation using Goma.
-
-**Current value (from the default):** `false`
-
-From //public/gn/toolchain/goma.gni:9
-
-### use_prebuilt_clang
-If $clang_tool_dir is "", then this controls how the Clang toolchain
-binaries are found.  If true, then the standard prebuilt is used.
-Otherwise the tools are just expected to be found by the shell via `PATH`.
-
-**Current value (from the default):** `true`
-
-From //public/gn/toolchain/clang.gni:9
-
-### zx
-*This must never be set as a build argument*.
-
-"$zx/" is the prefix for GN "source-absolute" paths in the Zircon
-build.  When Zircon is built standalone, the Zircon repository is the
-root of the build (where `.gn` is found) so "$zx/" becomes "//".  When
-Zircon is part of a larger unified build, there is a higher-level `.gn`
-file that uses `default_args` to set "$zx/" to "//zircon/".
-
-**Current value (from the default):** `"/"`
-
-From //public/gn/BUILDCONFIG.gn:13
-
-### asan_default_options
-Default [AddressSanitizer](https://llvm.org/docs/AddressSanitizer.html)
-options (before the `ASAN_OPTIONS` environment variable is read at
-runtime).  This can be set as a build argument to affect most "asan"
-variants in $variants (which see), or overridden in $toolchain_args in
-one of those variants.  Note that setting this nonempty may conflict
-with programs that define their own `__asan_default_options` C
-function.
-
-**Current value (from the default):** `""`
-
-From //public/gn/config/instrumentation/BUILD.gn:13
-
-### kernel_extra_defines
-Extra macro definitions for kernel code, e.g. "DISABLE_KASLR",
-"ENABLE_KERNEL_LL_DEBUG".
-
-**Current value (from the default):** `[]`
-
-From //kernel/params.gni:46
-
-### opt_level
-* -1 means really unoptimized (-O0), usually only build-tested and not run.
-* 0 means "optimized for debugging" (-Og), light enough to avoid confusion.
-  1, 2, and 3 are increasing levels of optimization.
-* 4 is optimized for space rather than purely for speed.
-
-**Current value (from the default):** `2`
-
-From //public/gn/config/levels.gni:15
-
-### current_cpu
-
-**Current value (from the default):** `""`
-
-### gcc_tool_dir
-Directory where the GCC toolchain binaries ("gcc", "nm", etc.) are
-found.  If this is "", then the behavior depends on $use_prebuilt_gcc.
-This directory is expected to contain `aarch64-elf-*` and `x86_64-elf-*`
-tools used to build for the Fuchsia targets.  This directory will not
-be used for host tools; if GCC is selected for host builds, only the
-system-installed tools found by the shell via `PATH` will be used.
-
-**Current value (from the default):** `""`
-
-From //public/gn/toolchain/gcc.gni:17
-
-### host_cpu
-
-**Current value (from the default):** `"x64"`
-
-### target_cpu
-
-**Current value (from the default):** `""`
-
-### enable_kernel_debugging_features
-Whether to include various features (non-shipping, insecure, etc.) in the
-kernel or netsvc builds.
-
-**Current value (from the default):** `false`
-
-From //public/gn/config/product_parameters.gni:12
-
-### host_os
-
-**Current value (from the default):** `"linux"`
-
-### smp_max_cpus
-Maximum number of CPUs the kernel will run on (others will be ignored).
-
-**Current value (from the default):** `32`
-
-From //kernel/params.gni:7
-
-### crash_diagnostics_dir
-Clang crash reports directory path. Use empty path to disable altogether.
-
-**Current value (from the default):** `"/b/s/w/ir/k/out/build-zircon/clang-crashreports"`
-
-From //public/gn/config/BUILD.gn:10
+From //public/gn/toolchain/variants.gni:222