1# -*- sh -*- (Bash only) 2# 3# Copyright 2018 The Bazel Authors. All rights reserved. 4# 5# Licensed under the Apache License, Version 2.0 (the "License"); 6# you may not use this file except in compliance with the License. 7# You may obtain a copy of the License at 8# 9# http://www.apache.org/licenses/LICENSE-2.0 10# 11# Unless required by applicable law or agreed to in writing, software 12# distributed under the License is distributed on an "AS IS" BASIS, 13# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 14# See the License for the specific language governing permissions and 15# limitations under the License. 16 17# Bash completion of Bazel commands. 18# 19# Provides command-completion for: 20# - bazel prefix options (e.g. --host_jvm_args) 21# - blaze command-set (e.g. build, test) 22# - blaze command-specific options (e.g. --copts) 23# - values for enum-valued options 24# - package-names, exploring all package-path roots. 25# - targets within packages. 26 27# Environment variables for customizing behavior: 28# 29# BAZEL_COMPLETION_USE_QUERY - if "true", `bazel query` will be used for 30# autocompletion; otherwise, a heuristic grep is used. This is more accurate 31# than the heuristic grep, especially for strangely-formatted BUILD files. But 32# it can be slower, especially if the Bazel server is busy, and more brittle, if 33# the BUILD file contains serious errors. This is an experimental feature. 34# 35# BAZEL_COMPLETION_ALLOW_TESTS_FOR_RUN - if "true", autocompletion results for 36# `bazel run` includes test targets. This is convenient for users who run a lot 37# of tests/benchmarks locally with 'bazel run'. 38 39_bazel_completion_use_query() { 40 _bazel__is_true "${BAZEL_COMPLETION_USE_QUERY-}" 41} 42 43_bazel_completion_allow_tests_for_run() { 44 _bazel__is_true "${BAZEL_COMPLETION_ALLOW_TESTS_FOR_RUN-}" 45} 46# -*- sh -*- (Bash only) 47# 48# Copyright 2015 The Bazel Authors. All rights reserved. 49# 50# Licensed under the Apache License, Version 2.0 (the "License"); 51# you may not use this file except in compliance with the License. 52# You may obtain a copy of the License at 53# 54# http://www.apache.org/licenses/LICENSE-2.0 55# 56# Unless required by applicable law or agreed to in writing, software 57# distributed under the License is distributed on an "AS IS" BASIS, 58# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 59# See the License for the specific language governing permissions and 60# limitations under the License. 61 62# The template is expanded at build time using tables of commands/options 63# derived from the bazel executable built in the same client; the expansion is 64# written to bazel-complete.bash. 65# 66# Don't use this script directly. Generate the final script with 67# bazel build //scripts:bash_completion instead. 68 69# This script expects a header to be prepended to it that defines the following 70# nullary functions: 71# 72# _bazel_completion_use_query - Has a successful exit code if 73# BAZEL_COMPLETION_USE_QUERY is "true". 74# 75# _bazel_completion_allow_tests_for_run - Has a successful exit code if 76# BAZEL_COMPLETION_ALLOW_TESTS_FOR_RUN is "true". 77 78# The package path used by the completion routines. Unfortunately 79# this isn't necessarily the same as the actual package path used by 80# Bazel, but that's ok. (It's impossible for us to reliably know what 81# the relevant package-path, so this is just a good guess. Users can 82# override it if they want.) 83: ${BAZEL_COMPLETION_PACKAGE_PATH:=%workspace%} 84 85# Some commands might interfer with the important one, so don't complete them 86: ${BAZEL_IGNORED_COMMAND_REGEX:="__none__"} 87 88# bazel & ibazel commands 89: ${BAZEL:=bazel} 90: ${IBAZEL:=ibazel} 91 92# Pattern to match for looking for a target 93# BAZEL_BUILD_MATCH_PATTERN__* give the pattern for label-* 94# when looking in the build file. 95# BAZEL_QUERY_MATCH_PATTERN__* give the pattern for label-* 96# when using 'bazel query'. 97# _RUNTEST is a special case for _bazel_completion_allow_tests_for_run. 98: ${BAZEL_BUILD_MATCH_PATTERN__test:='(.*_test|test_suite)'} 99: ${BAZEL_QUERY_MATCH_PATTERN__test:='(test|test_suite)'} 100: ${BAZEL_BUILD_MATCH_PATTERN__bin:='.*_binary'} 101: ${BAZEL_QUERY_MATCH_PATTERN__bin:='(binary)'} 102: ${BAZEL_BUILD_MATCH_PATTERN_RUNTEST__bin:='(.*_(binary|test)|test_suite)'} 103: ${BAZEL_QUERY_MATCH_PATTERN_RUNTEST__bin:='(binary|test)'} 104: ${BAZEL_BUILD_MATCH_PATTERN__:='.*'} 105: ${BAZEL_QUERY_MATCH_PATTERN__:=''} 106 107# Usage: _bazel__get_rule_match_pattern <command> 108# Determine what kind of rules to match, based on command. 109_bazel__get_rule_match_pattern() { 110 local var_name pattern 111 if _bazel_completion_use_query; then 112 var_name="BAZEL_QUERY_MATCH_PATTERN" 113 else 114 var_name="BAZEL_BUILD_MATCH_PATTERN" 115 fi 116 if [[ "$1" =~ ^label-?([a-z]*)$ ]]; then 117 pattern=${BASH_REMATCH[1]:-} 118 if _bazel_completion_allow_tests_for_run; then 119 eval "echo \"\${${var_name}_RUNTEST__${pattern}:-\$${var_name}__${pattern}}\"" 120 else 121 eval "echo \"\$${var_name}__${pattern}\"" 122 fi 123 fi 124} 125 126# Compute workspace directory. Search for the innermost 127# enclosing directory with a boundary file (see 128# src/main/cpp/workspace_layout.cc). 129_bazel__get_workspace_path() { 130 local workspace=$PWD 131 while true; do 132 if [ -f "${workspace}/WORKSPACE" ] || \ 133 [ -f "${workspace}/WORKSPACE.bazel" ] || \ 134 [ -f "${workspace}/MODULE.bazel" ] || \ 135 [ -f "${workspace}/REPO.bazel" ]; then 136 break 137 elif [ -z "$workspace" ] || [ "$workspace" = "/" ]; then 138 workspace=$PWD 139 break; 140 fi 141 workspace=${workspace%/*} 142 done 143 echo $workspace 144} 145 146 147# Find the current piece of the line to complete, but only do word breaks at 148# certain characters. In particular, ignore these: "':= 149# This method also takes into account the current cursor position. 150# 151# Works with both bash 3 and 4! Bash 3 and 4 perform different word breaks when 152# computing the COMP_WORDS array. We need this here because Bazel options are of 153# the form --a=b, and labels of the form //some/label:target. 154_bazel__get_cword() { 155 local cur=${COMP_LINE:0:$COMP_POINT} 156 # This expression finds the last word break character, as defined in the 157 # COMP_WORDBREAKS variable, but without '=' or ':', which is not preceeded by 158 # a slash. Quote characters are also excluded. 159 local wordbreaks="$COMP_WORDBREAKS" 160 wordbreaks="${wordbreaks//\'/}" 161 wordbreaks="${wordbreaks//\"/}" 162 wordbreaks="${wordbreaks//:/}" 163 wordbreaks="${wordbreaks//=/}" 164 local word_start=$(expr "$cur" : '.*[^\]['"${wordbreaks}"']') 165 echo "${cur:$word_start}" 166} 167 168 169# Usage: _bazel__package_path <workspace> <displacement> 170# 171# Prints a list of package-path root directories, displaced using the 172# current displacement from the workspace. All elements have a 173# trailing slash. 174_bazel__package_path() { 175 local workspace=$1 displacement=$2 root 176 IFS=: 177 for root in ${BAZEL_COMPLETION_PACKAGE_PATH//\%workspace\%/$workspace}; do 178 unset IFS 179 echo "$root/$displacement" 180 done 181} 182 183# Usage: _bazel__options_for <command> 184# 185# Prints the set of options for a given Bazel command, e.g. "build". 186_bazel__options_for() { 187 local options 188 if [[ "${BAZEL_COMMAND_LIST}" =~ ^(.* )?$1( .*)?$ ]]; then 189 # assumes option names only use ASCII characters 190 local option_name=$(echo $1 | tr a-z A-Z | tr "-" "_") 191 eval "echo \${BAZEL_COMMAND_${option_name}_FLAGS}" | tr " " "\n" 192 fi 193} 194# Usage: _bazel__expansion_for <command> 195# 196# Prints the completion pattern for a given Bazel command, e.g. "build". 197_bazel__expansion_for() { 198 local options 199 if [[ "${BAZEL_COMMAND_LIST}" =~ ^(.* )?$1( .*)?$ ]]; then 200 # assumes option names only use ASCII characters 201 local option_name=$(echo $1 | tr a-z A-Z | tr "-" "_") 202 eval "echo \${BAZEL_COMMAND_${option_name}_ARGUMENT}" 203 fi 204} 205 206# Usage: _bazel__matching_targets <kind> <prefix> 207# 208# Prints target names of kind <kind> and starting with <prefix> in the BUILD 209# file given as standard input. <kind> is a basic regex (BRE) used to match the 210# bazel rule kind and <prefix> is the prefix of the target name. 211_bazel__matching_targets() { 212 local kind_pattern="$1" 213 local target_prefix="$2" 214 # The following commands do respectively: 215 # Remove BUILD file comments 216 # Replace \n by spaces to have the BUILD file in a single line 217 # Extract all rule types and target names 218 # Grep the kind pattern and the target prefix 219 # Returns the target name 220 sed 's/#.*$//' \ 221 | tr "\n" " " \ 222 | sed 's/\([a-zA-Z0-9_]*\) *(\([^)]* \)\{0,1\}name *= *['\''"]\([a-zA-Z0-9_/.+=,@~-]*\)['\''"][^)]*)/\ 223type:\1 name:\3\ 224/g' \ 225 | "grep" -E "^type:$kind_pattern name:$target_prefix" \ 226 | cut -d ':' -f 3 227} 228 229 230# Usage: _bazel__is_true <string> 231# 232# Returns true or false based on the input string. The following are 233# valid true values (the rest are false): "1", "true". 234_bazel__is_true() { 235 local str="$1" 236 [[ "$str" == "1" || "$str" == "true" ]] 237} 238 239# Usage: _bazel__expand_rules_in_package <workspace> <displacement> 240# <current> <label-type> 241# 242# Expands rules in specified packages, exploring all roots of 243# $BAZEL_COMPLETION_PACKAGE_PATH, not just $(pwd). Only rules 244# appropriate to the command are printed. Sets $COMPREPLY array to 245# result. 246# 247# If _bazel_completion_use_query has a successful exit code, 'bazel query' is 248# used instead, with the actual Bazel package path; 249# $BAZEL_COMPLETION_PACKAGE_PATH is ignored in this case, since the actual Bazel 250# value is likely to be more accurate. 251_bazel__expand_rules_in_package() { 252 local workspace=$1 displacement=$2 current=$3 label_type=$4 253 local package_name=$(echo "$current" | cut -f1 -d:) 254 local rule_prefix=$(echo "$current" | cut -f2 -d:) 255 local root buildfile rule_pattern r result 256 257 result= 258 pattern=$(_bazel__get_rule_match_pattern "$label_type") 259 if _bazel_completion_use_query; then 260 package_name=$(echo "$package_name" | tr -d "'\"") # remove quotes 261 result=$(${BAZEL} --output_base=/tmp/${BAZEL}-completion-$USER query \ 262 --keep_going --noshow_progress --output=label \ 263 "kind('$pattern rule', '$package_name:*')" 2>/dev/null | 264 cut -f2 -d: | "grep" "^$rule_prefix") 265 else 266 for root in $(_bazel__package_path "$workspace" "$displacement"); do 267 buildfile="$root/$package_name/BUILD.bazel" 268 if [ ! -f "$buildfile" ]; then 269 buildfile="$root/$package_name/BUILD" 270 fi 271 if [ -f "$buildfile" ]; then 272 result=$(_bazel__matching_targets \ 273 "$pattern" "$rule_prefix" <"$buildfile") 274 break 275 fi 276 done 277 fi 278 279 index=$(echo $result | wc -w) 280 if [ -n "$result" ]; then 281 echo "$result" | tr " " "\n" | sed 's|$| |' 282 fi 283 # Include ":all" wildcard if there was no unique match. (The zero 284 # case is tricky: we need to include "all" in that case since 285 # otherwise we won't expand "a" to "all" in the absence of rules 286 # starting with "a".) 287 if [ $index -ne 1 ] && expr all : "\\($rule_prefix\\)" >/dev/null; then 288 echo "all " 289 fi 290} 291 292# Usage: _bazel__expand_package_name <workspace> <displacement> <current-word> 293# <label-type> 294# 295# Expands directories, but explores all roots of 296# BAZEL_COMPLETION_PACKAGE_PATH, not just $(pwd). When a directory is 297# a bazel package, the completion offers "pkg:" so you can expand 298# inside the package. 299# Sets $COMPREPLY array to result. 300_bazel__expand_package_name() { 301 local workspace=$1 displacement=$2 current=$3 type=${4:-} root dir index 302 for root in $(_bazel__package_path "$workspace" "$displacement"); do 303 found=0 304 for dir in $(compgen -d $root$current); do 305 [ -L "$dir" ] && continue # skip symlinks (e.g. bazel-bin) 306 [[ "$dir" =~ ^(.*/)?\.[^/]*$ ]] && continue # skip dotted dir (e.g. .git) 307 found=1 308 echo "${dir#$root}/" 309 if [ -f $dir/BUILD.bazel -o -f $dir/BUILD ]; then 310 if [ "${type}" = "label-package" ]; then 311 echo "${dir#$root} " 312 else 313 echo "${dir#$root}:" 314 fi 315 fi 316 done 317 [ $found -gt 0 ] && break # Stop searching package path upon first match. 318 done 319} 320 321# Usage: _bazel__expand_target_pattern <workspace> <displacement> 322# <word> <label-syntax> 323# 324# Expands "word" to match target patterns, using the current workspace 325# and displacement from it. "command" is used to filter rules. 326# Sets $COMPREPLY array to result. 327_bazel__expand_target_pattern() { 328 local workspace=$1 displacement=$2 current=$3 label_syntax=$4 329 case "$current" in 330 //*:*) # Expand rule names within package, no displacement. 331 if [ "${label_syntax}" = "label-package" ]; then 332 compgen -S " " -W "BUILD" "$(echo current | cut -f ':' -d2)" 333 else 334 _bazel__expand_rules_in_package "$workspace" "" "$current" "$label_syntax" 335 fi 336 ;; 337 *:*) # Expand rule names within package, displaced. 338 if [ "${label_syntax}" = "label-package" ]; then 339 compgen -S " " -W "BUILD" "$(echo current | cut -f ':' -d2)" 340 else 341 _bazel__expand_rules_in_package \ 342 "$workspace" "$displacement" "$current" "$label_syntax" 343 fi 344 ;; 345 //*) # Expand filenames using package-path, no displacement 346 _bazel__expand_package_name "$workspace" "" "$current" "$label_syntax" 347 ;; 348 *) # Expand filenames using package-path, displaced. 349 if [ -n "$current" ]; then 350 _bazel__expand_package_name "$workspace" "$displacement" "$current" "$label_syntax" 351 fi 352 ;; 353 esac 354} 355 356_bazel__get_command() { 357 for word in "${COMP_WORDS[@]:1:COMP_CWORD-1}"; do 358 if echo "$BAZEL_COMMAND_LIST" | "grep" -wsq -e "$word"; then 359 echo $word 360 break 361 fi 362 done 363} 364 365# Returns the displacement to the workspace given in $1 366_bazel__get_displacement() { 367 if [[ "$PWD" =~ ^$1/.*$ ]]; then 368 echo ${PWD##$1/}/ 369 fi 370} 371 372 373# Usage: _bazel__complete_pattern <workspace> <displacement> <current> 374# <type> 375# 376# Expand a word according to a type. The currently supported types are: 377# - {a,b,c}: an enum that can take value a, b or c 378# - label: a label of any kind 379# - label-bin: a label to a runnable rule (basically to a _binary rule) 380# - label-test: a label to a test rule 381# - info-key: an info key as listed by `bazel help info-keys` 382# - command: the name of a command 383# - path: a file path 384# - combinaison of previous type using | as separator 385_bazel__complete_pattern() { 386 local workspace=$1 displacement=$2 current=$3 types=$4 387 for type in $(echo $types | tr "|" "\n"); do 388 case "$type" in 389 label*) 390 _bazel__expand_target_pattern "$workspace" "$displacement" \ 391 "$current" "$type" 392 ;; 393 info-key) 394 compgen -S " " -W "${BAZEL_INFO_KEYS}" -- "$current" 395 ;; 396 "command") 397 local commands=$(echo "${BAZEL_COMMAND_LIST}" \ 398 | tr " " "\n" | "grep" -v "^${BAZEL_IGNORED_COMMAND_REGEX}$") 399 compgen -S " " -W "${commands}" -- "$current" 400 ;; 401 path) 402 for file in $(compgen -f -- "$current"); do 403 if [[ -d "$file" ]]; then 404 echo "$file/" 405 else 406 echo "$file " 407 fi 408 done 409 ;; 410 *) 411 compgen -S " " -W "$type" -- "$current" 412 ;; 413 esac 414 done 415} 416 417# Usage: _bazel__expand_options <workspace> <displacement> <current-word> 418# <options> 419# 420# Expands options, making sure that if current-word contains an equals sign, 421# it is handled appropriately. 422_bazel__expand_options() { 423 local workspace="$1" displacement="$2" cur="$3" options="$4" 424 if [[ $cur =~ = ]]; then 425 # also expands special labels 426 current=$(echo "$cur" | cut -f2 -d=) 427 _bazel__complete_pattern "$workspace" "$displacement" "$current" \ 428 "$(compgen -W "$options" -- "$cur" | cut -f2 -d=)" \ 429 | sort -u 430 else 431 compgen -W "$(echo "$options" | sed 's|=.*$|=|')" -- "$cur" \ 432 | sed 's|\([^=]\)$|\1 |' 433 fi 434} 435 436# Usage: _bazel__abspath <file> 437# 438# 439# Returns the absolute path to a file 440_bazel__abspath() { 441 echo "$(cd "$(dirname "$1")"; pwd)/$(basename "$1")" 442 } 443 444# Usage: _bazel__rc_imports <workspace> <rc-file> 445# 446# 447# Returns the list of other RC imported (or try-imported) by a given RC file 448# Only return files we can actually find, and only return absolute paths 449_bazel__rc_imports() { 450 local workspace="$1" rc_dir rc_file="$2" import_files 451 rc_dir=$(dirname $rc_file) 452 import_files=$(cat $rc_file \ 453 | sed 's/#.*//' \ 454 | sed -E "/^(try-){0,1}import/!d" \ 455 | sed -E "s/^(try-){0,1}import ([^ ]*).*$/\2/" \ 456 | sort -u) 457 458 local confirmed_import_files=() 459 for import in $import_files; do 460 # rc imports can use %workspace% to refer to the workspace, and we need to substitute that here 461 import=${import//\%workspace\%/$workspace} 462 if [[ "${import:0:1}" != "/" ]] ; then 463 import="$rc_dir/$import" 464 fi 465 import=$(_bazel__abspath $import) 466 # Don't bother dealing with it further if we can't find it 467 if [ -f "$import" ] ; then 468 confirmed_import_files+=($import) 469 fi 470 done 471 echo "${confirmed_import_files[@]}" 472} 473 474# Usage: _bazel__rc_expand_imports <workspace> <processed-rc-files ...> __new__ <new-rc-files ...> 475# 476# 477# Function that receives a workspace and two lists. The first list is a list of RC files that have 478# already been processed, and the second list contains new RC files that need processing. Each new file will be 479# processed for "{try-}import" lines to discover more RC files that need parsing. 480# Any lines we find in "{try-}import" will be checked against known files (and not processed again if known). 481_bazel__rc_expand_imports() { 482 local workspace="$1" rc_file new_found="no" processed_files=() to_process_files=() discovered_files=() 483 # We've consumed workspace 484 shift 485 # Now grab everything else 486 local all_files=($@) 487 for rc_file in ${all_files[@]} ; do 488 if [ "$rc_file" == "__new__" ] ; then 489 new_found="yes" 490 continue 491 elif [ "$new_found" == "no" ] ; then 492 processed_files+=($rc_file) 493 else 494 to_process_files+=($rc_file) 495 fi 496 done 497 498 # For all the non-processed files, get the list of imports out of each of those files 499 for rc_file in "${to_process_files[@]}"; do 500 local potential_new_files+=($(_bazel__rc_imports "$workspace" "$rc_file")) 501 processed_files+=($rc_file) 502 for potential_new_file in ${potential_new_files[@]} ; do 503 if [[ ! " ${processed_files[@]} " =~ " ${potential_new_file} " ]] ; then 504 discovered_files+=($potential_new_file) 505 fi 506 done 507 done 508 509 # Finally, return two lists (separated by __new__) of the files that have been fully processed, and 510 # the files that need processing. 511 echo "${processed_files[@]}" "__new__" "${discovered_files[@]}" 512} 513 514# Usage: _bazel__rc_files <workspace> 515# 516# 517# Returns the list of RC files to examine, given the current command-line args. 518_bazel__rc_files() { 519 local workspace="$1" new_files=() processed_files=() 520 # Handle the workspace RC unless --noworkspace_rc says not to. 521 if [[ ! "${COMP_LINE}" =~ "--noworkspace_rc" ]]; then 522 local workspacerc="$workspace/.bazelrc" 523 if [ -f "$workspacerc" ] ; then 524 new_files+=($(_bazel__abspath $workspacerc)) 525 fi 526 fi 527 # Handle the $HOME RC unless --nohome_rc says not to. 528 if [[ ! "${COMP_LINE}" =~ "--nohome_rc" ]]; then 529 local homerc="$HOME/.bazelrc" 530 if [ -f "$homerc" ] ; then 531 new_files+=($(_bazel__abspath $homerc)) 532 fi 533 fi 534 # Handle the system level RC unless --nosystem_rc says not to. 535 if [[ ! "${COMP_LINE}" =~ "--nosystem_rc" ]]; then 536 local systemrc="/etc/bazel.bazelrc" 537 if [ -f "$systemrc" ] ; then 538 new_files+=($(_bazel__abspath $systemrc)) 539 fi 540 fi 541 # Finally, if the user specified any on the command-line, then grab those 542 # keeping in mind that there may be several. 543 if [[ "${COMP_LINE}" =~ "--bazelrc=" ]]; then 544 # There's got to be a better way to do this, but... it gets the job done, 545 # even if there are multiple --bazelrc on the command line. The sed command 546 # SHOULD be simpler, but capturing several instances of the same pattern 547 # from the same line is tricky because of the greedy nature of .* 548 # Instead we transform it to multiple lines, and then back. 549 local cmdlnrcs=$(echo ${COMP_LINE} | sed -E "s/--bazelrc=/\n--bazelrc=/g" | sed -E "/--bazelrc/!d;s/^--bazelrc=([^ ]*).*$/\1/g" | tr "\n" " ") 550 for rc_file in $cmdlnrcs; do 551 if [ -f "$rc_file" ] ; then 552 new_files+=($(_bazel__abspath $rc_file)) 553 fi 554 done 555 fi 556 557 # Each time we call _bazel__rc_expand_imports, it may find new files which then need to be expanded as well, 558 # so we loop until we've processed all new files. 559 while (( ${#new_files[@]} > 0 )) ; do 560 local all_files=($(_bazel__rc_expand_imports "$workspace" "${processed_files[@]}" "__new__" "${new_files[@]}")) 561 local new_found="no" 562 new_files=() 563 processed_files=() 564 for file in ${all_files[@]} ; do 565 if [ "$file" == "__new__" ] ; then 566 new_found="yes" 567 continue 568 elif [ "$new_found" == "no" ] ; then 569 processed_files+=($file) 570 else 571 new_files+=($file) 572 fi 573 done 574 done 575 576 echo "${processed_files[@]}" 577} 578 579# Usage: _bazel__all_configs <workspace> <command> 580# 581# 582# Gets contents of all RC files and searches them for config names 583# that could be used for expansion. 584_bazel__all_configs() { 585 local workspace="$1" command="$2" rc_files 586 587 # Start out getting a list of all RC files that we can look for configs in 588 # This respects the various command line options documented at 589 # https://bazel.build/docs/bazelrc 590 rc_files=$(_bazel__rc_files "$workspace") 591 592 # Commands can inherit configs from other commands, so build up command_match, which is 593 # a match list of the various commands that we can match against, given the command 594 # specified by the user 595 local build_inherit=("aquery" "clean" "coverage" "cquery" "info" "mobile-install" "print_action" "run" "test") 596 local test_inherit=("coverage") 597 local command_match="$command" 598 if [[ "${build_inherit[@]}" =~ "$command" ]]; then 599 command_match="$command_match|build" 600 fi 601 if [[ "${test_inherit[@]}" =~ "$command" ]]; then 602 command_match="$command_match|test" 603 fi 604 605 # The following commands do respectively: 606 # Gets the contents of all relevant/allowed RC files 607 # Remove file comments 608 # Filter only the configs relevant to the current command 609 # Extract the config names 610 # Filters out redundant names and returns the results 611 cat $rc_files \ 612 | sed 's/#.*//' \ 613 | sed -E "/^($command_match):/!d" \ 614 | sed -E "s/^($command_match):([^ ]*).*$/\2/" \ 615 | sort -u 616} 617 618# Usage: _bazel__expand_config <workspace> <command> <current-word> 619# 620# 621# Expands configs, checking through the allowed rc files and parsing for configs 622# relevant to the current command 623_bazel__expand_config() { 624 local workspace="$1" command="$2" cur="$3" rc_files all_configs 625 all_configs=$(_bazel__all_configs "$workspace" "$command") 626 compgen -S " " -W "$all_configs" -- "$cur" 627} 628 629_bazel__is_after_doubledash() { 630 for word in "${COMP_WORDS[@]:1:COMP_CWORD-1}"; do 631 if [[ "$word" == "--" ]]; then 632 return 0 633 fi 634 done 635 return 1 636} 637 638_bazel__complete_stdout() { 639 local cur=$(_bazel__get_cword) word command displacement workspace 640 641 # Determine command: "" (startup-options) or one of $BAZEL_COMMAND_LIST. 642 command="$(_bazel__get_command)" 643 644 workspace="$(_bazel__get_workspace_path)" 645 displacement="$(_bazel__get_displacement ${workspace})" 646 647 if _bazel__is_after_doubledash && [[ "$command" == "run" ]]; then 648 _bazel__complete_pattern "$workspace" "$displacement" "${cur#*=}" "path" 649 else 650 case "$command" in 651 "") # Expand startup-options or commands 652 local commands=$(echo "${BAZEL_COMMAND_LIST}" \ 653 | tr " " "\n" | "grep" -v "^${BAZEL_IGNORED_COMMAND_REGEX}$") 654 _bazel__expand_options "$workspace" "$displacement" "$cur" \ 655 "${commands}\ 656 ${BAZEL_STARTUP_OPTIONS}" 657 ;; 658 659 *) 660 case "$cur" in 661 --config=*) # Expand options: 662 _bazel__expand_config "$workspace" "$command" "${cur#"--config="}" 663 ;; 664 -*) # Expand options: 665 _bazel__expand_options "$workspace" "$displacement" "$cur" \ 666 "$(_bazel__options_for $command)" 667 ;; 668 *) # Expand target pattern 669 expansion_pattern="$(_bazel__expansion_for $command)" 670 NON_QUOTE_REGEX="^[\"']" 671 if [[ $command = query && $cur =~ $NON_QUOTE_REGEX ]]; then 672 : # Ideally we would expand query expressions---it's not 673 # that hard, conceptually---but readline is just too 674 # damn complex when it comes to quotation. Instead, 675 # for query, we just expand target patterns, unless 676 # the first char is a quote. 677 elif [ -n "$expansion_pattern" ]; then 678 _bazel__complete_pattern \ 679 "$workspace" "$displacement" "$cur" "$expansion_pattern" 680 fi 681 ;; 682 esac 683 ;; 684 esac 685 fi 686} 687 688_bazel__to_compreply() { 689 local replies="$1" 690 COMPREPLY=() 691 # Trick to preserve whitespaces 692 while IFS="" read -r reply; do 693 COMPREPLY+=("${reply}") 694 done < <(echo "${replies}") 695 # Null may be set despite there being no completions 696 if [ ${#COMPREPLY[@]} -eq 1 ] && [ -z ${COMPREPLY[0]} ]; then 697 COMPREPLY=() 698 fi 699} 700 701_bazel__complete() { 702 _bazel__to_compreply "$(_bazel__complete_stdout)" 703} 704 705# Some users have aliases such as bt="bazel test" or bb="bazel build", this 706# completion function allows them to have auto-completion for these aliases. 707_bazel__complete_target_stdout() { 708 local cur=$(_bazel__get_cword) word command displacement workspace 709 710 # Determine command: "" (startup-options) or one of $BAZEL_COMMAND_LIST. 711 command="$1" 712 713 workspace="$(_bazel__get_workspace_path)" 714 displacement="$(_bazel__get_displacement ${workspace})" 715 716 _bazel__to_compreply "$(_bazel__expand_target_pattern "$workspace" "$displacement" \ 717 "$cur" "$(_bazel__expansion_for $command)")" 718} 719 720# default completion for bazel 721complete -F _bazel__complete -o nospace "${BAZEL}" 722complete -F _bazel__complete -o nospace "${IBAZEL}" 723BAZEL_COMMAND_LIST="analyze-profile aquery build canonicalize-flags clean config coverage cquery dump fetch help info license mobile-install mod print_action query run shutdown sync test version" 724BAZEL_INFO_KEYS=" 725workspace 726install_base 727output_base 728execution_root 729output_path 730client-env 731bazel-bin 732bazel-genfiles 733bazel-testlogs 734release 735server_pid 736server_log 737package_path 738used-heap-size 739used-heap-size-after-gc 740committed-heap-size 741max-heap-size 742gc-time 743gc-count 744java-runtime 745java-vm 746java-home 747character-encoding 748defaults-package 749build-language 750default-package-path 751starlark-semantics 752worker_metrics 753local_resources 754" 755BAZEL_STARTUP_OPTIONS=" 756--autodetect_server_javabase 757--noautodetect_server_javabase 758--batch 759--nobatch 760--batch_cpu_scheduling 761--nobatch_cpu_scheduling 762--bazelrc= 763--block_for_lock 764--noblock_for_lock 765--client_debug 766--noclient_debug 767--connect_timeout_secs= 768--expand_configs_in_place 769--noexpand_configs_in_place 770--failure_detail_out=path 771--home_rc 772--nohome_rc 773--host_jvm_args= 774--host_jvm_debug 775--host_jvm_profile= 776--idle_server_tasks 777--noidle_server_tasks 778--ignore_all_rc_files 779--noignore_all_rc_files 780--io_nice_level= 781--local_startup_timeout_secs= 782--macos_qos_class= 783--max_idle_secs= 784--output_base=path 785--output_user_root=path 786--preemptible 787--nopreemptible 788--server_javabase= 789--server_jvm_out=path 790--shutdown_on_low_sys_mem 791--noshutdown_on_low_sys_mem 792--system_rc 793--nosystem_rc 794--unlimit_coredumps 795--nounlimit_coredumps 796--watchfs 797--nowatchfs 798--windows_enable_symlinks 799--nowindows_enable_symlinks 800--workspace_rc 801--noworkspace_rc 802" 803BAZEL_COMMAND_ANALYZE_PROFILE_ARGUMENT="path" 804BAZEL_COMMAND_ANALYZE_PROFILE_FLAGS=" 805--allow_yanked_versions= 806--announce_rc 807--noannounce_rc 808--attempt_to_print_relative_paths 809--noattempt_to_print_relative_paths 810--bep_maximum_open_remote_upload_files= 811--bes_backend= 812--bes_check_preceding_lifecycle_events 813--nobes_check_preceding_lifecycle_events 814--bes_header= 815--bes_instance_name= 816--bes_keywords= 817--bes_lifecycle_events 818--nobes_lifecycle_events 819--bes_oom_finish_upload_timeout= 820--bes_outerr_buffer_size= 821--bes_outerr_chunk_size= 822--bes_proxy= 823--bes_results_url= 824--bes_system_keywords= 825--bes_timeout= 826--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 827--build_event_binary_file= 828--build_event_binary_file_path_conversion 829--nobuild_event_binary_file_path_conversion 830--build_event_json_file= 831--build_event_json_file_path_conversion 832--nobuild_event_json_file_path_conversion 833--build_event_max_named_set_of_file_entries= 834--build_event_publish_all_actions 835--nobuild_event_publish_all_actions 836--build_event_text_file= 837--build_event_text_file_path_conversion 838--nobuild_event_text_file_path_conversion 839--build_metadata= 840--check_bazel_compatibility={error,warning,off} 841--check_bzl_visibility 842--nocheck_bzl_visibility 843--check_direct_dependencies={off,warning,error} 844--color={yes,no,auto} 845--config= 846--credential_helper= 847--credential_helper_cache_duration= 848--credential_helper_timeout= 849--curses={yes,no,auto} 850--disk_cache=path 851--distdir= 852--dump= 853--enable_bzlmod 854--noenable_bzlmod 855--enable_platform_specific_config 856--noenable_platform_specific_config 857--experimental_action_resource_set 858--noexperimental_action_resource_set 859--experimental_announce_profile_path 860--noexperimental_announce_profile_path 861--experimental_bep_target_summary 862--noexperimental_bep_target_summary 863--experimental_build_event_expand_filesets 864--noexperimental_build_event_expand_filesets 865--experimental_build_event_fully_resolve_fileset_symlinks 866--noexperimental_build_event_fully_resolve_fileset_symlinks 867--experimental_build_event_upload_max_retries= 868--experimental_build_event_upload_retry_minimum_delay= 869--experimental_build_event_upload_strategy= 870--experimental_bzl_visibility 871--noexperimental_bzl_visibility 872--experimental_cc_shared_library 873--noexperimental_cc_shared_library 874--experimental_circuit_breaker_strategy={failure} 875--experimental_collect_load_average_in_profiler 876--noexperimental_collect_load_average_in_profiler 877--experimental_collect_pressure_stall_indicators 878--noexperimental_collect_pressure_stall_indicators 879--experimental_collect_resource_estimation 880--noexperimental_collect_resource_estimation 881--experimental_collect_system_network_usage 882--noexperimental_collect_system_network_usage 883--experimental_collect_worker_data_in_profiler 884--noexperimental_collect_worker_data_in_profiler 885--experimental_command_profile 886--noexperimental_command_profile 887--experimental_disable_external_package 888--noexperimental_disable_external_package 889--experimental_downloader_config= 890--experimental_enable_android_migration_apis 891--noexperimental_enable_android_migration_apis 892--experimental_enable_scl_dialect 893--noexperimental_enable_scl_dialect 894--experimental_google_legacy_api 895--noexperimental_google_legacy_api 896--experimental_guard_against_concurrent_changes 897--noexperimental_guard_against_concurrent_changes 898--experimental_isolated_extension_usages 899--noexperimental_isolated_extension_usages 900--experimental_java_library_export 901--noexperimental_java_library_export 902--experimental_platforms_api 903--noexperimental_platforms_api 904--experimental_profile_additional_tasks= 905--experimental_profile_include_primary_output 906--noexperimental_profile_include_primary_output 907--experimental_profile_include_target_label 908--noexperimental_profile_include_target_label 909--experimental_record_metrics_for_all_mnemonics 910--noexperimental_record_metrics_for_all_mnemonics 911--experimental_remote_cache_async 912--noexperimental_remote_cache_async 913--experimental_remote_cache_lease_extension 914--noexperimental_remote_cache_lease_extension 915--experimental_remote_cache_ttl= 916--experimental_remote_capture_corrupted_outputs=path 917--experimental_remote_discard_merkle_trees 918--noexperimental_remote_discard_merkle_trees 919--experimental_remote_downloader= 920--experimental_remote_downloader_local_fallback 921--noexperimental_remote_downloader_local_fallback 922--experimental_remote_execution_keepalive 923--noexperimental_remote_execution_keepalive 924--experimental_remote_failure_rate_threshold= 925--experimental_remote_failure_window_interval= 926--experimental_remote_mark_tool_inputs 927--noexperimental_remote_mark_tool_inputs 928--experimental_remote_merkle_tree_cache 929--noexperimental_remote_merkle_tree_cache 930--experimental_remote_merkle_tree_cache_size= 931--experimental_remote_require_cached 932--noexperimental_remote_require_cached 933--experimental_repo_remote_exec 934--noexperimental_repo_remote_exec 935--experimental_repository_cache_hardlinks 936--noexperimental_repository_cache_hardlinks 937--experimental_repository_downloader_retries= 938--experimental_resolved_file_instead_of_workspace= 939--experimental_run_bep_event_include_residue 940--noexperimental_run_bep_event_include_residue 941--experimental_scale_timeouts= 942--experimental_sibling_repository_layout 943--noexperimental_sibling_repository_layout 944--experimental_stream_log_file_uploads 945--noexperimental_stream_log_file_uploads 946--experimental_ui_max_stdouterr_bytes= 947--experimental_windows_watchfs 948--noexperimental_windows_watchfs 949--experimental_worker_for_repo_fetching={off,platform,virtual} 950--experimental_workspace_rules_log_file=path 951--gc_thrashing_limits= 952--gc_thrashing_threshold= 953--generate_json_trace_profile={auto,yes,no} 954--nogenerate_json_trace_profile 955--google_auth_scopes= 956--google_credentials= 957--google_default_credentials 958--nogoogle_default_credentials 959--grpc_keepalive_time= 960--grpc_keepalive_timeout= 961--heap_dump_on_oom 962--noheap_dump_on_oom 963--heuristically_drop_nodes 964--noheuristically_drop_nodes 965--http_connector_attempts= 966--http_connector_retry_max_timeout= 967--http_timeout_scaling= 968--ignore_dev_dependency 969--noignore_dev_dependency 970--incompatible_allow_tags_propagation 971--noincompatible_allow_tags_propagation 972--incompatible_always_check_depset_elements 973--noincompatible_always_check_depset_elements 974--incompatible_depset_for_java_output_source_jars 975--noincompatible_depset_for_java_output_source_jars 976--incompatible_depset_for_libraries_to_link_getter 977--noincompatible_depset_for_libraries_to_link_getter 978--incompatible_disable_non_executable_java_binary 979--noincompatible_disable_non_executable_java_binary 980--incompatible_disable_objc_library_transition 981--noincompatible_disable_objc_library_transition 982--incompatible_disable_starlark_host_transitions 983--noincompatible_disable_starlark_host_transitions 984--incompatible_disable_target_provider_fields 985--noincompatible_disable_target_provider_fields 986--incompatible_disallow_empty_glob 987--noincompatible_disallow_empty_glob 988--incompatible_disallow_struct_provider_syntax 989--noincompatible_disallow_struct_provider_syntax 990--incompatible_disallow_symlink_file_to_dir 991--noincompatible_disallow_symlink_file_to_dir 992--incompatible_do_not_split_linking_cmdline 993--noincompatible_do_not_split_linking_cmdline 994--incompatible_enable_proto_toolchain_resolution 995--noincompatible_enable_proto_toolchain_resolution 996--incompatible_existing_rules_immutable_view 997--noincompatible_existing_rules_immutable_view 998--incompatible_fail_on_unknown_attributes 999--noincompatible_fail_on_unknown_attributes 1000--incompatible_fix_package_group_reporoot_syntax 1001--noincompatible_fix_package_group_reporoot_syntax 1002--incompatible_java_common_parameters 1003--noincompatible_java_common_parameters 1004--incompatible_merge_fixed_and_default_shell_env 1005--noincompatible_merge_fixed_and_default_shell_env 1006--incompatible_new_actions_api 1007--noincompatible_new_actions_api 1008--incompatible_no_attr_license 1009--noincompatible_no_attr_license 1010--incompatible_no_implicit_file_export 1011--noincompatible_no_implicit_file_export 1012--incompatible_no_rule_outputs_param 1013--noincompatible_no_rule_outputs_param 1014--incompatible_objc_provider_remove_linking_info 1015--noincompatible_objc_provider_remove_linking_info 1016--incompatible_package_group_has_public_syntax 1017--noincompatible_package_group_has_public_syntax 1018--incompatible_remote_build_event_upload_respect_no_cache 1019--noincompatible_remote_build_event_upload_respect_no_cache 1020--incompatible_remote_dangling_symlinks 1021--noincompatible_remote_dangling_symlinks 1022--incompatible_remote_disallow_symlink_in_tree_artifact 1023--noincompatible_remote_disallow_symlink_in_tree_artifact 1024--incompatible_remote_downloader_send_all_headers 1025--noincompatible_remote_downloader_send_all_headers 1026--incompatible_remote_output_paths_relative_to_input_root 1027--noincompatible_remote_output_paths_relative_to_input_root 1028--incompatible_remote_results_ignore_disk 1029--noincompatible_remote_results_ignore_disk 1030--incompatible_remote_symlinks 1031--noincompatible_remote_symlinks 1032--incompatible_require_linker_input_cc_api 1033--noincompatible_require_linker_input_cc_api 1034--incompatible_run_shell_command_string 1035--noincompatible_run_shell_command_string 1036--incompatible_stop_exporting_language_modules 1037--noincompatible_stop_exporting_language_modules 1038--incompatible_struct_has_no_methods 1039--noincompatible_struct_has_no_methods 1040--incompatible_top_level_aspects_require_providers 1041--noincompatible_top_level_aspects_require_providers 1042--incompatible_unambiguous_label_stringification 1043--noincompatible_unambiguous_label_stringification 1044--incompatible_use_cc_configure_from_rules_cc 1045--noincompatible_use_cc_configure_from_rules_cc 1046--incompatible_visibility_private_attributes_at_definition 1047--noincompatible_visibility_private_attributes_at_definition 1048--keep_state_after_build 1049--nokeep_state_after_build 1050--legacy_important_outputs 1051--nolegacy_important_outputs 1052--lockfile_mode={off,update,error} 1053--logging= 1054--max_computation_steps= 1055--memory_profile=path 1056--memory_profile_stable_heap_parameters= 1057--nested_set_depth_limit= 1058--override_module= 1059--override_repository= 1060--profile=path 1061--progress_in_terminal_title 1062--noprogress_in_terminal_title 1063--record_full_profiler_data 1064--norecord_full_profiler_data 1065--registry= 1066--remote_accept_cached 1067--noremote_accept_cached 1068--remote_build_event_upload={all,minimal} 1069--remote_bytestream_uri_prefix= 1070--remote_cache= 1071--remote_cache_compression 1072--noremote_cache_compression 1073--remote_cache_header= 1074--remote_default_exec_properties= 1075--remote_default_platform_properties= 1076--remote_download_all 1077--remote_download_minimal 1078--remote_download_outputs={all,minimal,toplevel} 1079--remote_download_regex= 1080--remote_download_symlink_template= 1081--remote_download_toplevel 1082--remote_downloader_header= 1083--remote_exec_header= 1084--remote_execution_priority= 1085--remote_executor= 1086--remote_grpc_log=path 1087--remote_header= 1088--remote_instance_name= 1089--remote_local_fallback 1090--noremote_local_fallback 1091--remote_local_fallback_strategy= 1092--remote_max_connections= 1093--remote_print_execution_messages={failure,success,all} 1094--remote_proxy= 1095--remote_result_cache_priority= 1096--remote_retries= 1097--remote_retry_max_delay= 1098--remote_timeout= 1099--remote_upload_local_results 1100--noremote_upload_local_results 1101--remote_verify_downloads 1102--noremote_verify_downloads 1103--repo_env= 1104--repository_cache=path 1105--repository_cache_urls_as_default_canonical_id 1106--norepository_cache_urls_as_default_canonical_id 1107--repository_disable_download 1108--norepository_disable_download 1109--show_progress 1110--noshow_progress 1111--show_progress_rate_limit= 1112--show_timestamps 1113--noshow_timestamps 1114--skyframe_high_water_mark_full_gc_drops_per_invocation= 1115--skyframe_high_water_mark_minor_gc_drops_per_invocation= 1116--skyframe_high_water_mark_threshold= 1117--slim_profile 1118--noslim_profile 1119--starlark_cpu_profile= 1120--tls_certificate= 1121--tls_client_certificate= 1122--tls_client_key= 1123--tool_tag= 1124--track_incremental_state 1125--notrack_incremental_state 1126--ui_actions_shown= 1127--ui_event_filters= 1128--watchfs 1129--nowatchfs 1130" 1131BAZEL_COMMAND_AQUERY_ARGUMENT="label" 1132BAZEL_COMMAND_AQUERY_FLAGS=" 1133--action_env= 1134--allow_analysis_cache_discard 1135--noallow_analysis_cache_discard 1136--allow_analysis_failures 1137--noallow_analysis_failures 1138--allow_yanked_versions= 1139--analysis_testing_deps_limit= 1140--android_compiler= 1141--android_cpu= 1142--android_crosstool_top=label 1143--android_databinding_use_androidx 1144--noandroid_databinding_use_androidx 1145--android_databinding_use_v3_4_args 1146--noandroid_databinding_use_v3_4_args 1147--android_dynamic_mode={off,default,fully} 1148--android_grte_top=label 1149--android_manifest_merger={legacy,android,force_android} 1150--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 1151--android_platforms= 1152--android_resource_shrinking 1153--noandroid_resource_shrinking 1154--android_sdk=label 1155--announce_rc 1156--noannounce_rc 1157--apk_signing_method={v1,v2,v1_v2,v4} 1158--apple_crosstool_top=label 1159--apple_generate_dsym 1160--noapple_generate_dsym 1161--aspect_deps={off,conservative,precise} 1162--aspects= 1163--aspects_parameters= 1164--attempt_to_print_relative_paths 1165--noattempt_to_print_relative_paths 1166--auto_cpu_environment_group=label 1167--auto_output_filter={none,all,packages,subpackages} 1168--bep_maximum_open_remote_upload_files= 1169--bes_backend= 1170--bes_check_preceding_lifecycle_events 1171--nobes_check_preceding_lifecycle_events 1172--bes_header= 1173--bes_instance_name= 1174--bes_keywords= 1175--bes_lifecycle_events 1176--nobes_lifecycle_events 1177--bes_oom_finish_upload_timeout= 1178--bes_outerr_buffer_size= 1179--bes_outerr_chunk_size= 1180--bes_proxy= 1181--bes_results_url= 1182--bes_system_keywords= 1183--bes_timeout= 1184--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 1185--break_build_on_parallel_dex2oat_failure 1186--nobreak_build_on_parallel_dex2oat_failure 1187--build 1188--nobuild 1189--build_event_binary_file= 1190--build_event_binary_file_path_conversion 1191--nobuild_event_binary_file_path_conversion 1192--build_event_json_file= 1193--build_event_json_file_path_conversion 1194--nobuild_event_json_file_path_conversion 1195--build_event_max_named_set_of_file_entries= 1196--build_event_publish_all_actions 1197--nobuild_event_publish_all_actions 1198--build_event_text_file= 1199--build_event_text_file_path_conversion 1200--nobuild_event_text_file_path_conversion 1201--build_manual_tests 1202--nobuild_manual_tests 1203--build_metadata= 1204--build_python_zip={auto,yes,no} 1205--nobuild_python_zip 1206--build_runfile_links 1207--nobuild_runfile_links 1208--build_runfile_manifests 1209--nobuild_runfile_manifests 1210--build_tag_filters= 1211--build_test_dwp 1212--nobuild_test_dwp 1213--build_tests_only 1214--nobuild_tests_only 1215--cache_test_results={auto,yes,no} 1216--nocache_test_results 1217--catalyst_cpus= 1218--cc_output_directory_tag= 1219--cc_proto_library_header_suffixes= 1220--cc_proto_library_source_suffixes= 1221--check_bazel_compatibility={error,warning,off} 1222--check_bzl_visibility 1223--nocheck_bzl_visibility 1224--check_direct_dependencies={off,warning,error} 1225--check_licenses 1226--nocheck_licenses 1227--check_tests_up_to_date 1228--nocheck_tests_up_to_date 1229--check_up_to_date 1230--nocheck_up_to_date 1231--check_visibility 1232--nocheck_visibility 1233--collect_code_coverage 1234--nocollect_code_coverage 1235--color={yes,no,auto} 1236--combined_report={none,lcov} 1237--compilation_mode={fastbuild,dbg,opt} 1238--compile_one_dependency 1239--nocompile_one_dependency 1240--compiler= 1241--config= 1242--conlyopt= 1243--consistent_labels 1244--noconsistent_labels 1245--copt= 1246--coverage_output_generator=label 1247--coverage_report_generator=label 1248--coverage_support=label 1249--cpu= 1250--credential_helper= 1251--credential_helper_cache_duration= 1252--credential_helper_timeout= 1253--crosstool_top=label 1254--cs_fdo_absolute_path= 1255--cs_fdo_instrument= 1256--cs_fdo_profile=label 1257--curses={yes,no,auto} 1258--custom_malloc=label 1259--cxxopt= 1260--debug_spawn_scheduler 1261--nodebug_spawn_scheduler 1262--define= 1263--deleted_packages= 1264--desugar_for_android 1265--nodesugar_for_android 1266--desugar_java8_libs 1267--nodesugar_java8_libs 1268--device_debug_entitlements 1269--nodevice_debug_entitlements 1270--discard_analysis_cache 1271--nodiscard_analysis_cache 1272--disk_cache=path 1273--distdir= 1274--dynamic_local_execution_delay= 1275--dynamic_local_strategy= 1276--dynamic_mode={off,default,fully} 1277--dynamic_remote_strategy= 1278--embed_label= 1279--enable_bzlmod 1280--noenable_bzlmod 1281--enable_fdo_profile_absolute_path 1282--noenable_fdo_profile_absolute_path 1283--enable_platform_specific_config 1284--noenable_platform_specific_config 1285--enable_runfiles={auto,yes,no} 1286--noenable_runfiles 1287--enforce_constraints 1288--noenforce_constraints 1289--execution_log_binary_file=path 1290--execution_log_json_file=path 1291--execution_log_sort 1292--noexecution_log_sort 1293--expand_test_suites 1294--noexpand_test_suites 1295--experimental_action_listener= 1296--experimental_action_resource_set 1297--noexperimental_action_resource_set 1298--experimental_add_exec_constraints_to_targets= 1299--experimental_android_compress_java_resources 1300--noexperimental_android_compress_java_resources 1301--experimental_android_databinding_v2 1302--noexperimental_android_databinding_v2 1303--experimental_android_resource_shrinking 1304--noexperimental_android_resource_shrinking 1305--experimental_android_rewrite_dexes_with_rex 1306--noexperimental_android_rewrite_dexes_with_rex 1307--experimental_android_use_parallel_dex2oat 1308--noexperimental_android_use_parallel_dex2oat 1309--experimental_announce_profile_path 1310--noexperimental_announce_profile_path 1311--experimental_bep_target_summary 1312--noexperimental_bep_target_summary 1313--experimental_build_event_expand_filesets 1314--noexperimental_build_event_expand_filesets 1315--experimental_build_event_fully_resolve_fileset_symlinks 1316--noexperimental_build_event_fully_resolve_fileset_symlinks 1317--experimental_build_event_upload_max_retries= 1318--experimental_build_event_upload_retry_minimum_delay= 1319--experimental_build_event_upload_strategy= 1320--experimental_bzl_visibility 1321--noexperimental_bzl_visibility 1322--experimental_cancel_concurrent_tests 1323--noexperimental_cancel_concurrent_tests 1324--experimental_cc_shared_library 1325--noexperimental_cc_shared_library 1326--experimental_check_desugar_deps 1327--noexperimental_check_desugar_deps 1328--experimental_circuit_breaker_strategy={failure} 1329--experimental_collect_code_coverage_for_generated_files 1330--noexperimental_collect_code_coverage_for_generated_files 1331--experimental_collect_load_average_in_profiler 1332--noexperimental_collect_load_average_in_profiler 1333--experimental_collect_local_sandbox_action_metrics 1334--noexperimental_collect_local_sandbox_action_metrics 1335--experimental_collect_pressure_stall_indicators 1336--noexperimental_collect_pressure_stall_indicators 1337--experimental_collect_resource_estimation 1338--noexperimental_collect_resource_estimation 1339--experimental_collect_system_network_usage 1340--noexperimental_collect_system_network_usage 1341--experimental_collect_worker_data_in_profiler 1342--noexperimental_collect_worker_data_in_profiler 1343--experimental_command_profile 1344--noexperimental_command_profile 1345--experimental_convenience_symlinks={normal,clean,ignore,log_only} 1346--experimental_convenience_symlinks_bep_event 1347--noexperimental_convenience_symlinks_bep_event 1348--experimental_disable_external_package 1349--noexperimental_disable_external_package 1350--experimental_docker_image= 1351--experimental_docker_privileged 1352--noexperimental_docker_privileged 1353--experimental_docker_use_customized_images 1354--noexperimental_docker_use_customized_images 1355--experimental_docker_verbose 1356--noexperimental_docker_verbose 1357--experimental_downloader_config= 1358--experimental_dynamic_exclude_tools 1359--noexperimental_dynamic_exclude_tools 1360--experimental_dynamic_ignore_local_signals= 1361--experimental_dynamic_local_load_factor= 1362--experimental_dynamic_slow_remote_time= 1363--experimental_enable_android_migration_apis 1364--noexperimental_enable_android_migration_apis 1365--experimental_enable_docker_sandbox 1366--noexperimental_enable_docker_sandbox 1367--experimental_enable_scl_dialect 1368--noexperimental_enable_scl_dialect 1369--experimental_execution_log_file=path 1370--experimental_extra_action_filter= 1371--experimental_extra_action_top_level_only 1372--noexperimental_extra_action_top_level_only 1373--experimental_fetch_all_coverage_outputs 1374--noexperimental_fetch_all_coverage_outputs 1375--experimental_filter_library_jar_with_program_jar 1376--noexperimental_filter_library_jar_with_program_jar 1377--experimental_generate_llvm_lcov 1378--noexperimental_generate_llvm_lcov 1379--experimental_google_legacy_api 1380--noexperimental_google_legacy_api 1381--experimental_guard_against_concurrent_changes 1382--noexperimental_guard_against_concurrent_changes 1383--experimental_import_deps_checking={off,warning,error} 1384--experimental_include_xcode_execution_requirements 1385--noexperimental_include_xcode_execution_requirements 1386--experimental_inmemory_dotd_files 1387--noexperimental_inmemory_dotd_files 1388--experimental_inmemory_jdeps_files 1389--noexperimental_inmemory_jdeps_files 1390--experimental_inprocess_symlink_creation 1391--noexperimental_inprocess_symlink_creation 1392--experimental_isolated_extension_usages 1393--noexperimental_isolated_extension_usages 1394--experimental_j2objc_header_map 1395--noexperimental_j2objc_header_map 1396--experimental_j2objc_shorter_header_path 1397--noexperimental_j2objc_shorter_header_path 1398--experimental_java_classpath={off,javabuilder,bazel} 1399--experimental_java_library_export 1400--noexperimental_java_library_export 1401--experimental_limit_android_lint_to_android_constrained_java 1402--noexperimental_limit_android_lint_to_android_constrained_java 1403--experimental_materialize_param_files_directly 1404--noexperimental_materialize_param_files_directly 1405--experimental_objc_fastbuild_options= 1406--experimental_objc_include_scanning 1407--noexperimental_objc_include_scanning 1408--experimental_omitfp 1409--noexperimental_omitfp 1410--experimental_parallel_aquery_output 1411--noexperimental_parallel_aquery_output 1412--experimental_persistent_aar_extractor 1413--noexperimental_persistent_aar_extractor 1414--experimental_platform_in_output_dir 1415--noexperimental_platform_in_output_dir 1416--experimental_platforms_api 1417--noexperimental_platforms_api 1418--experimental_prefer_mutual_xcode 1419--noexperimental_prefer_mutual_xcode 1420--experimental_profile_additional_tasks= 1421--experimental_profile_include_primary_output 1422--noexperimental_profile_include_primary_output 1423--experimental_profile_include_target_label 1424--noexperimental_profile_include_target_label 1425--experimental_proto_descriptor_sets_include_source_info 1426--noexperimental_proto_descriptor_sets_include_source_info 1427--experimental_proto_extra_actions 1428--noexperimental_proto_extra_actions 1429--experimental_record_metrics_for_all_mnemonics 1430--noexperimental_record_metrics_for_all_mnemonics 1431--experimental_remotable_source_manifests 1432--noexperimental_remotable_source_manifests 1433--experimental_remote_cache_async 1434--noexperimental_remote_cache_async 1435--experimental_remote_cache_eviction_retries= 1436--experimental_remote_cache_lease_extension 1437--noexperimental_remote_cache_lease_extension 1438--experimental_remote_cache_ttl= 1439--experimental_remote_capture_corrupted_outputs=path 1440--experimental_remote_discard_merkle_trees 1441--noexperimental_remote_discard_merkle_trees 1442--experimental_remote_downloader= 1443--experimental_remote_downloader_local_fallback 1444--noexperimental_remote_downloader_local_fallback 1445--experimental_remote_execution_keepalive 1446--noexperimental_remote_execution_keepalive 1447--experimental_remote_failure_rate_threshold= 1448--experimental_remote_failure_window_interval= 1449--experimental_remote_mark_tool_inputs 1450--noexperimental_remote_mark_tool_inputs 1451--experimental_remote_merkle_tree_cache 1452--noexperimental_remote_merkle_tree_cache 1453--experimental_remote_merkle_tree_cache_size= 1454--experimental_remote_require_cached 1455--noexperimental_remote_require_cached 1456--experimental_repo_remote_exec 1457--noexperimental_repo_remote_exec 1458--experimental_repository_cache_hardlinks 1459--noexperimental_repository_cache_hardlinks 1460--experimental_repository_downloader_retries= 1461--experimental_repository_resolved_file= 1462--experimental_resolved_file_instead_of_workspace= 1463--experimental_retain_test_configuration_across_testonly 1464--noexperimental_retain_test_configuration_across_testonly 1465--experimental_run_android_lint_on_java_rules 1466--noexperimental_run_android_lint_on_java_rules 1467--experimental_run_bep_event_include_residue 1468--noexperimental_run_bep_event_include_residue 1469--experimental_sandbox_async_tree_delete_idle_threads= 1470--experimental_sandbox_memory_limit_mb= 1471--experimental_sandboxfs_map_symlink_targets 1472--noexperimental_sandboxfs_map_symlink_targets 1473--experimental_sandboxfs_path= 1474--experimental_save_feature_state 1475--noexperimental_save_feature_state 1476--experimental_scale_timeouts= 1477--experimental_shrink_worker_pool 1478--noexperimental_shrink_worker_pool 1479--experimental_sibling_repository_layout 1480--noexperimental_sibling_repository_layout 1481--experimental_spawn_scheduler 1482--experimental_split_coverage_postprocessing 1483--noexperimental_split_coverage_postprocessing 1484--experimental_split_xml_generation 1485--noexperimental_split_xml_generation 1486--experimental_starlark_cc_import 1487--noexperimental_starlark_cc_import 1488--experimental_stream_log_file_uploads 1489--noexperimental_stream_log_file_uploads 1490--experimental_strict_fileset_output 1491--noexperimental_strict_fileset_output 1492--experimental_strict_java_deps={off,warn,error,strict,default} 1493--experimental_total_worker_memory_limit_mb= 1494--experimental_ui_max_stdouterr_bytes= 1495--experimental_unsupported_and_brittle_include_scanning 1496--noexperimental_unsupported_and_brittle_include_scanning 1497--experimental_use_hermetic_linux_sandbox 1498--noexperimental_use_hermetic_linux_sandbox 1499--experimental_use_llvm_covmap 1500--noexperimental_use_llvm_covmap 1501--experimental_use_sandboxfs={auto,yes,no} 1502--noexperimental_use_sandboxfs 1503--experimental_use_semaphore_for_jobs 1504--noexperimental_use_semaphore_for_jobs 1505--experimental_use_validation_aspect 1506--noexperimental_use_validation_aspect 1507--experimental_use_windows_sandbox={auto,yes,no} 1508--noexperimental_use_windows_sandbox 1509--experimental_windows_sandbox_path= 1510--experimental_windows_watchfs 1511--noexperimental_windows_watchfs 1512--experimental_worker_allowlist= 1513--experimental_worker_as_resource 1514--noexperimental_worker_as_resource 1515--experimental_worker_cancellation 1516--noexperimental_worker_cancellation 1517--experimental_worker_for_repo_fetching={off,platform,virtual} 1518--experimental_worker_memory_limit_mb= 1519--experimental_worker_metrics_poll_interval= 1520--experimental_worker_multiplex_sandboxing 1521--noexperimental_worker_multiplex_sandboxing 1522--experimental_worker_sandbox_hardening 1523--noexperimental_worker_sandbox_hardening 1524--experimental_worker_strict_flagfiles 1525--noexperimental_worker_strict_flagfiles 1526--experimental_workspace_rules_log_file=path 1527--explain=path 1528--explicit_java_test_deps 1529--noexplicit_java_test_deps 1530--extra_execution_platforms= 1531--extra_toolchains= 1532--fat_apk_cpu= 1533--fat_apk_hwasan 1534--nofat_apk_hwasan 1535--fdo_instrument= 1536--fdo_optimize= 1537--fdo_prefetch_hints=label 1538--fdo_profile=label 1539--features= 1540--fission= 1541--flag_alias= 1542--flaky_test_attempts= 1543--force_pic 1544--noforce_pic 1545--gc_thrashing_limits= 1546--gc_thrashing_threshold= 1547--generate_json_trace_profile={auto,yes,no} 1548--nogenerate_json_trace_profile 1549--genrule_strategy= 1550--google_auth_scopes= 1551--google_credentials= 1552--google_default_credentials 1553--nogoogle_default_credentials 1554--graph:factored 1555--nograph:factored 1556--graph:node_limit= 1557--grpc_keepalive_time= 1558--grpc_keepalive_timeout= 1559--grte_top=label 1560--heap_dump_on_oom 1561--noheap_dump_on_oom 1562--heuristically_drop_nodes 1563--noheuristically_drop_nodes 1564--high_priority_workers= 1565--host_action_env= 1566--host_compilation_mode={fastbuild,dbg,opt} 1567--host_compiler= 1568--host_conlyopt= 1569--host_copt= 1570--host_cpu= 1571--host_crosstool_top=label 1572--host_cxxopt= 1573--host_features= 1574--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 1575--host_grte_top=label 1576--host_java_launcher=label 1577--host_javacopt= 1578--host_jvmopt= 1579--host_linkopt= 1580--host_macos_minimum_os= 1581--host_per_file_copt= 1582--host_platform=label 1583--host_swiftcopt= 1584--http_connector_attempts= 1585--http_connector_retry_max_timeout= 1586--http_timeout_scaling= 1587--ignore_dev_dependency 1588--noignore_dev_dependency 1589--ignore_unsupported_sandboxing 1590--noignore_unsupported_sandboxing 1591--implicit_deps 1592--noimplicit_deps 1593--include_artifacts 1594--noinclude_artifacts 1595--include_aspects 1596--noinclude_aspects 1597--include_commandline 1598--noinclude_commandline 1599--include_file_write_contents 1600--noinclude_file_write_contents 1601--include_param_files 1602--noinclude_param_files 1603--incompatible_allow_tags_propagation 1604--noincompatible_allow_tags_propagation 1605--incompatible_always_check_depset_elements 1606--noincompatible_always_check_depset_elements 1607--incompatible_always_include_files_in_data 1608--noincompatible_always_include_files_in_data 1609--incompatible_auto_exec_groups 1610--noincompatible_auto_exec_groups 1611--incompatible_check_sharding_support 1612--noincompatible_check_sharding_support 1613--incompatible_check_testonly_for_output_files 1614--noincompatible_check_testonly_for_output_files 1615--incompatible_check_visibility_for_toolchains 1616--noincompatible_check_visibility_for_toolchains 1617--incompatible_config_setting_private_default_visibility 1618--noincompatible_config_setting_private_default_visibility 1619--incompatible_default_to_explicit_init_py 1620--noincompatible_default_to_explicit_init_py 1621--incompatible_depset_for_java_output_source_jars 1622--noincompatible_depset_for_java_output_source_jars 1623--incompatible_depset_for_libraries_to_link_getter 1624--noincompatible_depset_for_libraries_to_link_getter 1625--incompatible_disable_native_android_rules 1626--noincompatible_disable_native_android_rules 1627--incompatible_disable_native_apple_binary_rule 1628--noincompatible_disable_native_apple_binary_rule 1629--incompatible_disable_non_executable_java_binary 1630--noincompatible_disable_non_executable_java_binary 1631--incompatible_disable_objc_library_transition 1632--noincompatible_disable_objc_library_transition 1633--incompatible_disable_starlark_host_transitions 1634--noincompatible_disable_starlark_host_transitions 1635--incompatible_disable_target_provider_fields 1636--noincompatible_disable_target_provider_fields 1637--incompatible_disallow_empty_glob 1638--noincompatible_disallow_empty_glob 1639--incompatible_disallow_legacy_py_provider 1640--noincompatible_disallow_legacy_py_provider 1641--incompatible_disallow_sdk_frameworks_attributes 1642--noincompatible_disallow_sdk_frameworks_attributes 1643--incompatible_disallow_struct_provider_syntax 1644--noincompatible_disallow_struct_provider_syntax 1645--incompatible_disallow_symlink_file_to_dir 1646--noincompatible_disallow_symlink_file_to_dir 1647--incompatible_do_not_split_linking_cmdline 1648--noincompatible_do_not_split_linking_cmdline 1649--incompatible_dont_enable_host_nonhost_crosstool_features 1650--noincompatible_dont_enable_host_nonhost_crosstool_features 1651--incompatible_dont_use_javasourceinfoprovider 1652--noincompatible_dont_use_javasourceinfoprovider 1653--incompatible_enable_android_toolchain_resolution 1654--noincompatible_enable_android_toolchain_resolution 1655--incompatible_enable_apple_toolchain_resolution 1656--noincompatible_enable_apple_toolchain_resolution 1657--incompatible_enable_proto_toolchain_resolution 1658--noincompatible_enable_proto_toolchain_resolution 1659--incompatible_enforce_config_setting_visibility 1660--noincompatible_enforce_config_setting_visibility 1661--incompatible_exclusive_test_sandboxed 1662--noincompatible_exclusive_test_sandboxed 1663--incompatible_existing_rules_immutable_view 1664--noincompatible_existing_rules_immutable_view 1665--incompatible_fail_on_unknown_attributes 1666--noincompatible_fail_on_unknown_attributes 1667--incompatible_fix_package_group_reporoot_syntax 1668--noincompatible_fix_package_group_reporoot_syntax 1669--incompatible_java_common_parameters 1670--noincompatible_java_common_parameters 1671--incompatible_legacy_local_fallback 1672--noincompatible_legacy_local_fallback 1673--incompatible_make_thinlto_command_lines_standalone 1674--noincompatible_make_thinlto_command_lines_standalone 1675--incompatible_merge_fixed_and_default_shell_env 1676--noincompatible_merge_fixed_and_default_shell_env 1677--incompatible_merge_genfiles_directory 1678--noincompatible_merge_genfiles_directory 1679--incompatible_new_actions_api 1680--noincompatible_new_actions_api 1681--incompatible_no_attr_license 1682--noincompatible_no_attr_license 1683--incompatible_no_implicit_file_export 1684--noincompatible_no_implicit_file_export 1685--incompatible_no_rule_outputs_param 1686--noincompatible_no_rule_outputs_param 1687--incompatible_objc_alwayslink_by_default 1688--noincompatible_objc_alwayslink_by_default 1689--incompatible_objc_provider_remove_linking_info 1690--noincompatible_objc_provider_remove_linking_info 1691--incompatible_package_group_has_public_syntax 1692--noincompatible_package_group_has_public_syntax 1693--incompatible_package_group_includes_double_slash 1694--noincompatible_package_group_includes_double_slash 1695--incompatible_py2_outputs_are_suffixed 1696--noincompatible_py2_outputs_are_suffixed 1697--incompatible_py3_is_default 1698--noincompatible_py3_is_default 1699--incompatible_python_disable_py2 1700--noincompatible_python_disable_py2 1701--incompatible_python_disallow_native_rules 1702--noincompatible_python_disallow_native_rules 1703--incompatible_remote_build_event_upload_respect_no_cache 1704--noincompatible_remote_build_event_upload_respect_no_cache 1705--incompatible_remote_dangling_symlinks 1706--noincompatible_remote_dangling_symlinks 1707--incompatible_remote_disallow_symlink_in_tree_artifact 1708--noincompatible_remote_disallow_symlink_in_tree_artifact 1709--incompatible_remote_downloader_send_all_headers 1710--noincompatible_remote_downloader_send_all_headers 1711--incompatible_remote_output_paths_relative_to_input_root 1712--noincompatible_remote_output_paths_relative_to_input_root 1713--incompatible_remote_results_ignore_disk 1714--noincompatible_remote_results_ignore_disk 1715--incompatible_remote_symlinks 1716--noincompatible_remote_symlinks 1717--incompatible_remote_use_new_exit_code_for_lost_inputs 1718--noincompatible_remote_use_new_exit_code_for_lost_inputs 1719--incompatible_remove_legacy_whole_archive 1720--noincompatible_remove_legacy_whole_archive 1721--incompatible_require_ctx_in_configure_features 1722--noincompatible_require_ctx_in_configure_features 1723--incompatible_require_linker_input_cc_api 1724--noincompatible_require_linker_input_cc_api 1725--incompatible_run_shell_command_string 1726--noincompatible_run_shell_command_string 1727--incompatible_sandbox_hermetic_tmp 1728--noincompatible_sandbox_hermetic_tmp 1729--incompatible_stop_exporting_language_modules 1730--noincompatible_stop_exporting_language_modules 1731--incompatible_strict_action_env 1732--noincompatible_strict_action_env 1733--incompatible_struct_has_no_methods 1734--noincompatible_struct_has_no_methods 1735--incompatible_top_level_aspects_require_providers 1736--noincompatible_top_level_aspects_require_providers 1737--incompatible_unambiguous_label_stringification 1738--noincompatible_unambiguous_label_stringification 1739--incompatible_use_cc_configure_from_rules_cc 1740--noincompatible_use_cc_configure_from_rules_cc 1741--incompatible_use_host_features 1742--noincompatible_use_host_features 1743--incompatible_use_python_toolchains 1744--noincompatible_use_python_toolchains 1745--incompatible_validate_top_level_header_inclusions 1746--noincompatible_validate_top_level_header_inclusions 1747--incompatible_visibility_private_attributes_at_definition 1748--noincompatible_visibility_private_attributes_at_definition 1749--incremental_dexing 1750--noincremental_dexing 1751--infer_universe_scope 1752--noinfer_universe_scope 1753--instrument_test_targets 1754--noinstrument_test_targets 1755--instrumentation_filter= 1756--interface_shared_objects 1757--nointerface_shared_objects 1758--internal_spawn_scheduler 1759--nointernal_spawn_scheduler 1760--ios_memleaks 1761--noios_memleaks 1762--ios_minimum_os= 1763--ios_multi_cpus= 1764--ios_sdk_version= 1765--ios_signing_cert_name= 1766--ios_simulator_device= 1767--ios_simulator_version= 1768--j2objc_translation_flags= 1769--java_debug 1770--java_deps 1771--nojava_deps 1772--java_header_compilation 1773--nojava_header_compilation 1774--java_language_version= 1775--java_launcher=label 1776--java_runtime_version= 1777--javacopt= 1778--jobs= 1779--jvmopt= 1780--keep_going 1781--nokeep_going 1782--keep_state_after_build 1783--nokeep_state_after_build 1784--legacy_external_runfiles 1785--nolegacy_external_runfiles 1786--legacy_important_outputs 1787--nolegacy_important_outputs 1788--legacy_main_dex_list_generator=label 1789--legacy_whole_archive 1790--nolegacy_whole_archive 1791--line_terminator_null 1792--noline_terminator_null 1793--linkopt= 1794--loading_phase_threads= 1795--local_cpu_resources= 1796--local_extra_resources= 1797--local_ram_resources= 1798--local_termination_grace_seconds= 1799--local_test_jobs= 1800--lockfile_mode={off,update,error} 1801--logging= 1802--ltobackendopt= 1803--ltoindexopt= 1804--macos_cpus= 1805--macos_minimum_os= 1806--macos_sdk_version= 1807--materialize_param_files 1808--nomaterialize_param_files 1809--max_computation_steps= 1810--max_config_changes_to_show= 1811--max_test_output_bytes= 1812--memory_profile=path 1813--memory_profile_stable_heap_parameters= 1814--memprof_profile=label 1815--minimum_os_version= 1816--modify_execution_info= 1817--nested_set_depth_limit= 1818--nodep_deps 1819--nonodep_deps 1820--objc_debug_with_GLIBCXX 1821--noobjc_debug_with_GLIBCXX 1822--objc_enable_binary_stripping 1823--noobjc_enable_binary_stripping 1824--objc_generate_linkmap 1825--noobjc_generate_linkmap 1826--objc_use_dotd_pruning 1827--noobjc_use_dotd_pruning 1828--objccopt= 1829--optimizing_dexer=label 1830--output= 1831--output_filter= 1832--output_groups= 1833--override_module= 1834--override_repository= 1835--package_path= 1836--per_file_copt= 1837--per_file_ltobackendopt= 1838--persistent_android_dex_desugar 1839--persistent_android_resource_processor 1840--persistent_multiplex_android_dex_desugar 1841--persistent_multiplex_android_resource_processor 1842--persistent_multiplex_android_tools 1843--platform_mappings=path 1844--platform_suffix= 1845--platforms= 1846--plugin= 1847--process_headers_in_dependencies 1848--noprocess_headers_in_dependencies 1849--profile=path 1850--progress_in_terminal_title 1851--noprogress_in_terminal_title 1852--progress_report_interval= 1853--proguard_top=label 1854--propeller_optimize=label 1855--propeller_optimize_absolute_cc_profile= 1856--propeller_optimize_absolute_ld_profile= 1857--proto:default_values 1858--noproto:default_values 1859--proto:definition_stack 1860--noproto:definition_stack 1861--proto:flatten_selects 1862--noproto:flatten_selects 1863--proto:include_attribute_source_aspects 1864--noproto:include_attribute_source_aspects 1865--proto:include_synthetic_attribute_hash 1866--noproto:include_synthetic_attribute_hash 1867--proto:instantiation_stack 1868--noproto:instantiation_stack 1869--proto:locations 1870--noproto:locations 1871--proto:output_rule_attrs= 1872--proto:rule_inputs_and_outputs 1873--noproto:rule_inputs_and_outputs 1874--proto_compiler=label 1875--proto_toolchain_for_cc=label 1876--proto_toolchain_for_j2objc=label 1877--proto_toolchain_for_java=label 1878--proto_toolchain_for_javalite=label 1879--protocopt= 1880--python2_path= 1881--python3_path= 1882--python_native_rules_allowlist=label 1883--python_path= 1884--python_top=label 1885--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 1886--query_file= 1887--record_full_profiler_data 1888--norecord_full_profiler_data 1889--registry= 1890--relative_locations 1891--norelative_locations 1892--remote_accept_cached 1893--noremote_accept_cached 1894--remote_build_event_upload={all,minimal} 1895--remote_bytestream_uri_prefix= 1896--remote_cache= 1897--remote_cache_compression 1898--noremote_cache_compression 1899--remote_cache_header= 1900--remote_default_exec_properties= 1901--remote_default_platform_properties= 1902--remote_download_all 1903--remote_download_minimal 1904--remote_download_outputs={all,minimal,toplevel} 1905--remote_download_regex= 1906--remote_download_symlink_template= 1907--remote_download_toplevel 1908--remote_downloader_header= 1909--remote_exec_header= 1910--remote_execution_priority= 1911--remote_executor= 1912--remote_grpc_log=path 1913--remote_header= 1914--remote_instance_name= 1915--remote_local_fallback 1916--noremote_local_fallback 1917--remote_local_fallback_strategy= 1918--remote_max_connections= 1919--remote_print_execution_messages={failure,success,all} 1920--remote_proxy= 1921--remote_result_cache_priority= 1922--remote_retries= 1923--remote_retry_max_delay= 1924--remote_timeout= 1925--remote_upload_local_results 1926--noremote_upload_local_results 1927--remote_verify_downloads 1928--noremote_verify_downloads 1929--repo_env= 1930--repository_cache=path 1931--repository_cache_urls_as_default_canonical_id 1932--norepository_cache_urls_as_default_canonical_id 1933--repository_disable_download 1934--norepository_disable_download 1935--reuse_sandbox_directories 1936--noreuse_sandbox_directories 1937--run_under= 1938--run_validations 1939--norun_validations 1940--runs_per_test= 1941--runs_per_test_detects_flakes 1942--noruns_per_test_detects_flakes 1943--sandbox_add_mount_pair= 1944--sandbox_base= 1945--sandbox_block_path= 1946--sandbox_debug 1947--nosandbox_debug 1948--sandbox_default_allow_network 1949--nosandbox_default_allow_network 1950--sandbox_explicit_pseudoterminal 1951--nosandbox_explicit_pseudoterminal 1952--sandbox_fake_hostname 1953--nosandbox_fake_hostname 1954--sandbox_fake_username 1955--nosandbox_fake_username 1956--sandbox_tmpfs_path= 1957--sandbox_writable_path= 1958--save_temps 1959--nosave_temps 1960--share_native_deps 1961--noshare_native_deps 1962--shell_executable=path 1963--show_loading_progress 1964--noshow_loading_progress 1965--show_progress 1966--noshow_progress 1967--show_progress_rate_limit= 1968--show_result= 1969--show_timestamps 1970--noshow_timestamps 1971--skip_incompatible_explicit_targets 1972--noskip_incompatible_explicit_targets 1973--skyframe_high_water_mark_full_gc_drops_per_invocation= 1974--skyframe_high_water_mark_minor_gc_drops_per_invocation= 1975--skyframe_high_water_mark_threshold= 1976--skyframe_state 1977--noskyframe_state 1978--slim_profile 1979--noslim_profile 1980--spawn_strategy= 1981--stamp 1982--nostamp 1983--starlark_cpu_profile= 1984--strategy= 1985--strategy_regexp= 1986--strict_filesets 1987--nostrict_filesets 1988--strict_proto_deps={off,warn,error,strict,default} 1989--strict_public_imports={off,warn,error,strict,default} 1990--strict_system_includes 1991--nostrict_system_includes 1992--strip={always,sometimes,never} 1993--stripopt= 1994--subcommands={true,pretty_print,false} 1995--swiftcopt= 1996--symlink_prefix= 1997--target_environment= 1998--target_pattern_file= 1999--target_platform_fallback= 2000--test_arg= 2001--test_env= 2002--test_filter= 2003--test_keep_going 2004--notest_keep_going 2005--test_lang_filters= 2006--test_output={summary,errors,all,streamed} 2007--test_result_expiration= 2008--test_runner_fail_fast 2009--notest_runner_fail_fast 2010--test_sharding_strategy= 2011--test_size_filters= 2012--test_strategy= 2013--test_summary={short,terse,detailed,none,testcase} 2014--test_tag_filters= 2015--test_timeout= 2016--test_timeout_filters= 2017--test_tmpdir=path 2018--tls_certificate= 2019--tls_client_certificate= 2020--tls_client_key= 2021--tool_deps 2022--notool_deps 2023--tool_java_language_version= 2024--tool_java_runtime_version= 2025--tool_tag= 2026--toolchain_resolution_debug= 2027--track_incremental_state 2028--notrack_incremental_state 2029--trim_test_configuration 2030--notrim_test_configuration 2031--tvos_cpus= 2032--tvos_minimum_os= 2033--tvos_sdk_version= 2034--ui_actions_shown= 2035--ui_event_filters= 2036--universe_scope= 2037--use_ijars 2038--nouse_ijars 2039--use_target_platform_for_tests 2040--nouse_target_platform_for_tests 2041--verbose_explanations 2042--noverbose_explanations 2043--verbose_failures 2044--noverbose_failures 2045--visionos_cpus= 2046--watchfs 2047--nowatchfs 2048--watchos_cpus= 2049--watchos_minimum_os= 2050--watchos_sdk_version= 2051--worker_extra_flag= 2052--worker_max_instances= 2053--worker_max_multiplex_instances= 2054--worker_multiplex 2055--noworker_multiplex 2056--worker_quit_after_build 2057--noworker_quit_after_build 2058--worker_sandboxing 2059--noworker_sandboxing 2060--worker_verbose 2061--noworker_verbose 2062--workspace_status_command=path 2063--xbinary_fdo=label 2064--xcode_version= 2065--xcode_version_config=label 2066--zip_undeclared_test_outputs 2067--nozip_undeclared_test_outputs 2068" 2069BAZEL_COMMAND_BUILD_ARGUMENT="label" 2070BAZEL_COMMAND_BUILD_FLAGS=" 2071--action_env= 2072--allow_analysis_cache_discard 2073--noallow_analysis_cache_discard 2074--allow_analysis_failures 2075--noallow_analysis_failures 2076--allow_yanked_versions= 2077--analysis_testing_deps_limit= 2078--android_compiler= 2079--android_cpu= 2080--android_crosstool_top=label 2081--android_databinding_use_androidx 2082--noandroid_databinding_use_androidx 2083--android_databinding_use_v3_4_args 2084--noandroid_databinding_use_v3_4_args 2085--android_dynamic_mode={off,default,fully} 2086--android_grte_top=label 2087--android_manifest_merger={legacy,android,force_android} 2088--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 2089--android_platforms= 2090--android_resource_shrinking 2091--noandroid_resource_shrinking 2092--android_sdk=label 2093--announce_rc 2094--noannounce_rc 2095--apk_signing_method={v1,v2,v1_v2,v4} 2096--apple_crosstool_top=label 2097--apple_generate_dsym 2098--noapple_generate_dsym 2099--aspects= 2100--aspects_parameters= 2101--attempt_to_print_relative_paths 2102--noattempt_to_print_relative_paths 2103--auto_cpu_environment_group=label 2104--auto_output_filter={none,all,packages,subpackages} 2105--bep_maximum_open_remote_upload_files= 2106--bes_backend= 2107--bes_check_preceding_lifecycle_events 2108--nobes_check_preceding_lifecycle_events 2109--bes_header= 2110--bes_instance_name= 2111--bes_keywords= 2112--bes_lifecycle_events 2113--nobes_lifecycle_events 2114--bes_oom_finish_upload_timeout= 2115--bes_outerr_buffer_size= 2116--bes_outerr_chunk_size= 2117--bes_proxy= 2118--bes_results_url= 2119--bes_system_keywords= 2120--bes_timeout= 2121--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 2122--break_build_on_parallel_dex2oat_failure 2123--nobreak_build_on_parallel_dex2oat_failure 2124--build 2125--nobuild 2126--build_event_binary_file= 2127--build_event_binary_file_path_conversion 2128--nobuild_event_binary_file_path_conversion 2129--build_event_json_file= 2130--build_event_json_file_path_conversion 2131--nobuild_event_json_file_path_conversion 2132--build_event_max_named_set_of_file_entries= 2133--build_event_publish_all_actions 2134--nobuild_event_publish_all_actions 2135--build_event_text_file= 2136--build_event_text_file_path_conversion 2137--nobuild_event_text_file_path_conversion 2138--build_manual_tests 2139--nobuild_manual_tests 2140--build_metadata= 2141--build_python_zip={auto,yes,no} 2142--nobuild_python_zip 2143--build_runfile_links 2144--nobuild_runfile_links 2145--build_runfile_manifests 2146--nobuild_runfile_manifests 2147--build_tag_filters= 2148--build_test_dwp 2149--nobuild_test_dwp 2150--build_tests_only 2151--nobuild_tests_only 2152--cache_test_results={auto,yes,no} 2153--nocache_test_results 2154--catalyst_cpus= 2155--cc_output_directory_tag= 2156--cc_proto_library_header_suffixes= 2157--cc_proto_library_source_suffixes= 2158--check_bazel_compatibility={error,warning,off} 2159--check_bzl_visibility 2160--nocheck_bzl_visibility 2161--check_direct_dependencies={off,warning,error} 2162--check_licenses 2163--nocheck_licenses 2164--check_tests_up_to_date 2165--nocheck_tests_up_to_date 2166--check_up_to_date 2167--nocheck_up_to_date 2168--check_visibility 2169--nocheck_visibility 2170--collect_code_coverage 2171--nocollect_code_coverage 2172--color={yes,no,auto} 2173--combined_report={none,lcov} 2174--compilation_mode={fastbuild,dbg,opt} 2175--compile_one_dependency 2176--nocompile_one_dependency 2177--compiler= 2178--config= 2179--conlyopt= 2180--copt= 2181--coverage_output_generator=label 2182--coverage_report_generator=label 2183--coverage_support=label 2184--cpu= 2185--credential_helper= 2186--credential_helper_cache_duration= 2187--credential_helper_timeout= 2188--crosstool_top=label 2189--cs_fdo_absolute_path= 2190--cs_fdo_instrument= 2191--cs_fdo_profile=label 2192--curses={yes,no,auto} 2193--custom_malloc=label 2194--cxxopt= 2195--debug_spawn_scheduler 2196--nodebug_spawn_scheduler 2197--define= 2198--deleted_packages= 2199--desugar_for_android 2200--nodesugar_for_android 2201--desugar_java8_libs 2202--nodesugar_java8_libs 2203--device_debug_entitlements 2204--nodevice_debug_entitlements 2205--discard_analysis_cache 2206--nodiscard_analysis_cache 2207--disk_cache=path 2208--distdir= 2209--dynamic_local_execution_delay= 2210--dynamic_local_strategy= 2211--dynamic_mode={off,default,fully} 2212--dynamic_remote_strategy= 2213--embed_label= 2214--enable_bzlmod 2215--noenable_bzlmod 2216--enable_fdo_profile_absolute_path 2217--noenable_fdo_profile_absolute_path 2218--enable_platform_specific_config 2219--noenable_platform_specific_config 2220--enable_runfiles={auto,yes,no} 2221--noenable_runfiles 2222--enforce_constraints 2223--noenforce_constraints 2224--execution_log_binary_file=path 2225--execution_log_json_file=path 2226--execution_log_sort 2227--noexecution_log_sort 2228--expand_test_suites 2229--noexpand_test_suites 2230--experimental_action_listener= 2231--experimental_action_resource_set 2232--noexperimental_action_resource_set 2233--experimental_add_exec_constraints_to_targets= 2234--experimental_android_compress_java_resources 2235--noexperimental_android_compress_java_resources 2236--experimental_android_databinding_v2 2237--noexperimental_android_databinding_v2 2238--experimental_android_resource_shrinking 2239--noexperimental_android_resource_shrinking 2240--experimental_android_rewrite_dexes_with_rex 2241--noexperimental_android_rewrite_dexes_with_rex 2242--experimental_android_use_parallel_dex2oat 2243--noexperimental_android_use_parallel_dex2oat 2244--experimental_announce_profile_path 2245--noexperimental_announce_profile_path 2246--experimental_bep_target_summary 2247--noexperimental_bep_target_summary 2248--experimental_build_event_expand_filesets 2249--noexperimental_build_event_expand_filesets 2250--experimental_build_event_fully_resolve_fileset_symlinks 2251--noexperimental_build_event_fully_resolve_fileset_symlinks 2252--experimental_build_event_upload_max_retries= 2253--experimental_build_event_upload_retry_minimum_delay= 2254--experimental_build_event_upload_strategy= 2255--experimental_bzl_visibility 2256--noexperimental_bzl_visibility 2257--experimental_cancel_concurrent_tests 2258--noexperimental_cancel_concurrent_tests 2259--experimental_cc_shared_library 2260--noexperimental_cc_shared_library 2261--experimental_check_desugar_deps 2262--noexperimental_check_desugar_deps 2263--experimental_circuit_breaker_strategy={failure} 2264--experimental_collect_code_coverage_for_generated_files 2265--noexperimental_collect_code_coverage_for_generated_files 2266--experimental_collect_load_average_in_profiler 2267--noexperimental_collect_load_average_in_profiler 2268--experimental_collect_local_sandbox_action_metrics 2269--noexperimental_collect_local_sandbox_action_metrics 2270--experimental_collect_pressure_stall_indicators 2271--noexperimental_collect_pressure_stall_indicators 2272--experimental_collect_resource_estimation 2273--noexperimental_collect_resource_estimation 2274--experimental_collect_system_network_usage 2275--noexperimental_collect_system_network_usage 2276--experimental_collect_worker_data_in_profiler 2277--noexperimental_collect_worker_data_in_profiler 2278--experimental_command_profile 2279--noexperimental_command_profile 2280--experimental_convenience_symlinks={normal,clean,ignore,log_only} 2281--experimental_convenience_symlinks_bep_event 2282--noexperimental_convenience_symlinks_bep_event 2283--experimental_disable_external_package 2284--noexperimental_disable_external_package 2285--experimental_docker_image= 2286--experimental_docker_privileged 2287--noexperimental_docker_privileged 2288--experimental_docker_use_customized_images 2289--noexperimental_docker_use_customized_images 2290--experimental_docker_verbose 2291--noexperimental_docker_verbose 2292--experimental_downloader_config= 2293--experimental_dynamic_exclude_tools 2294--noexperimental_dynamic_exclude_tools 2295--experimental_dynamic_ignore_local_signals= 2296--experimental_dynamic_local_load_factor= 2297--experimental_dynamic_slow_remote_time= 2298--experimental_enable_android_migration_apis 2299--noexperimental_enable_android_migration_apis 2300--experimental_enable_docker_sandbox 2301--noexperimental_enable_docker_sandbox 2302--experimental_enable_scl_dialect 2303--noexperimental_enable_scl_dialect 2304--experimental_execution_log_file=path 2305--experimental_extra_action_filter= 2306--experimental_extra_action_top_level_only 2307--noexperimental_extra_action_top_level_only 2308--experimental_fetch_all_coverage_outputs 2309--noexperimental_fetch_all_coverage_outputs 2310--experimental_filter_library_jar_with_program_jar 2311--noexperimental_filter_library_jar_with_program_jar 2312--experimental_generate_llvm_lcov 2313--noexperimental_generate_llvm_lcov 2314--experimental_google_legacy_api 2315--noexperimental_google_legacy_api 2316--experimental_guard_against_concurrent_changes 2317--noexperimental_guard_against_concurrent_changes 2318--experimental_import_deps_checking={off,warning,error} 2319--experimental_include_xcode_execution_requirements 2320--noexperimental_include_xcode_execution_requirements 2321--experimental_inmemory_dotd_files 2322--noexperimental_inmemory_dotd_files 2323--experimental_inmemory_jdeps_files 2324--noexperimental_inmemory_jdeps_files 2325--experimental_inprocess_symlink_creation 2326--noexperimental_inprocess_symlink_creation 2327--experimental_isolated_extension_usages 2328--noexperimental_isolated_extension_usages 2329--experimental_j2objc_header_map 2330--noexperimental_j2objc_header_map 2331--experimental_j2objc_shorter_header_path 2332--noexperimental_j2objc_shorter_header_path 2333--experimental_java_classpath={off,javabuilder,bazel} 2334--experimental_java_library_export 2335--noexperimental_java_library_export 2336--experimental_limit_android_lint_to_android_constrained_java 2337--noexperimental_limit_android_lint_to_android_constrained_java 2338--experimental_materialize_param_files_directly 2339--noexperimental_materialize_param_files_directly 2340--experimental_objc_fastbuild_options= 2341--experimental_objc_include_scanning 2342--noexperimental_objc_include_scanning 2343--experimental_omitfp 2344--noexperimental_omitfp 2345--experimental_parallel_aquery_output 2346--noexperimental_parallel_aquery_output 2347--experimental_persistent_aar_extractor 2348--noexperimental_persistent_aar_extractor 2349--experimental_platform_in_output_dir 2350--noexperimental_platform_in_output_dir 2351--experimental_platforms_api 2352--noexperimental_platforms_api 2353--experimental_prefer_mutual_xcode 2354--noexperimental_prefer_mutual_xcode 2355--experimental_profile_additional_tasks= 2356--experimental_profile_include_primary_output 2357--noexperimental_profile_include_primary_output 2358--experimental_profile_include_target_label 2359--noexperimental_profile_include_target_label 2360--experimental_proto_descriptor_sets_include_source_info 2361--noexperimental_proto_descriptor_sets_include_source_info 2362--experimental_proto_extra_actions 2363--noexperimental_proto_extra_actions 2364--experimental_record_metrics_for_all_mnemonics 2365--noexperimental_record_metrics_for_all_mnemonics 2366--experimental_remotable_source_manifests 2367--noexperimental_remotable_source_manifests 2368--experimental_remote_cache_async 2369--noexperimental_remote_cache_async 2370--experimental_remote_cache_eviction_retries= 2371--experimental_remote_cache_lease_extension 2372--noexperimental_remote_cache_lease_extension 2373--experimental_remote_cache_ttl= 2374--experimental_remote_capture_corrupted_outputs=path 2375--experimental_remote_discard_merkle_trees 2376--noexperimental_remote_discard_merkle_trees 2377--experimental_remote_downloader= 2378--experimental_remote_downloader_local_fallback 2379--noexperimental_remote_downloader_local_fallback 2380--experimental_remote_execution_keepalive 2381--noexperimental_remote_execution_keepalive 2382--experimental_remote_failure_rate_threshold= 2383--experimental_remote_failure_window_interval= 2384--experimental_remote_mark_tool_inputs 2385--noexperimental_remote_mark_tool_inputs 2386--experimental_remote_merkle_tree_cache 2387--noexperimental_remote_merkle_tree_cache 2388--experimental_remote_merkle_tree_cache_size= 2389--experimental_remote_require_cached 2390--noexperimental_remote_require_cached 2391--experimental_repo_remote_exec 2392--noexperimental_repo_remote_exec 2393--experimental_repository_cache_hardlinks 2394--noexperimental_repository_cache_hardlinks 2395--experimental_repository_downloader_retries= 2396--experimental_repository_resolved_file= 2397--experimental_resolved_file_instead_of_workspace= 2398--experimental_retain_test_configuration_across_testonly 2399--noexperimental_retain_test_configuration_across_testonly 2400--experimental_run_android_lint_on_java_rules 2401--noexperimental_run_android_lint_on_java_rules 2402--experimental_run_bep_event_include_residue 2403--noexperimental_run_bep_event_include_residue 2404--experimental_sandbox_async_tree_delete_idle_threads= 2405--experimental_sandbox_memory_limit_mb= 2406--experimental_sandboxfs_map_symlink_targets 2407--noexperimental_sandboxfs_map_symlink_targets 2408--experimental_sandboxfs_path= 2409--experimental_save_feature_state 2410--noexperimental_save_feature_state 2411--experimental_scale_timeouts= 2412--experimental_shrink_worker_pool 2413--noexperimental_shrink_worker_pool 2414--experimental_sibling_repository_layout 2415--noexperimental_sibling_repository_layout 2416--experimental_spawn_scheduler 2417--experimental_split_coverage_postprocessing 2418--noexperimental_split_coverage_postprocessing 2419--experimental_split_xml_generation 2420--noexperimental_split_xml_generation 2421--experimental_starlark_cc_import 2422--noexperimental_starlark_cc_import 2423--experimental_stream_log_file_uploads 2424--noexperimental_stream_log_file_uploads 2425--experimental_strict_fileset_output 2426--noexperimental_strict_fileset_output 2427--experimental_strict_java_deps={off,warn,error,strict,default} 2428--experimental_total_worker_memory_limit_mb= 2429--experimental_ui_max_stdouterr_bytes= 2430--experimental_unsupported_and_brittle_include_scanning 2431--noexperimental_unsupported_and_brittle_include_scanning 2432--experimental_use_hermetic_linux_sandbox 2433--noexperimental_use_hermetic_linux_sandbox 2434--experimental_use_llvm_covmap 2435--noexperimental_use_llvm_covmap 2436--experimental_use_sandboxfs={auto,yes,no} 2437--noexperimental_use_sandboxfs 2438--experimental_use_semaphore_for_jobs 2439--noexperimental_use_semaphore_for_jobs 2440--experimental_use_validation_aspect 2441--noexperimental_use_validation_aspect 2442--experimental_use_windows_sandbox={auto,yes,no} 2443--noexperimental_use_windows_sandbox 2444--experimental_windows_sandbox_path= 2445--experimental_windows_watchfs 2446--noexperimental_windows_watchfs 2447--experimental_worker_allowlist= 2448--experimental_worker_as_resource 2449--noexperimental_worker_as_resource 2450--experimental_worker_cancellation 2451--noexperimental_worker_cancellation 2452--experimental_worker_for_repo_fetching={off,platform,virtual} 2453--experimental_worker_memory_limit_mb= 2454--experimental_worker_metrics_poll_interval= 2455--experimental_worker_multiplex_sandboxing 2456--noexperimental_worker_multiplex_sandboxing 2457--experimental_worker_sandbox_hardening 2458--noexperimental_worker_sandbox_hardening 2459--experimental_worker_strict_flagfiles 2460--noexperimental_worker_strict_flagfiles 2461--experimental_workspace_rules_log_file=path 2462--explain=path 2463--explicit_java_test_deps 2464--noexplicit_java_test_deps 2465--extra_execution_platforms= 2466--extra_toolchains= 2467--fat_apk_cpu= 2468--fat_apk_hwasan 2469--nofat_apk_hwasan 2470--fdo_instrument= 2471--fdo_optimize= 2472--fdo_prefetch_hints=label 2473--fdo_profile=label 2474--features= 2475--fission= 2476--flag_alias= 2477--flaky_test_attempts= 2478--force_pic 2479--noforce_pic 2480--gc_thrashing_limits= 2481--gc_thrashing_threshold= 2482--generate_json_trace_profile={auto,yes,no} 2483--nogenerate_json_trace_profile 2484--genrule_strategy= 2485--google_auth_scopes= 2486--google_credentials= 2487--google_default_credentials 2488--nogoogle_default_credentials 2489--grpc_keepalive_time= 2490--grpc_keepalive_timeout= 2491--grte_top=label 2492--heap_dump_on_oom 2493--noheap_dump_on_oom 2494--heuristically_drop_nodes 2495--noheuristically_drop_nodes 2496--high_priority_workers= 2497--host_action_env= 2498--host_compilation_mode={fastbuild,dbg,opt} 2499--host_compiler= 2500--host_conlyopt= 2501--host_copt= 2502--host_cpu= 2503--host_crosstool_top=label 2504--host_cxxopt= 2505--host_features= 2506--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 2507--host_grte_top=label 2508--host_java_launcher=label 2509--host_javacopt= 2510--host_jvmopt= 2511--host_linkopt= 2512--host_macos_minimum_os= 2513--host_per_file_copt= 2514--host_platform=label 2515--host_swiftcopt= 2516--http_connector_attempts= 2517--http_connector_retry_max_timeout= 2518--http_timeout_scaling= 2519--ignore_dev_dependency 2520--noignore_dev_dependency 2521--ignore_unsupported_sandboxing 2522--noignore_unsupported_sandboxing 2523--incompatible_allow_tags_propagation 2524--noincompatible_allow_tags_propagation 2525--incompatible_always_check_depset_elements 2526--noincompatible_always_check_depset_elements 2527--incompatible_always_include_files_in_data 2528--noincompatible_always_include_files_in_data 2529--incompatible_auto_exec_groups 2530--noincompatible_auto_exec_groups 2531--incompatible_check_sharding_support 2532--noincompatible_check_sharding_support 2533--incompatible_check_testonly_for_output_files 2534--noincompatible_check_testonly_for_output_files 2535--incompatible_check_visibility_for_toolchains 2536--noincompatible_check_visibility_for_toolchains 2537--incompatible_config_setting_private_default_visibility 2538--noincompatible_config_setting_private_default_visibility 2539--incompatible_default_to_explicit_init_py 2540--noincompatible_default_to_explicit_init_py 2541--incompatible_depset_for_java_output_source_jars 2542--noincompatible_depset_for_java_output_source_jars 2543--incompatible_depset_for_libraries_to_link_getter 2544--noincompatible_depset_for_libraries_to_link_getter 2545--incompatible_disable_native_android_rules 2546--noincompatible_disable_native_android_rules 2547--incompatible_disable_native_apple_binary_rule 2548--noincompatible_disable_native_apple_binary_rule 2549--incompatible_disable_non_executable_java_binary 2550--noincompatible_disable_non_executable_java_binary 2551--incompatible_disable_objc_library_transition 2552--noincompatible_disable_objc_library_transition 2553--incompatible_disable_starlark_host_transitions 2554--noincompatible_disable_starlark_host_transitions 2555--incompatible_disable_target_provider_fields 2556--noincompatible_disable_target_provider_fields 2557--incompatible_disallow_empty_glob 2558--noincompatible_disallow_empty_glob 2559--incompatible_disallow_legacy_py_provider 2560--noincompatible_disallow_legacy_py_provider 2561--incompatible_disallow_sdk_frameworks_attributes 2562--noincompatible_disallow_sdk_frameworks_attributes 2563--incompatible_disallow_struct_provider_syntax 2564--noincompatible_disallow_struct_provider_syntax 2565--incompatible_disallow_symlink_file_to_dir 2566--noincompatible_disallow_symlink_file_to_dir 2567--incompatible_do_not_split_linking_cmdline 2568--noincompatible_do_not_split_linking_cmdline 2569--incompatible_dont_enable_host_nonhost_crosstool_features 2570--noincompatible_dont_enable_host_nonhost_crosstool_features 2571--incompatible_dont_use_javasourceinfoprovider 2572--noincompatible_dont_use_javasourceinfoprovider 2573--incompatible_enable_android_toolchain_resolution 2574--noincompatible_enable_android_toolchain_resolution 2575--incompatible_enable_apple_toolchain_resolution 2576--noincompatible_enable_apple_toolchain_resolution 2577--incompatible_enable_proto_toolchain_resolution 2578--noincompatible_enable_proto_toolchain_resolution 2579--incompatible_enforce_config_setting_visibility 2580--noincompatible_enforce_config_setting_visibility 2581--incompatible_exclusive_test_sandboxed 2582--noincompatible_exclusive_test_sandboxed 2583--incompatible_existing_rules_immutable_view 2584--noincompatible_existing_rules_immutable_view 2585--incompatible_fail_on_unknown_attributes 2586--noincompatible_fail_on_unknown_attributes 2587--incompatible_fix_package_group_reporoot_syntax 2588--noincompatible_fix_package_group_reporoot_syntax 2589--incompatible_java_common_parameters 2590--noincompatible_java_common_parameters 2591--incompatible_legacy_local_fallback 2592--noincompatible_legacy_local_fallback 2593--incompatible_make_thinlto_command_lines_standalone 2594--noincompatible_make_thinlto_command_lines_standalone 2595--incompatible_merge_fixed_and_default_shell_env 2596--noincompatible_merge_fixed_and_default_shell_env 2597--incompatible_merge_genfiles_directory 2598--noincompatible_merge_genfiles_directory 2599--incompatible_new_actions_api 2600--noincompatible_new_actions_api 2601--incompatible_no_attr_license 2602--noincompatible_no_attr_license 2603--incompatible_no_implicit_file_export 2604--noincompatible_no_implicit_file_export 2605--incompatible_no_rule_outputs_param 2606--noincompatible_no_rule_outputs_param 2607--incompatible_objc_alwayslink_by_default 2608--noincompatible_objc_alwayslink_by_default 2609--incompatible_objc_provider_remove_linking_info 2610--noincompatible_objc_provider_remove_linking_info 2611--incompatible_package_group_has_public_syntax 2612--noincompatible_package_group_has_public_syntax 2613--incompatible_py2_outputs_are_suffixed 2614--noincompatible_py2_outputs_are_suffixed 2615--incompatible_py3_is_default 2616--noincompatible_py3_is_default 2617--incompatible_python_disable_py2 2618--noincompatible_python_disable_py2 2619--incompatible_python_disallow_native_rules 2620--noincompatible_python_disallow_native_rules 2621--incompatible_remote_build_event_upload_respect_no_cache 2622--noincompatible_remote_build_event_upload_respect_no_cache 2623--incompatible_remote_dangling_symlinks 2624--noincompatible_remote_dangling_symlinks 2625--incompatible_remote_disallow_symlink_in_tree_artifact 2626--noincompatible_remote_disallow_symlink_in_tree_artifact 2627--incompatible_remote_downloader_send_all_headers 2628--noincompatible_remote_downloader_send_all_headers 2629--incompatible_remote_output_paths_relative_to_input_root 2630--noincompatible_remote_output_paths_relative_to_input_root 2631--incompatible_remote_results_ignore_disk 2632--noincompatible_remote_results_ignore_disk 2633--incompatible_remote_symlinks 2634--noincompatible_remote_symlinks 2635--incompatible_remote_use_new_exit_code_for_lost_inputs 2636--noincompatible_remote_use_new_exit_code_for_lost_inputs 2637--incompatible_remove_legacy_whole_archive 2638--noincompatible_remove_legacy_whole_archive 2639--incompatible_require_ctx_in_configure_features 2640--noincompatible_require_ctx_in_configure_features 2641--incompatible_require_linker_input_cc_api 2642--noincompatible_require_linker_input_cc_api 2643--incompatible_run_shell_command_string 2644--noincompatible_run_shell_command_string 2645--incompatible_sandbox_hermetic_tmp 2646--noincompatible_sandbox_hermetic_tmp 2647--incompatible_stop_exporting_language_modules 2648--noincompatible_stop_exporting_language_modules 2649--incompatible_strict_action_env 2650--noincompatible_strict_action_env 2651--incompatible_struct_has_no_methods 2652--noincompatible_struct_has_no_methods 2653--incompatible_top_level_aspects_require_providers 2654--noincompatible_top_level_aspects_require_providers 2655--incompatible_unambiguous_label_stringification 2656--noincompatible_unambiguous_label_stringification 2657--incompatible_use_cc_configure_from_rules_cc 2658--noincompatible_use_cc_configure_from_rules_cc 2659--incompatible_use_host_features 2660--noincompatible_use_host_features 2661--incompatible_use_python_toolchains 2662--noincompatible_use_python_toolchains 2663--incompatible_validate_top_level_header_inclusions 2664--noincompatible_validate_top_level_header_inclusions 2665--incompatible_visibility_private_attributes_at_definition 2666--noincompatible_visibility_private_attributes_at_definition 2667--incremental_dexing 2668--noincremental_dexing 2669--instrument_test_targets 2670--noinstrument_test_targets 2671--instrumentation_filter= 2672--interface_shared_objects 2673--nointerface_shared_objects 2674--internal_spawn_scheduler 2675--nointernal_spawn_scheduler 2676--ios_memleaks 2677--noios_memleaks 2678--ios_minimum_os= 2679--ios_multi_cpus= 2680--ios_sdk_version= 2681--ios_signing_cert_name= 2682--ios_simulator_device= 2683--ios_simulator_version= 2684--j2objc_translation_flags= 2685--java_debug 2686--java_deps 2687--nojava_deps 2688--java_header_compilation 2689--nojava_header_compilation 2690--java_language_version= 2691--java_launcher=label 2692--java_runtime_version= 2693--javacopt= 2694--jobs= 2695--jvmopt= 2696--keep_going 2697--nokeep_going 2698--keep_state_after_build 2699--nokeep_state_after_build 2700--legacy_external_runfiles 2701--nolegacy_external_runfiles 2702--legacy_important_outputs 2703--nolegacy_important_outputs 2704--legacy_main_dex_list_generator=label 2705--legacy_whole_archive 2706--nolegacy_whole_archive 2707--linkopt= 2708--loading_phase_threads= 2709--local_cpu_resources= 2710--local_extra_resources= 2711--local_ram_resources= 2712--local_termination_grace_seconds= 2713--local_test_jobs= 2714--lockfile_mode={off,update,error} 2715--logging= 2716--ltobackendopt= 2717--ltoindexopt= 2718--macos_cpus= 2719--macos_minimum_os= 2720--macos_sdk_version= 2721--materialize_param_files 2722--nomaterialize_param_files 2723--max_computation_steps= 2724--max_config_changes_to_show= 2725--max_test_output_bytes= 2726--memory_profile=path 2727--memory_profile_stable_heap_parameters= 2728--memprof_profile=label 2729--minimum_os_version= 2730--modify_execution_info= 2731--nested_set_depth_limit= 2732--objc_debug_with_GLIBCXX 2733--noobjc_debug_with_GLIBCXX 2734--objc_enable_binary_stripping 2735--noobjc_enable_binary_stripping 2736--objc_generate_linkmap 2737--noobjc_generate_linkmap 2738--objc_use_dotd_pruning 2739--noobjc_use_dotd_pruning 2740--objccopt= 2741--optimizing_dexer=label 2742--output_filter= 2743--output_groups= 2744--override_module= 2745--override_repository= 2746--package_path= 2747--per_file_copt= 2748--per_file_ltobackendopt= 2749--persistent_android_dex_desugar 2750--persistent_android_resource_processor 2751--persistent_multiplex_android_dex_desugar 2752--persistent_multiplex_android_resource_processor 2753--persistent_multiplex_android_tools 2754--platform_mappings=path 2755--platform_suffix= 2756--platforms= 2757--plugin= 2758--process_headers_in_dependencies 2759--noprocess_headers_in_dependencies 2760--profile=path 2761--progress_in_terminal_title 2762--noprogress_in_terminal_title 2763--progress_report_interval= 2764--proguard_top=label 2765--propeller_optimize=label 2766--propeller_optimize_absolute_cc_profile= 2767--propeller_optimize_absolute_ld_profile= 2768--proto_compiler=label 2769--proto_toolchain_for_cc=label 2770--proto_toolchain_for_j2objc=label 2771--proto_toolchain_for_java=label 2772--proto_toolchain_for_javalite=label 2773--protocopt= 2774--python2_path= 2775--python3_path= 2776--python_native_rules_allowlist=label 2777--python_path= 2778--python_top=label 2779--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 2780--record_full_profiler_data 2781--norecord_full_profiler_data 2782--registry= 2783--remote_accept_cached 2784--noremote_accept_cached 2785--remote_build_event_upload={all,minimal} 2786--remote_bytestream_uri_prefix= 2787--remote_cache= 2788--remote_cache_compression 2789--noremote_cache_compression 2790--remote_cache_header= 2791--remote_default_exec_properties= 2792--remote_default_platform_properties= 2793--remote_download_all 2794--remote_download_minimal 2795--remote_download_outputs={all,minimal,toplevel} 2796--remote_download_regex= 2797--remote_download_symlink_template= 2798--remote_download_toplevel 2799--remote_downloader_header= 2800--remote_exec_header= 2801--remote_execution_priority= 2802--remote_executor= 2803--remote_grpc_log=path 2804--remote_header= 2805--remote_instance_name= 2806--remote_local_fallback 2807--noremote_local_fallback 2808--remote_local_fallback_strategy= 2809--remote_max_connections= 2810--remote_print_execution_messages={failure,success,all} 2811--remote_proxy= 2812--remote_result_cache_priority= 2813--remote_retries= 2814--remote_retry_max_delay= 2815--remote_timeout= 2816--remote_upload_local_results 2817--noremote_upload_local_results 2818--remote_verify_downloads 2819--noremote_verify_downloads 2820--repo_env= 2821--repository_cache=path 2822--repository_cache_urls_as_default_canonical_id 2823--norepository_cache_urls_as_default_canonical_id 2824--repository_disable_download 2825--norepository_disable_download 2826--reuse_sandbox_directories 2827--noreuse_sandbox_directories 2828--run_under= 2829--run_validations 2830--norun_validations 2831--runs_per_test= 2832--runs_per_test_detects_flakes 2833--noruns_per_test_detects_flakes 2834--sandbox_add_mount_pair= 2835--sandbox_base= 2836--sandbox_block_path= 2837--sandbox_debug 2838--nosandbox_debug 2839--sandbox_default_allow_network 2840--nosandbox_default_allow_network 2841--sandbox_explicit_pseudoterminal 2842--nosandbox_explicit_pseudoterminal 2843--sandbox_fake_hostname 2844--nosandbox_fake_hostname 2845--sandbox_fake_username 2846--nosandbox_fake_username 2847--sandbox_tmpfs_path= 2848--sandbox_writable_path= 2849--save_temps 2850--nosave_temps 2851--share_native_deps 2852--noshare_native_deps 2853--shell_executable=path 2854--show_loading_progress 2855--noshow_loading_progress 2856--show_progress 2857--noshow_progress 2858--show_progress_rate_limit= 2859--show_result= 2860--show_timestamps 2861--noshow_timestamps 2862--skip_incompatible_explicit_targets 2863--noskip_incompatible_explicit_targets 2864--skyframe_high_water_mark_full_gc_drops_per_invocation= 2865--skyframe_high_water_mark_minor_gc_drops_per_invocation= 2866--skyframe_high_water_mark_threshold= 2867--slim_profile 2868--noslim_profile 2869--spawn_strategy= 2870--stamp 2871--nostamp 2872--starlark_cpu_profile= 2873--strategy= 2874--strategy_regexp= 2875--strict_filesets 2876--nostrict_filesets 2877--strict_proto_deps={off,warn,error,strict,default} 2878--strict_public_imports={off,warn,error,strict,default} 2879--strict_system_includes 2880--nostrict_system_includes 2881--strip={always,sometimes,never} 2882--stripopt= 2883--subcommands={true,pretty_print,false} 2884--swiftcopt= 2885--symlink_prefix= 2886--target_environment= 2887--target_pattern_file= 2888--target_platform_fallback= 2889--test_arg= 2890--test_env= 2891--test_filter= 2892--test_keep_going 2893--notest_keep_going 2894--test_lang_filters= 2895--test_output={summary,errors,all,streamed} 2896--test_result_expiration= 2897--test_runner_fail_fast 2898--notest_runner_fail_fast 2899--test_sharding_strategy= 2900--test_size_filters= 2901--test_strategy= 2902--test_summary={short,terse,detailed,none,testcase} 2903--test_tag_filters= 2904--test_timeout= 2905--test_timeout_filters= 2906--test_tmpdir=path 2907--tls_certificate= 2908--tls_client_certificate= 2909--tls_client_key= 2910--tool_java_language_version= 2911--tool_java_runtime_version= 2912--tool_tag= 2913--toolchain_resolution_debug= 2914--track_incremental_state 2915--notrack_incremental_state 2916--trim_test_configuration 2917--notrim_test_configuration 2918--tvos_cpus= 2919--tvos_minimum_os= 2920--tvos_sdk_version= 2921--ui_actions_shown= 2922--ui_event_filters= 2923--use_ijars 2924--nouse_ijars 2925--use_target_platform_for_tests 2926--nouse_target_platform_for_tests 2927--verbose_explanations 2928--noverbose_explanations 2929--verbose_failures 2930--noverbose_failures 2931--visionos_cpus= 2932--watchfs 2933--nowatchfs 2934--watchos_cpus= 2935--watchos_minimum_os= 2936--watchos_sdk_version= 2937--worker_extra_flag= 2938--worker_max_instances= 2939--worker_max_multiplex_instances= 2940--worker_multiplex 2941--noworker_multiplex 2942--worker_quit_after_build 2943--noworker_quit_after_build 2944--worker_sandboxing 2945--noworker_sandboxing 2946--worker_verbose 2947--noworker_verbose 2948--workspace_status_command=path 2949--xbinary_fdo=label 2950--xcode_version= 2951--xcode_version_config=label 2952--zip_undeclared_test_outputs 2953--nozip_undeclared_test_outputs 2954" 2955BAZEL_COMMAND_CANONICALIZE_FLAGS_FLAGS=" 2956--action_env= 2957--allow_analysis_cache_discard 2958--noallow_analysis_cache_discard 2959--allow_analysis_failures 2960--noallow_analysis_failures 2961--allow_yanked_versions= 2962--analysis_testing_deps_limit= 2963--android_compiler= 2964--android_cpu= 2965--android_crosstool_top=label 2966--android_databinding_use_androidx 2967--noandroid_databinding_use_androidx 2968--android_databinding_use_v3_4_args 2969--noandroid_databinding_use_v3_4_args 2970--android_dynamic_mode={off,default,fully} 2971--android_grte_top=label 2972--android_manifest_merger={legacy,android,force_android} 2973--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 2974--android_platforms= 2975--android_resource_shrinking 2976--noandroid_resource_shrinking 2977--android_sdk=label 2978--announce_rc 2979--noannounce_rc 2980--apk_signing_method={v1,v2,v1_v2,v4} 2981--apple_crosstool_top=label 2982--apple_generate_dsym 2983--noapple_generate_dsym 2984--aspects= 2985--aspects_parameters= 2986--attempt_to_print_relative_paths 2987--noattempt_to_print_relative_paths 2988--auto_cpu_environment_group=label 2989--auto_output_filter={none,all,packages,subpackages} 2990--bep_maximum_open_remote_upload_files= 2991--bes_backend= 2992--bes_check_preceding_lifecycle_events 2993--nobes_check_preceding_lifecycle_events 2994--bes_header= 2995--bes_instance_name= 2996--bes_keywords= 2997--bes_lifecycle_events 2998--nobes_lifecycle_events 2999--bes_oom_finish_upload_timeout= 3000--bes_outerr_buffer_size= 3001--bes_outerr_chunk_size= 3002--bes_proxy= 3003--bes_results_url= 3004--bes_system_keywords= 3005--bes_timeout= 3006--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 3007--break_build_on_parallel_dex2oat_failure 3008--nobreak_build_on_parallel_dex2oat_failure 3009--build 3010--nobuild 3011--build_event_binary_file= 3012--build_event_binary_file_path_conversion 3013--nobuild_event_binary_file_path_conversion 3014--build_event_json_file= 3015--build_event_json_file_path_conversion 3016--nobuild_event_json_file_path_conversion 3017--build_event_max_named_set_of_file_entries= 3018--build_event_publish_all_actions 3019--nobuild_event_publish_all_actions 3020--build_event_text_file= 3021--build_event_text_file_path_conversion 3022--nobuild_event_text_file_path_conversion 3023--build_manual_tests 3024--nobuild_manual_tests 3025--build_metadata= 3026--build_python_zip={auto,yes,no} 3027--nobuild_python_zip 3028--build_runfile_links 3029--nobuild_runfile_links 3030--build_runfile_manifests 3031--nobuild_runfile_manifests 3032--build_tag_filters= 3033--build_test_dwp 3034--nobuild_test_dwp 3035--build_tests_only 3036--nobuild_tests_only 3037--cache_test_results={auto,yes,no} 3038--nocache_test_results 3039--canonicalize_policy 3040--nocanonicalize_policy 3041--catalyst_cpus= 3042--cc_output_directory_tag= 3043--cc_proto_library_header_suffixes= 3044--cc_proto_library_source_suffixes= 3045--check_bazel_compatibility={error,warning,off} 3046--check_bzl_visibility 3047--nocheck_bzl_visibility 3048--check_direct_dependencies={off,warning,error} 3049--check_licenses 3050--nocheck_licenses 3051--check_tests_up_to_date 3052--nocheck_tests_up_to_date 3053--check_up_to_date 3054--nocheck_up_to_date 3055--check_visibility 3056--nocheck_visibility 3057--collect_code_coverage 3058--nocollect_code_coverage 3059--color={yes,no,auto} 3060--combined_report={none,lcov} 3061--compilation_mode={fastbuild,dbg,opt} 3062--compile_one_dependency 3063--nocompile_one_dependency 3064--compiler= 3065--config= 3066--conlyopt= 3067--copt= 3068--coverage_output_generator=label 3069--coverage_report_generator=label 3070--coverage_support=label 3071--cpu= 3072--credential_helper= 3073--credential_helper_cache_duration= 3074--credential_helper_timeout= 3075--crosstool_top=label 3076--cs_fdo_absolute_path= 3077--cs_fdo_instrument= 3078--cs_fdo_profile=label 3079--curses={yes,no,auto} 3080--custom_malloc=label 3081--cxxopt= 3082--debug_spawn_scheduler 3083--nodebug_spawn_scheduler 3084--define= 3085--deleted_packages= 3086--desugar_for_android 3087--nodesugar_for_android 3088--desugar_java8_libs 3089--nodesugar_java8_libs 3090--device_debug_entitlements 3091--nodevice_debug_entitlements 3092--discard_analysis_cache 3093--nodiscard_analysis_cache 3094--disk_cache=path 3095--distdir= 3096--dynamic_local_execution_delay= 3097--dynamic_local_strategy= 3098--dynamic_mode={off,default,fully} 3099--dynamic_remote_strategy= 3100--embed_label= 3101--enable_bzlmod 3102--noenable_bzlmod 3103--enable_fdo_profile_absolute_path 3104--noenable_fdo_profile_absolute_path 3105--enable_platform_specific_config 3106--noenable_platform_specific_config 3107--enable_runfiles={auto,yes,no} 3108--noenable_runfiles 3109--enforce_constraints 3110--noenforce_constraints 3111--execution_log_binary_file=path 3112--execution_log_json_file=path 3113--execution_log_sort 3114--noexecution_log_sort 3115--expand_test_suites 3116--noexpand_test_suites 3117--experimental_action_listener= 3118--experimental_action_resource_set 3119--noexperimental_action_resource_set 3120--experimental_add_exec_constraints_to_targets= 3121--experimental_android_compress_java_resources 3122--noexperimental_android_compress_java_resources 3123--experimental_android_databinding_v2 3124--noexperimental_android_databinding_v2 3125--experimental_android_resource_shrinking 3126--noexperimental_android_resource_shrinking 3127--experimental_android_rewrite_dexes_with_rex 3128--noexperimental_android_rewrite_dexes_with_rex 3129--experimental_android_use_parallel_dex2oat 3130--noexperimental_android_use_parallel_dex2oat 3131--experimental_announce_profile_path 3132--noexperimental_announce_profile_path 3133--experimental_bep_target_summary 3134--noexperimental_bep_target_summary 3135--experimental_build_event_expand_filesets 3136--noexperimental_build_event_expand_filesets 3137--experimental_build_event_fully_resolve_fileset_symlinks 3138--noexperimental_build_event_fully_resolve_fileset_symlinks 3139--experimental_build_event_upload_max_retries= 3140--experimental_build_event_upload_retry_minimum_delay= 3141--experimental_build_event_upload_strategy= 3142--experimental_bzl_visibility 3143--noexperimental_bzl_visibility 3144--experimental_cancel_concurrent_tests 3145--noexperimental_cancel_concurrent_tests 3146--experimental_cc_shared_library 3147--noexperimental_cc_shared_library 3148--experimental_check_desugar_deps 3149--noexperimental_check_desugar_deps 3150--experimental_circuit_breaker_strategy={failure} 3151--experimental_collect_code_coverage_for_generated_files 3152--noexperimental_collect_code_coverage_for_generated_files 3153--experimental_collect_load_average_in_profiler 3154--noexperimental_collect_load_average_in_profiler 3155--experimental_collect_local_sandbox_action_metrics 3156--noexperimental_collect_local_sandbox_action_metrics 3157--experimental_collect_pressure_stall_indicators 3158--noexperimental_collect_pressure_stall_indicators 3159--experimental_collect_resource_estimation 3160--noexperimental_collect_resource_estimation 3161--experimental_collect_system_network_usage 3162--noexperimental_collect_system_network_usage 3163--experimental_collect_worker_data_in_profiler 3164--noexperimental_collect_worker_data_in_profiler 3165--experimental_command_profile 3166--noexperimental_command_profile 3167--experimental_convenience_symlinks={normal,clean,ignore,log_only} 3168--experimental_convenience_symlinks_bep_event 3169--noexperimental_convenience_symlinks_bep_event 3170--experimental_disable_external_package 3171--noexperimental_disable_external_package 3172--experimental_docker_image= 3173--experimental_docker_privileged 3174--noexperimental_docker_privileged 3175--experimental_docker_use_customized_images 3176--noexperimental_docker_use_customized_images 3177--experimental_docker_verbose 3178--noexperimental_docker_verbose 3179--experimental_downloader_config= 3180--experimental_dynamic_exclude_tools 3181--noexperimental_dynamic_exclude_tools 3182--experimental_dynamic_ignore_local_signals= 3183--experimental_dynamic_local_load_factor= 3184--experimental_dynamic_slow_remote_time= 3185--experimental_enable_android_migration_apis 3186--noexperimental_enable_android_migration_apis 3187--experimental_enable_docker_sandbox 3188--noexperimental_enable_docker_sandbox 3189--experimental_enable_scl_dialect 3190--noexperimental_enable_scl_dialect 3191--experimental_execution_log_file=path 3192--experimental_extra_action_filter= 3193--experimental_extra_action_top_level_only 3194--noexperimental_extra_action_top_level_only 3195--experimental_fetch_all_coverage_outputs 3196--noexperimental_fetch_all_coverage_outputs 3197--experimental_filter_library_jar_with_program_jar 3198--noexperimental_filter_library_jar_with_program_jar 3199--experimental_generate_llvm_lcov 3200--noexperimental_generate_llvm_lcov 3201--experimental_google_legacy_api 3202--noexperimental_google_legacy_api 3203--experimental_guard_against_concurrent_changes 3204--noexperimental_guard_against_concurrent_changes 3205--experimental_import_deps_checking={off,warning,error} 3206--experimental_include_default_values 3207--noexperimental_include_default_values 3208--experimental_include_xcode_execution_requirements 3209--noexperimental_include_xcode_execution_requirements 3210--experimental_inmemory_dotd_files 3211--noexperimental_inmemory_dotd_files 3212--experimental_inmemory_jdeps_files 3213--noexperimental_inmemory_jdeps_files 3214--experimental_inprocess_symlink_creation 3215--noexperimental_inprocess_symlink_creation 3216--experimental_isolated_extension_usages 3217--noexperimental_isolated_extension_usages 3218--experimental_j2objc_header_map 3219--noexperimental_j2objc_header_map 3220--experimental_j2objc_shorter_header_path 3221--noexperimental_j2objc_shorter_header_path 3222--experimental_java_classpath={off,javabuilder,bazel} 3223--experimental_java_library_export 3224--noexperimental_java_library_export 3225--experimental_limit_android_lint_to_android_constrained_java 3226--noexperimental_limit_android_lint_to_android_constrained_java 3227--experimental_materialize_param_files_directly 3228--noexperimental_materialize_param_files_directly 3229--experimental_objc_fastbuild_options= 3230--experimental_objc_include_scanning 3231--noexperimental_objc_include_scanning 3232--experimental_omitfp 3233--noexperimental_omitfp 3234--experimental_parallel_aquery_output 3235--noexperimental_parallel_aquery_output 3236--experimental_persistent_aar_extractor 3237--noexperimental_persistent_aar_extractor 3238--experimental_platform_in_output_dir 3239--noexperimental_platform_in_output_dir 3240--experimental_platforms_api 3241--noexperimental_platforms_api 3242--experimental_prefer_mutual_xcode 3243--noexperimental_prefer_mutual_xcode 3244--experimental_profile_additional_tasks= 3245--experimental_profile_include_primary_output 3246--noexperimental_profile_include_primary_output 3247--experimental_profile_include_target_label 3248--noexperimental_profile_include_target_label 3249--experimental_proto_descriptor_sets_include_source_info 3250--noexperimental_proto_descriptor_sets_include_source_info 3251--experimental_proto_extra_actions 3252--noexperimental_proto_extra_actions 3253--experimental_record_metrics_for_all_mnemonics 3254--noexperimental_record_metrics_for_all_mnemonics 3255--experimental_remotable_source_manifests 3256--noexperimental_remotable_source_manifests 3257--experimental_remote_cache_async 3258--noexperimental_remote_cache_async 3259--experimental_remote_cache_eviction_retries= 3260--experimental_remote_cache_lease_extension 3261--noexperimental_remote_cache_lease_extension 3262--experimental_remote_cache_ttl= 3263--experimental_remote_capture_corrupted_outputs=path 3264--experimental_remote_discard_merkle_trees 3265--noexperimental_remote_discard_merkle_trees 3266--experimental_remote_downloader= 3267--experimental_remote_downloader_local_fallback 3268--noexperimental_remote_downloader_local_fallback 3269--experimental_remote_execution_keepalive 3270--noexperimental_remote_execution_keepalive 3271--experimental_remote_failure_rate_threshold= 3272--experimental_remote_failure_window_interval= 3273--experimental_remote_mark_tool_inputs 3274--noexperimental_remote_mark_tool_inputs 3275--experimental_remote_merkle_tree_cache 3276--noexperimental_remote_merkle_tree_cache 3277--experimental_remote_merkle_tree_cache_size= 3278--experimental_remote_require_cached 3279--noexperimental_remote_require_cached 3280--experimental_repo_remote_exec 3281--noexperimental_repo_remote_exec 3282--experimental_repository_cache_hardlinks 3283--noexperimental_repository_cache_hardlinks 3284--experimental_repository_downloader_retries= 3285--experimental_repository_resolved_file= 3286--experimental_resolved_file_instead_of_workspace= 3287--experimental_retain_test_configuration_across_testonly 3288--noexperimental_retain_test_configuration_across_testonly 3289--experimental_run_android_lint_on_java_rules 3290--noexperimental_run_android_lint_on_java_rules 3291--experimental_run_bep_event_include_residue 3292--noexperimental_run_bep_event_include_residue 3293--experimental_sandbox_async_tree_delete_idle_threads= 3294--experimental_sandbox_memory_limit_mb= 3295--experimental_sandboxfs_map_symlink_targets 3296--noexperimental_sandboxfs_map_symlink_targets 3297--experimental_sandboxfs_path= 3298--experimental_save_feature_state 3299--noexperimental_save_feature_state 3300--experimental_scale_timeouts= 3301--experimental_shrink_worker_pool 3302--noexperimental_shrink_worker_pool 3303--experimental_sibling_repository_layout 3304--noexperimental_sibling_repository_layout 3305--experimental_spawn_scheduler 3306--experimental_split_coverage_postprocessing 3307--noexperimental_split_coverage_postprocessing 3308--experimental_split_xml_generation 3309--noexperimental_split_xml_generation 3310--experimental_starlark_cc_import 3311--noexperimental_starlark_cc_import 3312--experimental_stream_log_file_uploads 3313--noexperimental_stream_log_file_uploads 3314--experimental_strict_fileset_output 3315--noexperimental_strict_fileset_output 3316--experimental_strict_java_deps={off,warn,error,strict,default} 3317--experimental_total_worker_memory_limit_mb= 3318--experimental_ui_max_stdouterr_bytes= 3319--experimental_unsupported_and_brittle_include_scanning 3320--noexperimental_unsupported_and_brittle_include_scanning 3321--experimental_use_hermetic_linux_sandbox 3322--noexperimental_use_hermetic_linux_sandbox 3323--experimental_use_llvm_covmap 3324--noexperimental_use_llvm_covmap 3325--experimental_use_sandboxfs={auto,yes,no} 3326--noexperimental_use_sandboxfs 3327--experimental_use_semaphore_for_jobs 3328--noexperimental_use_semaphore_for_jobs 3329--experimental_use_validation_aspect 3330--noexperimental_use_validation_aspect 3331--experimental_use_windows_sandbox={auto,yes,no} 3332--noexperimental_use_windows_sandbox 3333--experimental_windows_sandbox_path= 3334--experimental_windows_watchfs 3335--noexperimental_windows_watchfs 3336--experimental_worker_allowlist= 3337--experimental_worker_as_resource 3338--noexperimental_worker_as_resource 3339--experimental_worker_cancellation 3340--noexperimental_worker_cancellation 3341--experimental_worker_for_repo_fetching={off,platform,virtual} 3342--experimental_worker_memory_limit_mb= 3343--experimental_worker_metrics_poll_interval= 3344--experimental_worker_multiplex_sandboxing 3345--noexperimental_worker_multiplex_sandboxing 3346--experimental_worker_sandbox_hardening 3347--noexperimental_worker_sandbox_hardening 3348--experimental_worker_strict_flagfiles 3349--noexperimental_worker_strict_flagfiles 3350--experimental_workspace_rules_log_file=path 3351--explain=path 3352--explicit_java_test_deps 3353--noexplicit_java_test_deps 3354--extra_execution_platforms= 3355--extra_toolchains= 3356--fat_apk_cpu= 3357--fat_apk_hwasan 3358--nofat_apk_hwasan 3359--fdo_instrument= 3360--fdo_optimize= 3361--fdo_prefetch_hints=label 3362--fdo_profile=label 3363--features= 3364--fission= 3365--flag_alias= 3366--flaky_test_attempts= 3367--for_command= 3368--force_pic 3369--noforce_pic 3370--gc_thrashing_limits= 3371--gc_thrashing_threshold= 3372--generate_json_trace_profile={auto,yes,no} 3373--nogenerate_json_trace_profile 3374--genrule_strategy= 3375--google_auth_scopes= 3376--google_credentials= 3377--google_default_credentials 3378--nogoogle_default_credentials 3379--grpc_keepalive_time= 3380--grpc_keepalive_timeout= 3381--grte_top=label 3382--heap_dump_on_oom 3383--noheap_dump_on_oom 3384--heuristically_drop_nodes 3385--noheuristically_drop_nodes 3386--high_priority_workers= 3387--host_action_env= 3388--host_compilation_mode={fastbuild,dbg,opt} 3389--host_compiler= 3390--host_conlyopt= 3391--host_copt= 3392--host_cpu= 3393--host_crosstool_top=label 3394--host_cxxopt= 3395--host_features= 3396--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 3397--host_grte_top=label 3398--host_java_launcher=label 3399--host_javacopt= 3400--host_jvmopt= 3401--host_linkopt= 3402--host_macos_minimum_os= 3403--host_per_file_copt= 3404--host_platform=label 3405--host_swiftcopt= 3406--http_connector_attempts= 3407--http_connector_retry_max_timeout= 3408--http_timeout_scaling= 3409--ignore_dev_dependency 3410--noignore_dev_dependency 3411--ignore_unsupported_sandboxing 3412--noignore_unsupported_sandboxing 3413--incompatible_allow_tags_propagation 3414--noincompatible_allow_tags_propagation 3415--incompatible_always_check_depset_elements 3416--noincompatible_always_check_depset_elements 3417--incompatible_always_include_files_in_data 3418--noincompatible_always_include_files_in_data 3419--incompatible_auto_exec_groups 3420--noincompatible_auto_exec_groups 3421--incompatible_check_sharding_support 3422--noincompatible_check_sharding_support 3423--incompatible_check_testonly_for_output_files 3424--noincompatible_check_testonly_for_output_files 3425--incompatible_check_visibility_for_toolchains 3426--noincompatible_check_visibility_for_toolchains 3427--incompatible_config_setting_private_default_visibility 3428--noincompatible_config_setting_private_default_visibility 3429--incompatible_default_to_explicit_init_py 3430--noincompatible_default_to_explicit_init_py 3431--incompatible_depset_for_java_output_source_jars 3432--noincompatible_depset_for_java_output_source_jars 3433--incompatible_depset_for_libraries_to_link_getter 3434--noincompatible_depset_for_libraries_to_link_getter 3435--incompatible_disable_native_android_rules 3436--noincompatible_disable_native_android_rules 3437--incompatible_disable_native_apple_binary_rule 3438--noincompatible_disable_native_apple_binary_rule 3439--incompatible_disable_non_executable_java_binary 3440--noincompatible_disable_non_executable_java_binary 3441--incompatible_disable_objc_library_transition 3442--noincompatible_disable_objc_library_transition 3443--incompatible_disable_starlark_host_transitions 3444--noincompatible_disable_starlark_host_transitions 3445--incompatible_disable_target_provider_fields 3446--noincompatible_disable_target_provider_fields 3447--incompatible_disallow_empty_glob 3448--noincompatible_disallow_empty_glob 3449--incompatible_disallow_legacy_py_provider 3450--noincompatible_disallow_legacy_py_provider 3451--incompatible_disallow_sdk_frameworks_attributes 3452--noincompatible_disallow_sdk_frameworks_attributes 3453--incompatible_disallow_struct_provider_syntax 3454--noincompatible_disallow_struct_provider_syntax 3455--incompatible_disallow_symlink_file_to_dir 3456--noincompatible_disallow_symlink_file_to_dir 3457--incompatible_do_not_split_linking_cmdline 3458--noincompatible_do_not_split_linking_cmdline 3459--incompatible_dont_enable_host_nonhost_crosstool_features 3460--noincompatible_dont_enable_host_nonhost_crosstool_features 3461--incompatible_dont_use_javasourceinfoprovider 3462--noincompatible_dont_use_javasourceinfoprovider 3463--incompatible_enable_android_toolchain_resolution 3464--noincompatible_enable_android_toolchain_resolution 3465--incompatible_enable_apple_toolchain_resolution 3466--noincompatible_enable_apple_toolchain_resolution 3467--incompatible_enable_proto_toolchain_resolution 3468--noincompatible_enable_proto_toolchain_resolution 3469--incompatible_enforce_config_setting_visibility 3470--noincompatible_enforce_config_setting_visibility 3471--incompatible_exclusive_test_sandboxed 3472--noincompatible_exclusive_test_sandboxed 3473--incompatible_existing_rules_immutable_view 3474--noincompatible_existing_rules_immutable_view 3475--incompatible_fail_on_unknown_attributes 3476--noincompatible_fail_on_unknown_attributes 3477--incompatible_fix_package_group_reporoot_syntax 3478--noincompatible_fix_package_group_reporoot_syntax 3479--incompatible_java_common_parameters 3480--noincompatible_java_common_parameters 3481--incompatible_legacy_local_fallback 3482--noincompatible_legacy_local_fallback 3483--incompatible_make_thinlto_command_lines_standalone 3484--noincompatible_make_thinlto_command_lines_standalone 3485--incompatible_merge_fixed_and_default_shell_env 3486--noincompatible_merge_fixed_and_default_shell_env 3487--incompatible_merge_genfiles_directory 3488--noincompatible_merge_genfiles_directory 3489--incompatible_new_actions_api 3490--noincompatible_new_actions_api 3491--incompatible_no_attr_license 3492--noincompatible_no_attr_license 3493--incompatible_no_implicit_file_export 3494--noincompatible_no_implicit_file_export 3495--incompatible_no_rule_outputs_param 3496--noincompatible_no_rule_outputs_param 3497--incompatible_objc_alwayslink_by_default 3498--noincompatible_objc_alwayslink_by_default 3499--incompatible_objc_provider_remove_linking_info 3500--noincompatible_objc_provider_remove_linking_info 3501--incompatible_package_group_has_public_syntax 3502--noincompatible_package_group_has_public_syntax 3503--incompatible_py2_outputs_are_suffixed 3504--noincompatible_py2_outputs_are_suffixed 3505--incompatible_py3_is_default 3506--noincompatible_py3_is_default 3507--incompatible_python_disable_py2 3508--noincompatible_python_disable_py2 3509--incompatible_python_disallow_native_rules 3510--noincompatible_python_disallow_native_rules 3511--incompatible_remote_build_event_upload_respect_no_cache 3512--noincompatible_remote_build_event_upload_respect_no_cache 3513--incompatible_remote_dangling_symlinks 3514--noincompatible_remote_dangling_symlinks 3515--incompatible_remote_disallow_symlink_in_tree_artifact 3516--noincompatible_remote_disallow_symlink_in_tree_artifact 3517--incompatible_remote_downloader_send_all_headers 3518--noincompatible_remote_downloader_send_all_headers 3519--incompatible_remote_output_paths_relative_to_input_root 3520--noincompatible_remote_output_paths_relative_to_input_root 3521--incompatible_remote_results_ignore_disk 3522--noincompatible_remote_results_ignore_disk 3523--incompatible_remote_symlinks 3524--noincompatible_remote_symlinks 3525--incompatible_remote_use_new_exit_code_for_lost_inputs 3526--noincompatible_remote_use_new_exit_code_for_lost_inputs 3527--incompatible_remove_legacy_whole_archive 3528--noincompatible_remove_legacy_whole_archive 3529--incompatible_require_ctx_in_configure_features 3530--noincompatible_require_ctx_in_configure_features 3531--incompatible_require_linker_input_cc_api 3532--noincompatible_require_linker_input_cc_api 3533--incompatible_run_shell_command_string 3534--noincompatible_run_shell_command_string 3535--incompatible_sandbox_hermetic_tmp 3536--noincompatible_sandbox_hermetic_tmp 3537--incompatible_stop_exporting_language_modules 3538--noincompatible_stop_exporting_language_modules 3539--incompatible_strict_action_env 3540--noincompatible_strict_action_env 3541--incompatible_struct_has_no_methods 3542--noincompatible_struct_has_no_methods 3543--incompatible_top_level_aspects_require_providers 3544--noincompatible_top_level_aspects_require_providers 3545--incompatible_unambiguous_label_stringification 3546--noincompatible_unambiguous_label_stringification 3547--incompatible_use_cc_configure_from_rules_cc 3548--noincompatible_use_cc_configure_from_rules_cc 3549--incompatible_use_host_features 3550--noincompatible_use_host_features 3551--incompatible_use_python_toolchains 3552--noincompatible_use_python_toolchains 3553--incompatible_validate_top_level_header_inclusions 3554--noincompatible_validate_top_level_header_inclusions 3555--incompatible_visibility_private_attributes_at_definition 3556--noincompatible_visibility_private_attributes_at_definition 3557--incremental_dexing 3558--noincremental_dexing 3559--instrument_test_targets 3560--noinstrument_test_targets 3561--instrumentation_filter= 3562--interface_shared_objects 3563--nointerface_shared_objects 3564--internal_spawn_scheduler 3565--nointernal_spawn_scheduler 3566--invocation_policy= 3567--ios_memleaks 3568--noios_memleaks 3569--ios_minimum_os= 3570--ios_multi_cpus= 3571--ios_sdk_version= 3572--ios_signing_cert_name= 3573--ios_simulator_device= 3574--ios_simulator_version= 3575--j2objc_translation_flags= 3576--java_debug 3577--java_deps 3578--nojava_deps 3579--java_header_compilation 3580--nojava_header_compilation 3581--java_language_version= 3582--java_launcher=label 3583--java_runtime_version= 3584--javacopt= 3585--jobs= 3586--jvmopt= 3587--keep_going 3588--nokeep_going 3589--keep_state_after_build 3590--nokeep_state_after_build 3591--legacy_external_runfiles 3592--nolegacy_external_runfiles 3593--legacy_important_outputs 3594--nolegacy_important_outputs 3595--legacy_main_dex_list_generator=label 3596--legacy_whole_archive 3597--nolegacy_whole_archive 3598--linkopt= 3599--loading_phase_threads= 3600--local_cpu_resources= 3601--local_extra_resources= 3602--local_ram_resources= 3603--local_termination_grace_seconds= 3604--local_test_jobs= 3605--lockfile_mode={off,update,error} 3606--logging= 3607--ltobackendopt= 3608--ltoindexopt= 3609--macos_cpus= 3610--macos_minimum_os= 3611--macos_sdk_version= 3612--materialize_param_files 3613--nomaterialize_param_files 3614--max_computation_steps= 3615--max_config_changes_to_show= 3616--max_test_output_bytes= 3617--memory_profile=path 3618--memory_profile_stable_heap_parameters= 3619--memprof_profile=label 3620--minimum_os_version= 3621--modify_execution_info= 3622--nested_set_depth_limit= 3623--objc_debug_with_GLIBCXX 3624--noobjc_debug_with_GLIBCXX 3625--objc_enable_binary_stripping 3626--noobjc_enable_binary_stripping 3627--objc_generate_linkmap 3628--noobjc_generate_linkmap 3629--objc_use_dotd_pruning 3630--noobjc_use_dotd_pruning 3631--objccopt= 3632--optimizing_dexer=label 3633--output_filter= 3634--output_groups= 3635--override_module= 3636--override_repository= 3637--package_path= 3638--per_file_copt= 3639--per_file_ltobackendopt= 3640--persistent_android_dex_desugar 3641--persistent_android_resource_processor 3642--persistent_multiplex_android_dex_desugar 3643--persistent_multiplex_android_resource_processor 3644--persistent_multiplex_android_tools 3645--platform_mappings=path 3646--platform_suffix= 3647--platforms= 3648--plugin= 3649--process_headers_in_dependencies 3650--noprocess_headers_in_dependencies 3651--profile=path 3652--progress_in_terminal_title 3653--noprogress_in_terminal_title 3654--progress_report_interval= 3655--proguard_top=label 3656--propeller_optimize=label 3657--propeller_optimize_absolute_cc_profile= 3658--propeller_optimize_absolute_ld_profile= 3659--proto_compiler=label 3660--proto_toolchain_for_cc=label 3661--proto_toolchain_for_j2objc=label 3662--proto_toolchain_for_java=label 3663--proto_toolchain_for_javalite=label 3664--protocopt= 3665--python2_path= 3666--python3_path= 3667--python_native_rules_allowlist=label 3668--python_path= 3669--python_top=label 3670--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 3671--record_full_profiler_data 3672--norecord_full_profiler_data 3673--registry= 3674--remote_accept_cached 3675--noremote_accept_cached 3676--remote_build_event_upload={all,minimal} 3677--remote_bytestream_uri_prefix= 3678--remote_cache= 3679--remote_cache_compression 3680--noremote_cache_compression 3681--remote_cache_header= 3682--remote_default_exec_properties= 3683--remote_default_platform_properties= 3684--remote_download_all 3685--remote_download_minimal 3686--remote_download_outputs={all,minimal,toplevel} 3687--remote_download_regex= 3688--remote_download_symlink_template= 3689--remote_download_toplevel 3690--remote_downloader_header= 3691--remote_exec_header= 3692--remote_execution_priority= 3693--remote_executor= 3694--remote_grpc_log=path 3695--remote_header= 3696--remote_instance_name= 3697--remote_local_fallback 3698--noremote_local_fallback 3699--remote_local_fallback_strategy= 3700--remote_max_connections= 3701--remote_print_execution_messages={failure,success,all} 3702--remote_proxy= 3703--remote_result_cache_priority= 3704--remote_retries= 3705--remote_retry_max_delay= 3706--remote_timeout= 3707--remote_upload_local_results 3708--noremote_upload_local_results 3709--remote_verify_downloads 3710--noremote_verify_downloads 3711--repo_env= 3712--repository_cache=path 3713--repository_cache_urls_as_default_canonical_id 3714--norepository_cache_urls_as_default_canonical_id 3715--repository_disable_download 3716--norepository_disable_download 3717--reuse_sandbox_directories 3718--noreuse_sandbox_directories 3719--run_under= 3720--run_validations 3721--norun_validations 3722--runs_per_test= 3723--runs_per_test_detects_flakes 3724--noruns_per_test_detects_flakes 3725--sandbox_add_mount_pair= 3726--sandbox_base= 3727--sandbox_block_path= 3728--sandbox_debug 3729--nosandbox_debug 3730--sandbox_default_allow_network 3731--nosandbox_default_allow_network 3732--sandbox_explicit_pseudoterminal 3733--nosandbox_explicit_pseudoterminal 3734--sandbox_fake_hostname 3735--nosandbox_fake_hostname 3736--sandbox_fake_username 3737--nosandbox_fake_username 3738--sandbox_tmpfs_path= 3739--sandbox_writable_path= 3740--save_temps 3741--nosave_temps 3742--share_native_deps 3743--noshare_native_deps 3744--shell_executable=path 3745--show_loading_progress 3746--noshow_loading_progress 3747--show_progress 3748--noshow_progress 3749--show_progress_rate_limit= 3750--show_result= 3751--show_timestamps 3752--noshow_timestamps 3753--skip_incompatible_explicit_targets 3754--noskip_incompatible_explicit_targets 3755--skyframe_high_water_mark_full_gc_drops_per_invocation= 3756--skyframe_high_water_mark_minor_gc_drops_per_invocation= 3757--skyframe_high_water_mark_threshold= 3758--slim_profile 3759--noslim_profile 3760--spawn_strategy= 3761--stamp 3762--nostamp 3763--starlark_cpu_profile= 3764--strategy= 3765--strategy_regexp= 3766--strict_filesets 3767--nostrict_filesets 3768--strict_proto_deps={off,warn,error,strict,default} 3769--strict_public_imports={off,warn,error,strict,default} 3770--strict_system_includes 3771--nostrict_system_includes 3772--strip={always,sometimes,never} 3773--stripopt= 3774--subcommands={true,pretty_print,false} 3775--swiftcopt= 3776--symlink_prefix= 3777--target_environment= 3778--target_pattern_file= 3779--target_platform_fallback= 3780--test_arg= 3781--test_env= 3782--test_filter= 3783--test_keep_going 3784--notest_keep_going 3785--test_lang_filters= 3786--test_output={summary,errors,all,streamed} 3787--test_result_expiration= 3788--test_runner_fail_fast 3789--notest_runner_fail_fast 3790--test_sharding_strategy= 3791--test_size_filters= 3792--test_strategy= 3793--test_summary={short,terse,detailed,none,testcase} 3794--test_tag_filters= 3795--test_timeout= 3796--test_timeout_filters= 3797--test_tmpdir=path 3798--tls_certificate= 3799--tls_client_certificate= 3800--tls_client_key= 3801--tool_java_language_version= 3802--tool_java_runtime_version= 3803--tool_tag= 3804--toolchain_resolution_debug= 3805--track_incremental_state 3806--notrack_incremental_state 3807--trim_test_configuration 3808--notrim_test_configuration 3809--tvos_cpus= 3810--tvos_minimum_os= 3811--tvos_sdk_version= 3812--ui_actions_shown= 3813--ui_event_filters= 3814--use_ijars 3815--nouse_ijars 3816--use_target_platform_for_tests 3817--nouse_target_platform_for_tests 3818--verbose_explanations 3819--noverbose_explanations 3820--verbose_failures 3821--noverbose_failures 3822--visionos_cpus= 3823--watchfs 3824--nowatchfs 3825--watchos_cpus= 3826--watchos_minimum_os= 3827--watchos_sdk_version= 3828--worker_extra_flag= 3829--worker_max_instances= 3830--worker_max_multiplex_instances= 3831--worker_multiplex 3832--noworker_multiplex 3833--worker_quit_after_build 3834--noworker_quit_after_build 3835--worker_sandboxing 3836--noworker_sandboxing 3837--worker_verbose 3838--noworker_verbose 3839--workspace_status_command=path 3840--xbinary_fdo=label 3841--xcode_version= 3842--xcode_version_config=label 3843--zip_undeclared_test_outputs 3844--nozip_undeclared_test_outputs 3845" 3846BAZEL_COMMAND_CLEAN_FLAGS=" 3847--action_env= 3848--allow_analysis_cache_discard 3849--noallow_analysis_cache_discard 3850--allow_analysis_failures 3851--noallow_analysis_failures 3852--allow_yanked_versions= 3853--analysis_testing_deps_limit= 3854--android_compiler= 3855--android_cpu= 3856--android_crosstool_top=label 3857--android_databinding_use_androidx 3858--noandroid_databinding_use_androidx 3859--android_databinding_use_v3_4_args 3860--noandroid_databinding_use_v3_4_args 3861--android_dynamic_mode={off,default,fully} 3862--android_grte_top=label 3863--android_manifest_merger={legacy,android,force_android} 3864--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 3865--android_platforms= 3866--android_resource_shrinking 3867--noandroid_resource_shrinking 3868--android_sdk=label 3869--announce_rc 3870--noannounce_rc 3871--apk_signing_method={v1,v2,v1_v2,v4} 3872--apple_crosstool_top=label 3873--apple_generate_dsym 3874--noapple_generate_dsym 3875--aspects= 3876--aspects_parameters= 3877--async 3878--noasync 3879--attempt_to_print_relative_paths 3880--noattempt_to_print_relative_paths 3881--auto_cpu_environment_group=label 3882--auto_output_filter={none,all,packages,subpackages} 3883--bep_maximum_open_remote_upload_files= 3884--bes_backend= 3885--bes_check_preceding_lifecycle_events 3886--nobes_check_preceding_lifecycle_events 3887--bes_header= 3888--bes_instance_name= 3889--bes_keywords= 3890--bes_lifecycle_events 3891--nobes_lifecycle_events 3892--bes_oom_finish_upload_timeout= 3893--bes_outerr_buffer_size= 3894--bes_outerr_chunk_size= 3895--bes_proxy= 3896--bes_results_url= 3897--bes_system_keywords= 3898--bes_timeout= 3899--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 3900--break_build_on_parallel_dex2oat_failure 3901--nobreak_build_on_parallel_dex2oat_failure 3902--build 3903--nobuild 3904--build_event_binary_file= 3905--build_event_binary_file_path_conversion 3906--nobuild_event_binary_file_path_conversion 3907--build_event_json_file= 3908--build_event_json_file_path_conversion 3909--nobuild_event_json_file_path_conversion 3910--build_event_max_named_set_of_file_entries= 3911--build_event_publish_all_actions 3912--nobuild_event_publish_all_actions 3913--build_event_text_file= 3914--build_event_text_file_path_conversion 3915--nobuild_event_text_file_path_conversion 3916--build_manual_tests 3917--nobuild_manual_tests 3918--build_metadata= 3919--build_python_zip={auto,yes,no} 3920--nobuild_python_zip 3921--build_runfile_links 3922--nobuild_runfile_links 3923--build_runfile_manifests 3924--nobuild_runfile_manifests 3925--build_tag_filters= 3926--build_test_dwp 3927--nobuild_test_dwp 3928--build_tests_only 3929--nobuild_tests_only 3930--cache_test_results={auto,yes,no} 3931--nocache_test_results 3932--catalyst_cpus= 3933--cc_output_directory_tag= 3934--cc_proto_library_header_suffixes= 3935--cc_proto_library_source_suffixes= 3936--check_bazel_compatibility={error,warning,off} 3937--check_bzl_visibility 3938--nocheck_bzl_visibility 3939--check_direct_dependencies={off,warning,error} 3940--check_licenses 3941--nocheck_licenses 3942--check_tests_up_to_date 3943--nocheck_tests_up_to_date 3944--check_up_to_date 3945--nocheck_up_to_date 3946--check_visibility 3947--nocheck_visibility 3948--collect_code_coverage 3949--nocollect_code_coverage 3950--color={yes,no,auto} 3951--combined_report={none,lcov} 3952--compilation_mode={fastbuild,dbg,opt} 3953--compile_one_dependency 3954--nocompile_one_dependency 3955--compiler= 3956--config= 3957--conlyopt= 3958--copt= 3959--coverage_output_generator=label 3960--coverage_report_generator=label 3961--coverage_support=label 3962--cpu= 3963--credential_helper= 3964--credential_helper_cache_duration= 3965--credential_helper_timeout= 3966--crosstool_top=label 3967--cs_fdo_absolute_path= 3968--cs_fdo_instrument= 3969--cs_fdo_profile=label 3970--curses={yes,no,auto} 3971--custom_malloc=label 3972--cxxopt= 3973--debug_spawn_scheduler 3974--nodebug_spawn_scheduler 3975--define= 3976--deleted_packages= 3977--desugar_for_android 3978--nodesugar_for_android 3979--desugar_java8_libs 3980--nodesugar_java8_libs 3981--device_debug_entitlements 3982--nodevice_debug_entitlements 3983--discard_analysis_cache 3984--nodiscard_analysis_cache 3985--disk_cache=path 3986--distdir= 3987--dynamic_local_execution_delay= 3988--dynamic_local_strategy= 3989--dynamic_mode={off,default,fully} 3990--dynamic_remote_strategy= 3991--embed_label= 3992--enable_bzlmod 3993--noenable_bzlmod 3994--enable_fdo_profile_absolute_path 3995--noenable_fdo_profile_absolute_path 3996--enable_platform_specific_config 3997--noenable_platform_specific_config 3998--enable_runfiles={auto,yes,no} 3999--noenable_runfiles 4000--enforce_constraints 4001--noenforce_constraints 4002--execution_log_binary_file=path 4003--execution_log_json_file=path 4004--execution_log_sort 4005--noexecution_log_sort 4006--expand_test_suites 4007--noexpand_test_suites 4008--experimental_action_listener= 4009--experimental_action_resource_set 4010--noexperimental_action_resource_set 4011--experimental_add_exec_constraints_to_targets= 4012--experimental_android_compress_java_resources 4013--noexperimental_android_compress_java_resources 4014--experimental_android_databinding_v2 4015--noexperimental_android_databinding_v2 4016--experimental_android_resource_shrinking 4017--noexperimental_android_resource_shrinking 4018--experimental_android_rewrite_dexes_with_rex 4019--noexperimental_android_rewrite_dexes_with_rex 4020--experimental_android_use_parallel_dex2oat 4021--noexperimental_android_use_parallel_dex2oat 4022--experimental_announce_profile_path 4023--noexperimental_announce_profile_path 4024--experimental_bep_target_summary 4025--noexperimental_bep_target_summary 4026--experimental_build_event_expand_filesets 4027--noexperimental_build_event_expand_filesets 4028--experimental_build_event_fully_resolve_fileset_symlinks 4029--noexperimental_build_event_fully_resolve_fileset_symlinks 4030--experimental_build_event_upload_max_retries= 4031--experimental_build_event_upload_retry_minimum_delay= 4032--experimental_build_event_upload_strategy= 4033--experimental_bzl_visibility 4034--noexperimental_bzl_visibility 4035--experimental_cancel_concurrent_tests 4036--noexperimental_cancel_concurrent_tests 4037--experimental_cc_shared_library 4038--noexperimental_cc_shared_library 4039--experimental_check_desugar_deps 4040--noexperimental_check_desugar_deps 4041--experimental_circuit_breaker_strategy={failure} 4042--experimental_collect_code_coverage_for_generated_files 4043--noexperimental_collect_code_coverage_for_generated_files 4044--experimental_collect_load_average_in_profiler 4045--noexperimental_collect_load_average_in_profiler 4046--experimental_collect_local_sandbox_action_metrics 4047--noexperimental_collect_local_sandbox_action_metrics 4048--experimental_collect_pressure_stall_indicators 4049--noexperimental_collect_pressure_stall_indicators 4050--experimental_collect_resource_estimation 4051--noexperimental_collect_resource_estimation 4052--experimental_collect_system_network_usage 4053--noexperimental_collect_system_network_usage 4054--experimental_collect_worker_data_in_profiler 4055--noexperimental_collect_worker_data_in_profiler 4056--experimental_command_profile 4057--noexperimental_command_profile 4058--experimental_convenience_symlinks={normal,clean,ignore,log_only} 4059--experimental_convenience_symlinks_bep_event 4060--noexperimental_convenience_symlinks_bep_event 4061--experimental_disable_external_package 4062--noexperimental_disable_external_package 4063--experimental_docker_image= 4064--experimental_docker_privileged 4065--noexperimental_docker_privileged 4066--experimental_docker_use_customized_images 4067--noexperimental_docker_use_customized_images 4068--experimental_docker_verbose 4069--noexperimental_docker_verbose 4070--experimental_downloader_config= 4071--experimental_dynamic_exclude_tools 4072--noexperimental_dynamic_exclude_tools 4073--experimental_dynamic_ignore_local_signals= 4074--experimental_dynamic_local_load_factor= 4075--experimental_dynamic_slow_remote_time= 4076--experimental_enable_android_migration_apis 4077--noexperimental_enable_android_migration_apis 4078--experimental_enable_docker_sandbox 4079--noexperimental_enable_docker_sandbox 4080--experimental_enable_scl_dialect 4081--noexperimental_enable_scl_dialect 4082--experimental_execution_log_file=path 4083--experimental_extra_action_filter= 4084--experimental_extra_action_top_level_only 4085--noexperimental_extra_action_top_level_only 4086--experimental_fetch_all_coverage_outputs 4087--noexperimental_fetch_all_coverage_outputs 4088--experimental_filter_library_jar_with_program_jar 4089--noexperimental_filter_library_jar_with_program_jar 4090--experimental_generate_llvm_lcov 4091--noexperimental_generate_llvm_lcov 4092--experimental_google_legacy_api 4093--noexperimental_google_legacy_api 4094--experimental_guard_against_concurrent_changes 4095--noexperimental_guard_against_concurrent_changes 4096--experimental_import_deps_checking={off,warning,error} 4097--experimental_include_xcode_execution_requirements 4098--noexperimental_include_xcode_execution_requirements 4099--experimental_inmemory_dotd_files 4100--noexperimental_inmemory_dotd_files 4101--experimental_inmemory_jdeps_files 4102--noexperimental_inmemory_jdeps_files 4103--experimental_inprocess_symlink_creation 4104--noexperimental_inprocess_symlink_creation 4105--experimental_isolated_extension_usages 4106--noexperimental_isolated_extension_usages 4107--experimental_j2objc_header_map 4108--noexperimental_j2objc_header_map 4109--experimental_j2objc_shorter_header_path 4110--noexperimental_j2objc_shorter_header_path 4111--experimental_java_classpath={off,javabuilder,bazel} 4112--experimental_java_library_export 4113--noexperimental_java_library_export 4114--experimental_limit_android_lint_to_android_constrained_java 4115--noexperimental_limit_android_lint_to_android_constrained_java 4116--experimental_materialize_param_files_directly 4117--noexperimental_materialize_param_files_directly 4118--experimental_objc_fastbuild_options= 4119--experimental_objc_include_scanning 4120--noexperimental_objc_include_scanning 4121--experimental_omitfp 4122--noexperimental_omitfp 4123--experimental_parallel_aquery_output 4124--noexperimental_parallel_aquery_output 4125--experimental_persistent_aar_extractor 4126--noexperimental_persistent_aar_extractor 4127--experimental_platform_in_output_dir 4128--noexperimental_platform_in_output_dir 4129--experimental_platforms_api 4130--noexperimental_platforms_api 4131--experimental_prefer_mutual_xcode 4132--noexperimental_prefer_mutual_xcode 4133--experimental_profile_additional_tasks= 4134--experimental_profile_include_primary_output 4135--noexperimental_profile_include_primary_output 4136--experimental_profile_include_target_label 4137--noexperimental_profile_include_target_label 4138--experimental_proto_descriptor_sets_include_source_info 4139--noexperimental_proto_descriptor_sets_include_source_info 4140--experimental_proto_extra_actions 4141--noexperimental_proto_extra_actions 4142--experimental_record_metrics_for_all_mnemonics 4143--noexperimental_record_metrics_for_all_mnemonics 4144--experimental_remotable_source_manifests 4145--noexperimental_remotable_source_manifests 4146--experimental_remote_cache_async 4147--noexperimental_remote_cache_async 4148--experimental_remote_cache_eviction_retries= 4149--experimental_remote_cache_lease_extension 4150--noexperimental_remote_cache_lease_extension 4151--experimental_remote_cache_ttl= 4152--experimental_remote_capture_corrupted_outputs=path 4153--experimental_remote_discard_merkle_trees 4154--noexperimental_remote_discard_merkle_trees 4155--experimental_remote_downloader= 4156--experimental_remote_downloader_local_fallback 4157--noexperimental_remote_downloader_local_fallback 4158--experimental_remote_execution_keepalive 4159--noexperimental_remote_execution_keepalive 4160--experimental_remote_failure_rate_threshold= 4161--experimental_remote_failure_window_interval= 4162--experimental_remote_mark_tool_inputs 4163--noexperimental_remote_mark_tool_inputs 4164--experimental_remote_merkle_tree_cache 4165--noexperimental_remote_merkle_tree_cache 4166--experimental_remote_merkle_tree_cache_size= 4167--experimental_remote_require_cached 4168--noexperimental_remote_require_cached 4169--experimental_repo_remote_exec 4170--noexperimental_repo_remote_exec 4171--experimental_repository_cache_hardlinks 4172--noexperimental_repository_cache_hardlinks 4173--experimental_repository_downloader_retries= 4174--experimental_repository_resolved_file= 4175--experimental_resolved_file_instead_of_workspace= 4176--experimental_retain_test_configuration_across_testonly 4177--noexperimental_retain_test_configuration_across_testonly 4178--experimental_run_android_lint_on_java_rules 4179--noexperimental_run_android_lint_on_java_rules 4180--experimental_run_bep_event_include_residue 4181--noexperimental_run_bep_event_include_residue 4182--experimental_sandbox_async_tree_delete_idle_threads= 4183--experimental_sandbox_memory_limit_mb= 4184--experimental_sandboxfs_map_symlink_targets 4185--noexperimental_sandboxfs_map_symlink_targets 4186--experimental_sandboxfs_path= 4187--experimental_save_feature_state 4188--noexperimental_save_feature_state 4189--experimental_scale_timeouts= 4190--experimental_shrink_worker_pool 4191--noexperimental_shrink_worker_pool 4192--experimental_sibling_repository_layout 4193--noexperimental_sibling_repository_layout 4194--experimental_spawn_scheduler 4195--experimental_split_coverage_postprocessing 4196--noexperimental_split_coverage_postprocessing 4197--experimental_split_xml_generation 4198--noexperimental_split_xml_generation 4199--experimental_starlark_cc_import 4200--noexperimental_starlark_cc_import 4201--experimental_stream_log_file_uploads 4202--noexperimental_stream_log_file_uploads 4203--experimental_strict_fileset_output 4204--noexperimental_strict_fileset_output 4205--experimental_strict_java_deps={off,warn,error,strict,default} 4206--experimental_total_worker_memory_limit_mb= 4207--experimental_ui_max_stdouterr_bytes= 4208--experimental_unsupported_and_brittle_include_scanning 4209--noexperimental_unsupported_and_brittle_include_scanning 4210--experimental_use_hermetic_linux_sandbox 4211--noexperimental_use_hermetic_linux_sandbox 4212--experimental_use_llvm_covmap 4213--noexperimental_use_llvm_covmap 4214--experimental_use_sandboxfs={auto,yes,no} 4215--noexperimental_use_sandboxfs 4216--experimental_use_semaphore_for_jobs 4217--noexperimental_use_semaphore_for_jobs 4218--experimental_use_validation_aspect 4219--noexperimental_use_validation_aspect 4220--experimental_use_windows_sandbox={auto,yes,no} 4221--noexperimental_use_windows_sandbox 4222--experimental_windows_sandbox_path= 4223--experimental_windows_watchfs 4224--noexperimental_windows_watchfs 4225--experimental_worker_allowlist= 4226--experimental_worker_as_resource 4227--noexperimental_worker_as_resource 4228--experimental_worker_cancellation 4229--noexperimental_worker_cancellation 4230--experimental_worker_for_repo_fetching={off,platform,virtual} 4231--experimental_worker_memory_limit_mb= 4232--experimental_worker_metrics_poll_interval= 4233--experimental_worker_multiplex_sandboxing 4234--noexperimental_worker_multiplex_sandboxing 4235--experimental_worker_sandbox_hardening 4236--noexperimental_worker_sandbox_hardening 4237--experimental_worker_strict_flagfiles 4238--noexperimental_worker_strict_flagfiles 4239--experimental_workspace_rules_log_file=path 4240--explain=path 4241--explicit_java_test_deps 4242--noexplicit_java_test_deps 4243--expunge 4244--noexpunge 4245--expunge_async 4246--extra_execution_platforms= 4247--extra_toolchains= 4248--fat_apk_cpu= 4249--fat_apk_hwasan 4250--nofat_apk_hwasan 4251--fdo_instrument= 4252--fdo_optimize= 4253--fdo_prefetch_hints=label 4254--fdo_profile=label 4255--features= 4256--fission= 4257--flag_alias= 4258--flaky_test_attempts= 4259--force_pic 4260--noforce_pic 4261--gc_thrashing_limits= 4262--gc_thrashing_threshold= 4263--generate_json_trace_profile={auto,yes,no} 4264--nogenerate_json_trace_profile 4265--genrule_strategy= 4266--google_auth_scopes= 4267--google_credentials= 4268--google_default_credentials 4269--nogoogle_default_credentials 4270--grpc_keepalive_time= 4271--grpc_keepalive_timeout= 4272--grte_top=label 4273--heap_dump_on_oom 4274--noheap_dump_on_oom 4275--heuristically_drop_nodes 4276--noheuristically_drop_nodes 4277--high_priority_workers= 4278--host_action_env= 4279--host_compilation_mode={fastbuild,dbg,opt} 4280--host_compiler= 4281--host_conlyopt= 4282--host_copt= 4283--host_cpu= 4284--host_crosstool_top=label 4285--host_cxxopt= 4286--host_features= 4287--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 4288--host_grte_top=label 4289--host_java_launcher=label 4290--host_javacopt= 4291--host_jvmopt= 4292--host_linkopt= 4293--host_macos_minimum_os= 4294--host_per_file_copt= 4295--host_platform=label 4296--host_swiftcopt= 4297--http_connector_attempts= 4298--http_connector_retry_max_timeout= 4299--http_timeout_scaling= 4300--ignore_dev_dependency 4301--noignore_dev_dependency 4302--ignore_unsupported_sandboxing 4303--noignore_unsupported_sandboxing 4304--incompatible_allow_tags_propagation 4305--noincompatible_allow_tags_propagation 4306--incompatible_always_check_depset_elements 4307--noincompatible_always_check_depset_elements 4308--incompatible_always_include_files_in_data 4309--noincompatible_always_include_files_in_data 4310--incompatible_auto_exec_groups 4311--noincompatible_auto_exec_groups 4312--incompatible_check_sharding_support 4313--noincompatible_check_sharding_support 4314--incompatible_check_testonly_for_output_files 4315--noincompatible_check_testonly_for_output_files 4316--incompatible_check_visibility_for_toolchains 4317--noincompatible_check_visibility_for_toolchains 4318--incompatible_config_setting_private_default_visibility 4319--noincompatible_config_setting_private_default_visibility 4320--incompatible_default_to_explicit_init_py 4321--noincompatible_default_to_explicit_init_py 4322--incompatible_depset_for_java_output_source_jars 4323--noincompatible_depset_for_java_output_source_jars 4324--incompatible_depset_for_libraries_to_link_getter 4325--noincompatible_depset_for_libraries_to_link_getter 4326--incompatible_disable_native_android_rules 4327--noincompatible_disable_native_android_rules 4328--incompatible_disable_native_apple_binary_rule 4329--noincompatible_disable_native_apple_binary_rule 4330--incompatible_disable_non_executable_java_binary 4331--noincompatible_disable_non_executable_java_binary 4332--incompatible_disable_objc_library_transition 4333--noincompatible_disable_objc_library_transition 4334--incompatible_disable_starlark_host_transitions 4335--noincompatible_disable_starlark_host_transitions 4336--incompatible_disable_target_provider_fields 4337--noincompatible_disable_target_provider_fields 4338--incompatible_disallow_empty_glob 4339--noincompatible_disallow_empty_glob 4340--incompatible_disallow_legacy_py_provider 4341--noincompatible_disallow_legacy_py_provider 4342--incompatible_disallow_sdk_frameworks_attributes 4343--noincompatible_disallow_sdk_frameworks_attributes 4344--incompatible_disallow_struct_provider_syntax 4345--noincompatible_disallow_struct_provider_syntax 4346--incompatible_disallow_symlink_file_to_dir 4347--noincompatible_disallow_symlink_file_to_dir 4348--incompatible_do_not_split_linking_cmdline 4349--noincompatible_do_not_split_linking_cmdline 4350--incompatible_dont_enable_host_nonhost_crosstool_features 4351--noincompatible_dont_enable_host_nonhost_crosstool_features 4352--incompatible_dont_use_javasourceinfoprovider 4353--noincompatible_dont_use_javasourceinfoprovider 4354--incompatible_enable_android_toolchain_resolution 4355--noincompatible_enable_android_toolchain_resolution 4356--incompatible_enable_apple_toolchain_resolution 4357--noincompatible_enable_apple_toolchain_resolution 4358--incompatible_enable_proto_toolchain_resolution 4359--noincompatible_enable_proto_toolchain_resolution 4360--incompatible_enforce_config_setting_visibility 4361--noincompatible_enforce_config_setting_visibility 4362--incompatible_exclusive_test_sandboxed 4363--noincompatible_exclusive_test_sandboxed 4364--incompatible_existing_rules_immutable_view 4365--noincompatible_existing_rules_immutable_view 4366--incompatible_fail_on_unknown_attributes 4367--noincompatible_fail_on_unknown_attributes 4368--incompatible_fix_package_group_reporoot_syntax 4369--noincompatible_fix_package_group_reporoot_syntax 4370--incompatible_java_common_parameters 4371--noincompatible_java_common_parameters 4372--incompatible_legacy_local_fallback 4373--noincompatible_legacy_local_fallback 4374--incompatible_make_thinlto_command_lines_standalone 4375--noincompatible_make_thinlto_command_lines_standalone 4376--incompatible_merge_fixed_and_default_shell_env 4377--noincompatible_merge_fixed_and_default_shell_env 4378--incompatible_merge_genfiles_directory 4379--noincompatible_merge_genfiles_directory 4380--incompatible_new_actions_api 4381--noincompatible_new_actions_api 4382--incompatible_no_attr_license 4383--noincompatible_no_attr_license 4384--incompatible_no_implicit_file_export 4385--noincompatible_no_implicit_file_export 4386--incompatible_no_rule_outputs_param 4387--noincompatible_no_rule_outputs_param 4388--incompatible_objc_alwayslink_by_default 4389--noincompatible_objc_alwayslink_by_default 4390--incompatible_objc_provider_remove_linking_info 4391--noincompatible_objc_provider_remove_linking_info 4392--incompatible_package_group_has_public_syntax 4393--noincompatible_package_group_has_public_syntax 4394--incompatible_py2_outputs_are_suffixed 4395--noincompatible_py2_outputs_are_suffixed 4396--incompatible_py3_is_default 4397--noincompatible_py3_is_default 4398--incompatible_python_disable_py2 4399--noincompatible_python_disable_py2 4400--incompatible_python_disallow_native_rules 4401--noincompatible_python_disallow_native_rules 4402--incompatible_remote_build_event_upload_respect_no_cache 4403--noincompatible_remote_build_event_upload_respect_no_cache 4404--incompatible_remote_dangling_symlinks 4405--noincompatible_remote_dangling_symlinks 4406--incompatible_remote_disallow_symlink_in_tree_artifact 4407--noincompatible_remote_disallow_symlink_in_tree_artifact 4408--incompatible_remote_downloader_send_all_headers 4409--noincompatible_remote_downloader_send_all_headers 4410--incompatible_remote_output_paths_relative_to_input_root 4411--noincompatible_remote_output_paths_relative_to_input_root 4412--incompatible_remote_results_ignore_disk 4413--noincompatible_remote_results_ignore_disk 4414--incompatible_remote_symlinks 4415--noincompatible_remote_symlinks 4416--incompatible_remote_use_new_exit_code_for_lost_inputs 4417--noincompatible_remote_use_new_exit_code_for_lost_inputs 4418--incompatible_remove_legacy_whole_archive 4419--noincompatible_remove_legacy_whole_archive 4420--incompatible_require_ctx_in_configure_features 4421--noincompatible_require_ctx_in_configure_features 4422--incompatible_require_linker_input_cc_api 4423--noincompatible_require_linker_input_cc_api 4424--incompatible_run_shell_command_string 4425--noincompatible_run_shell_command_string 4426--incompatible_sandbox_hermetic_tmp 4427--noincompatible_sandbox_hermetic_tmp 4428--incompatible_stop_exporting_language_modules 4429--noincompatible_stop_exporting_language_modules 4430--incompatible_strict_action_env 4431--noincompatible_strict_action_env 4432--incompatible_struct_has_no_methods 4433--noincompatible_struct_has_no_methods 4434--incompatible_top_level_aspects_require_providers 4435--noincompatible_top_level_aspects_require_providers 4436--incompatible_unambiguous_label_stringification 4437--noincompatible_unambiguous_label_stringification 4438--incompatible_use_cc_configure_from_rules_cc 4439--noincompatible_use_cc_configure_from_rules_cc 4440--incompatible_use_host_features 4441--noincompatible_use_host_features 4442--incompatible_use_python_toolchains 4443--noincompatible_use_python_toolchains 4444--incompatible_validate_top_level_header_inclusions 4445--noincompatible_validate_top_level_header_inclusions 4446--incompatible_visibility_private_attributes_at_definition 4447--noincompatible_visibility_private_attributes_at_definition 4448--incremental_dexing 4449--noincremental_dexing 4450--instrument_test_targets 4451--noinstrument_test_targets 4452--instrumentation_filter= 4453--interface_shared_objects 4454--nointerface_shared_objects 4455--internal_spawn_scheduler 4456--nointernal_spawn_scheduler 4457--ios_memleaks 4458--noios_memleaks 4459--ios_minimum_os= 4460--ios_multi_cpus= 4461--ios_sdk_version= 4462--ios_signing_cert_name= 4463--ios_simulator_device= 4464--ios_simulator_version= 4465--j2objc_translation_flags= 4466--java_debug 4467--java_deps 4468--nojava_deps 4469--java_header_compilation 4470--nojava_header_compilation 4471--java_language_version= 4472--java_launcher=label 4473--java_runtime_version= 4474--javacopt= 4475--jobs= 4476--jvmopt= 4477--keep_going 4478--nokeep_going 4479--keep_state_after_build 4480--nokeep_state_after_build 4481--legacy_external_runfiles 4482--nolegacy_external_runfiles 4483--legacy_important_outputs 4484--nolegacy_important_outputs 4485--legacy_main_dex_list_generator=label 4486--legacy_whole_archive 4487--nolegacy_whole_archive 4488--linkopt= 4489--loading_phase_threads= 4490--local_cpu_resources= 4491--local_extra_resources= 4492--local_ram_resources= 4493--local_termination_grace_seconds= 4494--local_test_jobs= 4495--lockfile_mode={off,update,error} 4496--logging= 4497--ltobackendopt= 4498--ltoindexopt= 4499--macos_cpus= 4500--macos_minimum_os= 4501--macos_sdk_version= 4502--materialize_param_files 4503--nomaterialize_param_files 4504--max_computation_steps= 4505--max_config_changes_to_show= 4506--max_test_output_bytes= 4507--memory_profile=path 4508--memory_profile_stable_heap_parameters= 4509--memprof_profile=label 4510--minimum_os_version= 4511--modify_execution_info= 4512--nested_set_depth_limit= 4513--objc_debug_with_GLIBCXX 4514--noobjc_debug_with_GLIBCXX 4515--objc_enable_binary_stripping 4516--noobjc_enable_binary_stripping 4517--objc_generate_linkmap 4518--noobjc_generate_linkmap 4519--objc_use_dotd_pruning 4520--noobjc_use_dotd_pruning 4521--objccopt= 4522--optimizing_dexer=label 4523--output_filter= 4524--output_groups= 4525--override_module= 4526--override_repository= 4527--package_path= 4528--per_file_copt= 4529--per_file_ltobackendopt= 4530--persistent_android_dex_desugar 4531--persistent_android_resource_processor 4532--persistent_multiplex_android_dex_desugar 4533--persistent_multiplex_android_resource_processor 4534--persistent_multiplex_android_tools 4535--platform_mappings=path 4536--platform_suffix= 4537--platforms= 4538--plugin= 4539--process_headers_in_dependencies 4540--noprocess_headers_in_dependencies 4541--profile=path 4542--progress_in_terminal_title 4543--noprogress_in_terminal_title 4544--progress_report_interval= 4545--proguard_top=label 4546--propeller_optimize=label 4547--propeller_optimize_absolute_cc_profile= 4548--propeller_optimize_absolute_ld_profile= 4549--proto_compiler=label 4550--proto_toolchain_for_cc=label 4551--proto_toolchain_for_j2objc=label 4552--proto_toolchain_for_java=label 4553--proto_toolchain_for_javalite=label 4554--protocopt= 4555--python2_path= 4556--python3_path= 4557--python_native_rules_allowlist=label 4558--python_path= 4559--python_top=label 4560--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 4561--record_full_profiler_data 4562--norecord_full_profiler_data 4563--registry= 4564--remote_accept_cached 4565--noremote_accept_cached 4566--remote_build_event_upload={all,minimal} 4567--remote_bytestream_uri_prefix= 4568--remote_cache= 4569--remote_cache_compression 4570--noremote_cache_compression 4571--remote_cache_header= 4572--remote_default_exec_properties= 4573--remote_default_platform_properties= 4574--remote_download_all 4575--remote_download_minimal 4576--remote_download_outputs={all,minimal,toplevel} 4577--remote_download_regex= 4578--remote_download_symlink_template= 4579--remote_download_toplevel 4580--remote_downloader_header= 4581--remote_exec_header= 4582--remote_execution_priority= 4583--remote_executor= 4584--remote_grpc_log=path 4585--remote_header= 4586--remote_instance_name= 4587--remote_local_fallback 4588--noremote_local_fallback 4589--remote_local_fallback_strategy= 4590--remote_max_connections= 4591--remote_print_execution_messages={failure,success,all} 4592--remote_proxy= 4593--remote_result_cache_priority= 4594--remote_retries= 4595--remote_retry_max_delay= 4596--remote_timeout= 4597--remote_upload_local_results 4598--noremote_upload_local_results 4599--remote_verify_downloads 4600--noremote_verify_downloads 4601--repo_env= 4602--repository_cache=path 4603--repository_cache_urls_as_default_canonical_id 4604--norepository_cache_urls_as_default_canonical_id 4605--repository_disable_download 4606--norepository_disable_download 4607--reuse_sandbox_directories 4608--noreuse_sandbox_directories 4609--run_under= 4610--run_validations 4611--norun_validations 4612--runs_per_test= 4613--runs_per_test_detects_flakes 4614--noruns_per_test_detects_flakes 4615--sandbox_add_mount_pair= 4616--sandbox_base= 4617--sandbox_block_path= 4618--sandbox_debug 4619--nosandbox_debug 4620--sandbox_default_allow_network 4621--nosandbox_default_allow_network 4622--sandbox_explicit_pseudoterminal 4623--nosandbox_explicit_pseudoterminal 4624--sandbox_fake_hostname 4625--nosandbox_fake_hostname 4626--sandbox_fake_username 4627--nosandbox_fake_username 4628--sandbox_tmpfs_path= 4629--sandbox_writable_path= 4630--save_temps 4631--nosave_temps 4632--share_native_deps 4633--noshare_native_deps 4634--shell_executable=path 4635--show_loading_progress 4636--noshow_loading_progress 4637--show_progress 4638--noshow_progress 4639--show_progress_rate_limit= 4640--show_result= 4641--show_timestamps 4642--noshow_timestamps 4643--skip_incompatible_explicit_targets 4644--noskip_incompatible_explicit_targets 4645--skyframe_high_water_mark_full_gc_drops_per_invocation= 4646--skyframe_high_water_mark_minor_gc_drops_per_invocation= 4647--skyframe_high_water_mark_threshold= 4648--slim_profile 4649--noslim_profile 4650--spawn_strategy= 4651--stamp 4652--nostamp 4653--starlark_cpu_profile= 4654--strategy= 4655--strategy_regexp= 4656--strict_filesets 4657--nostrict_filesets 4658--strict_proto_deps={off,warn,error,strict,default} 4659--strict_public_imports={off,warn,error,strict,default} 4660--strict_system_includes 4661--nostrict_system_includes 4662--strip={always,sometimes,never} 4663--stripopt= 4664--subcommands={true,pretty_print,false} 4665--swiftcopt= 4666--symlink_prefix= 4667--target_environment= 4668--target_pattern_file= 4669--target_platform_fallback= 4670--test_arg= 4671--test_env= 4672--test_filter= 4673--test_keep_going 4674--notest_keep_going 4675--test_lang_filters= 4676--test_output={summary,errors,all,streamed} 4677--test_result_expiration= 4678--test_runner_fail_fast 4679--notest_runner_fail_fast 4680--test_sharding_strategy= 4681--test_size_filters= 4682--test_strategy= 4683--test_summary={short,terse,detailed,none,testcase} 4684--test_tag_filters= 4685--test_timeout= 4686--test_timeout_filters= 4687--test_tmpdir=path 4688--tls_certificate= 4689--tls_client_certificate= 4690--tls_client_key= 4691--tool_java_language_version= 4692--tool_java_runtime_version= 4693--tool_tag= 4694--toolchain_resolution_debug= 4695--track_incremental_state 4696--notrack_incremental_state 4697--trim_test_configuration 4698--notrim_test_configuration 4699--tvos_cpus= 4700--tvos_minimum_os= 4701--tvos_sdk_version= 4702--ui_actions_shown= 4703--ui_event_filters= 4704--use_ijars 4705--nouse_ijars 4706--use_target_platform_for_tests 4707--nouse_target_platform_for_tests 4708--verbose_explanations 4709--noverbose_explanations 4710--verbose_failures 4711--noverbose_failures 4712--visionos_cpus= 4713--watchfs 4714--nowatchfs 4715--watchos_cpus= 4716--watchos_minimum_os= 4717--watchos_sdk_version= 4718--worker_extra_flag= 4719--worker_max_instances= 4720--worker_max_multiplex_instances= 4721--worker_multiplex 4722--noworker_multiplex 4723--worker_quit_after_build 4724--noworker_quit_after_build 4725--worker_sandboxing 4726--noworker_sandboxing 4727--worker_verbose 4728--noworker_verbose 4729--workspace_status_command=path 4730--xbinary_fdo=label 4731--xcode_version= 4732--xcode_version_config=label 4733--zip_undeclared_test_outputs 4734--nozip_undeclared_test_outputs 4735" 4736BAZEL_COMMAND_CONFIG_ARGUMENT="string" 4737BAZEL_COMMAND_CONFIG_FLAGS=" 4738--action_env= 4739--allow_analysis_cache_discard 4740--noallow_analysis_cache_discard 4741--allow_analysis_failures 4742--noallow_analysis_failures 4743--allow_yanked_versions= 4744--analysis_testing_deps_limit= 4745--android_compiler= 4746--android_cpu= 4747--android_crosstool_top=label 4748--android_databinding_use_androidx 4749--noandroid_databinding_use_androidx 4750--android_databinding_use_v3_4_args 4751--noandroid_databinding_use_v3_4_args 4752--android_dynamic_mode={off,default,fully} 4753--android_grte_top=label 4754--android_manifest_merger={legacy,android,force_android} 4755--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 4756--android_platforms= 4757--android_resource_shrinking 4758--noandroid_resource_shrinking 4759--android_sdk=label 4760--announce_rc 4761--noannounce_rc 4762--apk_signing_method={v1,v2,v1_v2,v4} 4763--apple_crosstool_top=label 4764--apple_generate_dsym 4765--noapple_generate_dsym 4766--aspects= 4767--aspects_parameters= 4768--attempt_to_print_relative_paths 4769--noattempt_to_print_relative_paths 4770--auto_cpu_environment_group=label 4771--auto_output_filter={none,all,packages,subpackages} 4772--bep_maximum_open_remote_upload_files= 4773--bes_backend= 4774--bes_check_preceding_lifecycle_events 4775--nobes_check_preceding_lifecycle_events 4776--bes_header= 4777--bes_instance_name= 4778--bes_keywords= 4779--bes_lifecycle_events 4780--nobes_lifecycle_events 4781--bes_oom_finish_upload_timeout= 4782--bes_outerr_buffer_size= 4783--bes_outerr_chunk_size= 4784--bes_proxy= 4785--bes_results_url= 4786--bes_system_keywords= 4787--bes_timeout= 4788--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 4789--break_build_on_parallel_dex2oat_failure 4790--nobreak_build_on_parallel_dex2oat_failure 4791--build 4792--nobuild 4793--build_event_binary_file= 4794--build_event_binary_file_path_conversion 4795--nobuild_event_binary_file_path_conversion 4796--build_event_json_file= 4797--build_event_json_file_path_conversion 4798--nobuild_event_json_file_path_conversion 4799--build_event_max_named_set_of_file_entries= 4800--build_event_publish_all_actions 4801--nobuild_event_publish_all_actions 4802--build_event_text_file= 4803--build_event_text_file_path_conversion 4804--nobuild_event_text_file_path_conversion 4805--build_manual_tests 4806--nobuild_manual_tests 4807--build_metadata= 4808--build_python_zip={auto,yes,no} 4809--nobuild_python_zip 4810--build_runfile_links 4811--nobuild_runfile_links 4812--build_runfile_manifests 4813--nobuild_runfile_manifests 4814--build_tag_filters= 4815--build_test_dwp 4816--nobuild_test_dwp 4817--build_tests_only 4818--nobuild_tests_only 4819--cache_test_results={auto,yes,no} 4820--nocache_test_results 4821--catalyst_cpus= 4822--cc_output_directory_tag= 4823--cc_proto_library_header_suffixes= 4824--cc_proto_library_source_suffixes= 4825--check_bazel_compatibility={error,warning,off} 4826--check_bzl_visibility 4827--nocheck_bzl_visibility 4828--check_direct_dependencies={off,warning,error} 4829--check_licenses 4830--nocheck_licenses 4831--check_tests_up_to_date 4832--nocheck_tests_up_to_date 4833--check_up_to_date 4834--nocheck_up_to_date 4835--check_visibility 4836--nocheck_visibility 4837--collect_code_coverage 4838--nocollect_code_coverage 4839--color={yes,no,auto} 4840--combined_report={none,lcov} 4841--compilation_mode={fastbuild,dbg,opt} 4842--compile_one_dependency 4843--nocompile_one_dependency 4844--compiler= 4845--config= 4846--conlyopt= 4847--copt= 4848--coverage_output_generator=label 4849--coverage_report_generator=label 4850--coverage_support=label 4851--cpu= 4852--credential_helper= 4853--credential_helper_cache_duration= 4854--credential_helper_timeout= 4855--crosstool_top=label 4856--cs_fdo_absolute_path= 4857--cs_fdo_instrument= 4858--cs_fdo_profile=label 4859--curses={yes,no,auto} 4860--custom_malloc=label 4861--cxxopt= 4862--debug_spawn_scheduler 4863--nodebug_spawn_scheduler 4864--define= 4865--deleted_packages= 4866--desugar_for_android 4867--nodesugar_for_android 4868--desugar_java8_libs 4869--nodesugar_java8_libs 4870--device_debug_entitlements 4871--nodevice_debug_entitlements 4872--discard_analysis_cache 4873--nodiscard_analysis_cache 4874--disk_cache=path 4875--distdir= 4876--dump_all 4877--nodump_all 4878--dynamic_local_execution_delay= 4879--dynamic_local_strategy= 4880--dynamic_mode={off,default,fully} 4881--dynamic_remote_strategy= 4882--embed_label= 4883--enable_bzlmod 4884--noenable_bzlmod 4885--enable_fdo_profile_absolute_path 4886--noenable_fdo_profile_absolute_path 4887--enable_platform_specific_config 4888--noenable_platform_specific_config 4889--enable_runfiles={auto,yes,no} 4890--noenable_runfiles 4891--enforce_constraints 4892--noenforce_constraints 4893--execution_log_binary_file=path 4894--execution_log_json_file=path 4895--execution_log_sort 4896--noexecution_log_sort 4897--expand_test_suites 4898--noexpand_test_suites 4899--experimental_action_listener= 4900--experimental_action_resource_set 4901--noexperimental_action_resource_set 4902--experimental_add_exec_constraints_to_targets= 4903--experimental_android_compress_java_resources 4904--noexperimental_android_compress_java_resources 4905--experimental_android_databinding_v2 4906--noexperimental_android_databinding_v2 4907--experimental_android_resource_shrinking 4908--noexperimental_android_resource_shrinking 4909--experimental_android_rewrite_dexes_with_rex 4910--noexperimental_android_rewrite_dexes_with_rex 4911--experimental_android_use_parallel_dex2oat 4912--noexperimental_android_use_parallel_dex2oat 4913--experimental_announce_profile_path 4914--noexperimental_announce_profile_path 4915--experimental_bep_target_summary 4916--noexperimental_bep_target_summary 4917--experimental_build_event_expand_filesets 4918--noexperimental_build_event_expand_filesets 4919--experimental_build_event_fully_resolve_fileset_symlinks 4920--noexperimental_build_event_fully_resolve_fileset_symlinks 4921--experimental_build_event_upload_max_retries= 4922--experimental_build_event_upload_retry_minimum_delay= 4923--experimental_build_event_upload_strategy= 4924--experimental_bzl_visibility 4925--noexperimental_bzl_visibility 4926--experimental_cancel_concurrent_tests 4927--noexperimental_cancel_concurrent_tests 4928--experimental_cc_shared_library 4929--noexperimental_cc_shared_library 4930--experimental_check_desugar_deps 4931--noexperimental_check_desugar_deps 4932--experimental_circuit_breaker_strategy={failure} 4933--experimental_collect_code_coverage_for_generated_files 4934--noexperimental_collect_code_coverage_for_generated_files 4935--experimental_collect_load_average_in_profiler 4936--noexperimental_collect_load_average_in_profiler 4937--experimental_collect_local_sandbox_action_metrics 4938--noexperimental_collect_local_sandbox_action_metrics 4939--experimental_collect_pressure_stall_indicators 4940--noexperimental_collect_pressure_stall_indicators 4941--experimental_collect_resource_estimation 4942--noexperimental_collect_resource_estimation 4943--experimental_collect_system_network_usage 4944--noexperimental_collect_system_network_usage 4945--experimental_collect_worker_data_in_profiler 4946--noexperimental_collect_worker_data_in_profiler 4947--experimental_command_profile 4948--noexperimental_command_profile 4949--experimental_convenience_symlinks={normal,clean,ignore,log_only} 4950--experimental_convenience_symlinks_bep_event 4951--noexperimental_convenience_symlinks_bep_event 4952--experimental_disable_external_package 4953--noexperimental_disable_external_package 4954--experimental_docker_image= 4955--experimental_docker_privileged 4956--noexperimental_docker_privileged 4957--experimental_docker_use_customized_images 4958--noexperimental_docker_use_customized_images 4959--experimental_docker_verbose 4960--noexperimental_docker_verbose 4961--experimental_downloader_config= 4962--experimental_dynamic_exclude_tools 4963--noexperimental_dynamic_exclude_tools 4964--experimental_dynamic_ignore_local_signals= 4965--experimental_dynamic_local_load_factor= 4966--experimental_dynamic_slow_remote_time= 4967--experimental_enable_android_migration_apis 4968--noexperimental_enable_android_migration_apis 4969--experimental_enable_docker_sandbox 4970--noexperimental_enable_docker_sandbox 4971--experimental_enable_scl_dialect 4972--noexperimental_enable_scl_dialect 4973--experimental_execution_log_file=path 4974--experimental_extra_action_filter= 4975--experimental_extra_action_top_level_only 4976--noexperimental_extra_action_top_level_only 4977--experimental_fetch_all_coverage_outputs 4978--noexperimental_fetch_all_coverage_outputs 4979--experimental_filter_library_jar_with_program_jar 4980--noexperimental_filter_library_jar_with_program_jar 4981--experimental_generate_llvm_lcov 4982--noexperimental_generate_llvm_lcov 4983--experimental_google_legacy_api 4984--noexperimental_google_legacy_api 4985--experimental_guard_against_concurrent_changes 4986--noexperimental_guard_against_concurrent_changes 4987--experimental_import_deps_checking={off,warning,error} 4988--experimental_include_xcode_execution_requirements 4989--noexperimental_include_xcode_execution_requirements 4990--experimental_inmemory_dotd_files 4991--noexperimental_inmemory_dotd_files 4992--experimental_inmemory_jdeps_files 4993--noexperimental_inmemory_jdeps_files 4994--experimental_inprocess_symlink_creation 4995--noexperimental_inprocess_symlink_creation 4996--experimental_isolated_extension_usages 4997--noexperimental_isolated_extension_usages 4998--experimental_j2objc_header_map 4999--noexperimental_j2objc_header_map 5000--experimental_j2objc_shorter_header_path 5001--noexperimental_j2objc_shorter_header_path 5002--experimental_java_classpath={off,javabuilder,bazel} 5003--experimental_java_library_export 5004--noexperimental_java_library_export 5005--experimental_limit_android_lint_to_android_constrained_java 5006--noexperimental_limit_android_lint_to_android_constrained_java 5007--experimental_materialize_param_files_directly 5008--noexperimental_materialize_param_files_directly 5009--experimental_objc_fastbuild_options= 5010--experimental_objc_include_scanning 5011--noexperimental_objc_include_scanning 5012--experimental_omitfp 5013--noexperimental_omitfp 5014--experimental_parallel_aquery_output 5015--noexperimental_parallel_aquery_output 5016--experimental_persistent_aar_extractor 5017--noexperimental_persistent_aar_extractor 5018--experimental_platform_in_output_dir 5019--noexperimental_platform_in_output_dir 5020--experimental_platforms_api 5021--noexperimental_platforms_api 5022--experimental_prefer_mutual_xcode 5023--noexperimental_prefer_mutual_xcode 5024--experimental_profile_additional_tasks= 5025--experimental_profile_include_primary_output 5026--noexperimental_profile_include_primary_output 5027--experimental_profile_include_target_label 5028--noexperimental_profile_include_target_label 5029--experimental_proto_descriptor_sets_include_source_info 5030--noexperimental_proto_descriptor_sets_include_source_info 5031--experimental_proto_extra_actions 5032--noexperimental_proto_extra_actions 5033--experimental_record_metrics_for_all_mnemonics 5034--noexperimental_record_metrics_for_all_mnemonics 5035--experimental_remotable_source_manifests 5036--noexperimental_remotable_source_manifests 5037--experimental_remote_cache_async 5038--noexperimental_remote_cache_async 5039--experimental_remote_cache_eviction_retries= 5040--experimental_remote_cache_lease_extension 5041--noexperimental_remote_cache_lease_extension 5042--experimental_remote_cache_ttl= 5043--experimental_remote_capture_corrupted_outputs=path 5044--experimental_remote_discard_merkle_trees 5045--noexperimental_remote_discard_merkle_trees 5046--experimental_remote_downloader= 5047--experimental_remote_downloader_local_fallback 5048--noexperimental_remote_downloader_local_fallback 5049--experimental_remote_execution_keepalive 5050--noexperimental_remote_execution_keepalive 5051--experimental_remote_failure_rate_threshold= 5052--experimental_remote_failure_window_interval= 5053--experimental_remote_mark_tool_inputs 5054--noexperimental_remote_mark_tool_inputs 5055--experimental_remote_merkle_tree_cache 5056--noexperimental_remote_merkle_tree_cache 5057--experimental_remote_merkle_tree_cache_size= 5058--experimental_remote_require_cached 5059--noexperimental_remote_require_cached 5060--experimental_repo_remote_exec 5061--noexperimental_repo_remote_exec 5062--experimental_repository_cache_hardlinks 5063--noexperimental_repository_cache_hardlinks 5064--experimental_repository_downloader_retries= 5065--experimental_repository_resolved_file= 5066--experimental_resolved_file_instead_of_workspace= 5067--experimental_retain_test_configuration_across_testonly 5068--noexperimental_retain_test_configuration_across_testonly 5069--experimental_run_android_lint_on_java_rules 5070--noexperimental_run_android_lint_on_java_rules 5071--experimental_run_bep_event_include_residue 5072--noexperimental_run_bep_event_include_residue 5073--experimental_sandbox_async_tree_delete_idle_threads= 5074--experimental_sandbox_memory_limit_mb= 5075--experimental_sandboxfs_map_symlink_targets 5076--noexperimental_sandboxfs_map_symlink_targets 5077--experimental_sandboxfs_path= 5078--experimental_save_feature_state 5079--noexperimental_save_feature_state 5080--experimental_scale_timeouts= 5081--experimental_shrink_worker_pool 5082--noexperimental_shrink_worker_pool 5083--experimental_sibling_repository_layout 5084--noexperimental_sibling_repository_layout 5085--experimental_spawn_scheduler 5086--experimental_split_coverage_postprocessing 5087--noexperimental_split_coverage_postprocessing 5088--experimental_split_xml_generation 5089--noexperimental_split_xml_generation 5090--experimental_starlark_cc_import 5091--noexperimental_starlark_cc_import 5092--experimental_stream_log_file_uploads 5093--noexperimental_stream_log_file_uploads 5094--experimental_strict_fileset_output 5095--noexperimental_strict_fileset_output 5096--experimental_strict_java_deps={off,warn,error,strict,default} 5097--experimental_total_worker_memory_limit_mb= 5098--experimental_ui_max_stdouterr_bytes= 5099--experimental_unsupported_and_brittle_include_scanning 5100--noexperimental_unsupported_and_brittle_include_scanning 5101--experimental_use_hermetic_linux_sandbox 5102--noexperimental_use_hermetic_linux_sandbox 5103--experimental_use_llvm_covmap 5104--noexperimental_use_llvm_covmap 5105--experimental_use_sandboxfs={auto,yes,no} 5106--noexperimental_use_sandboxfs 5107--experimental_use_semaphore_for_jobs 5108--noexperimental_use_semaphore_for_jobs 5109--experimental_use_validation_aspect 5110--noexperimental_use_validation_aspect 5111--experimental_use_windows_sandbox={auto,yes,no} 5112--noexperimental_use_windows_sandbox 5113--experimental_windows_sandbox_path= 5114--experimental_windows_watchfs 5115--noexperimental_windows_watchfs 5116--experimental_worker_allowlist= 5117--experimental_worker_as_resource 5118--noexperimental_worker_as_resource 5119--experimental_worker_cancellation 5120--noexperimental_worker_cancellation 5121--experimental_worker_for_repo_fetching={off,platform,virtual} 5122--experimental_worker_memory_limit_mb= 5123--experimental_worker_metrics_poll_interval= 5124--experimental_worker_multiplex_sandboxing 5125--noexperimental_worker_multiplex_sandboxing 5126--experimental_worker_sandbox_hardening 5127--noexperimental_worker_sandbox_hardening 5128--experimental_worker_strict_flagfiles 5129--noexperimental_worker_strict_flagfiles 5130--experimental_workspace_rules_log_file=path 5131--explain=path 5132--explicit_java_test_deps 5133--noexplicit_java_test_deps 5134--extra_execution_platforms= 5135--extra_toolchains= 5136--fat_apk_cpu= 5137--fat_apk_hwasan 5138--nofat_apk_hwasan 5139--fdo_instrument= 5140--fdo_optimize= 5141--fdo_prefetch_hints=label 5142--fdo_profile=label 5143--features= 5144--fission= 5145--flag_alias= 5146--flaky_test_attempts= 5147--force_pic 5148--noforce_pic 5149--gc_thrashing_limits= 5150--gc_thrashing_threshold= 5151--generate_json_trace_profile={auto,yes,no} 5152--nogenerate_json_trace_profile 5153--genrule_strategy= 5154--google_auth_scopes= 5155--google_credentials= 5156--google_default_credentials 5157--nogoogle_default_credentials 5158--grpc_keepalive_time= 5159--grpc_keepalive_timeout= 5160--grte_top=label 5161--heap_dump_on_oom 5162--noheap_dump_on_oom 5163--heuristically_drop_nodes 5164--noheuristically_drop_nodes 5165--high_priority_workers= 5166--host_action_env= 5167--host_compilation_mode={fastbuild,dbg,opt} 5168--host_compiler= 5169--host_conlyopt= 5170--host_copt= 5171--host_cpu= 5172--host_crosstool_top=label 5173--host_cxxopt= 5174--host_features= 5175--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 5176--host_grte_top=label 5177--host_java_launcher=label 5178--host_javacopt= 5179--host_jvmopt= 5180--host_linkopt= 5181--host_macos_minimum_os= 5182--host_per_file_copt= 5183--host_platform=label 5184--host_swiftcopt= 5185--http_connector_attempts= 5186--http_connector_retry_max_timeout= 5187--http_timeout_scaling= 5188--ignore_dev_dependency 5189--noignore_dev_dependency 5190--ignore_unsupported_sandboxing 5191--noignore_unsupported_sandboxing 5192--incompatible_allow_tags_propagation 5193--noincompatible_allow_tags_propagation 5194--incompatible_always_check_depset_elements 5195--noincompatible_always_check_depset_elements 5196--incompatible_always_include_files_in_data 5197--noincompatible_always_include_files_in_data 5198--incompatible_auto_exec_groups 5199--noincompatible_auto_exec_groups 5200--incompatible_check_sharding_support 5201--noincompatible_check_sharding_support 5202--incompatible_check_testonly_for_output_files 5203--noincompatible_check_testonly_for_output_files 5204--incompatible_check_visibility_for_toolchains 5205--noincompatible_check_visibility_for_toolchains 5206--incompatible_config_setting_private_default_visibility 5207--noincompatible_config_setting_private_default_visibility 5208--incompatible_default_to_explicit_init_py 5209--noincompatible_default_to_explicit_init_py 5210--incompatible_depset_for_java_output_source_jars 5211--noincompatible_depset_for_java_output_source_jars 5212--incompatible_depset_for_libraries_to_link_getter 5213--noincompatible_depset_for_libraries_to_link_getter 5214--incompatible_disable_native_android_rules 5215--noincompatible_disable_native_android_rules 5216--incompatible_disable_native_apple_binary_rule 5217--noincompatible_disable_native_apple_binary_rule 5218--incompatible_disable_non_executable_java_binary 5219--noincompatible_disable_non_executable_java_binary 5220--incompatible_disable_objc_library_transition 5221--noincompatible_disable_objc_library_transition 5222--incompatible_disable_starlark_host_transitions 5223--noincompatible_disable_starlark_host_transitions 5224--incompatible_disable_target_provider_fields 5225--noincompatible_disable_target_provider_fields 5226--incompatible_disallow_empty_glob 5227--noincompatible_disallow_empty_glob 5228--incompatible_disallow_legacy_py_provider 5229--noincompatible_disallow_legacy_py_provider 5230--incompatible_disallow_sdk_frameworks_attributes 5231--noincompatible_disallow_sdk_frameworks_attributes 5232--incompatible_disallow_struct_provider_syntax 5233--noincompatible_disallow_struct_provider_syntax 5234--incompatible_disallow_symlink_file_to_dir 5235--noincompatible_disallow_symlink_file_to_dir 5236--incompatible_do_not_split_linking_cmdline 5237--noincompatible_do_not_split_linking_cmdline 5238--incompatible_dont_enable_host_nonhost_crosstool_features 5239--noincompatible_dont_enable_host_nonhost_crosstool_features 5240--incompatible_dont_use_javasourceinfoprovider 5241--noincompatible_dont_use_javasourceinfoprovider 5242--incompatible_enable_android_toolchain_resolution 5243--noincompatible_enable_android_toolchain_resolution 5244--incompatible_enable_apple_toolchain_resolution 5245--noincompatible_enable_apple_toolchain_resolution 5246--incompatible_enable_proto_toolchain_resolution 5247--noincompatible_enable_proto_toolchain_resolution 5248--incompatible_enforce_config_setting_visibility 5249--noincompatible_enforce_config_setting_visibility 5250--incompatible_exclusive_test_sandboxed 5251--noincompatible_exclusive_test_sandboxed 5252--incompatible_existing_rules_immutable_view 5253--noincompatible_existing_rules_immutable_view 5254--incompatible_fail_on_unknown_attributes 5255--noincompatible_fail_on_unknown_attributes 5256--incompatible_fix_package_group_reporoot_syntax 5257--noincompatible_fix_package_group_reporoot_syntax 5258--incompatible_java_common_parameters 5259--noincompatible_java_common_parameters 5260--incompatible_legacy_local_fallback 5261--noincompatible_legacy_local_fallback 5262--incompatible_make_thinlto_command_lines_standalone 5263--noincompatible_make_thinlto_command_lines_standalone 5264--incompatible_merge_fixed_and_default_shell_env 5265--noincompatible_merge_fixed_and_default_shell_env 5266--incompatible_merge_genfiles_directory 5267--noincompatible_merge_genfiles_directory 5268--incompatible_new_actions_api 5269--noincompatible_new_actions_api 5270--incompatible_no_attr_license 5271--noincompatible_no_attr_license 5272--incompatible_no_implicit_file_export 5273--noincompatible_no_implicit_file_export 5274--incompatible_no_rule_outputs_param 5275--noincompatible_no_rule_outputs_param 5276--incompatible_objc_alwayslink_by_default 5277--noincompatible_objc_alwayslink_by_default 5278--incompatible_objc_provider_remove_linking_info 5279--noincompatible_objc_provider_remove_linking_info 5280--incompatible_package_group_has_public_syntax 5281--noincompatible_package_group_has_public_syntax 5282--incompatible_py2_outputs_are_suffixed 5283--noincompatible_py2_outputs_are_suffixed 5284--incompatible_py3_is_default 5285--noincompatible_py3_is_default 5286--incompatible_python_disable_py2 5287--noincompatible_python_disable_py2 5288--incompatible_python_disallow_native_rules 5289--noincompatible_python_disallow_native_rules 5290--incompatible_remote_build_event_upload_respect_no_cache 5291--noincompatible_remote_build_event_upload_respect_no_cache 5292--incompatible_remote_dangling_symlinks 5293--noincompatible_remote_dangling_symlinks 5294--incompatible_remote_disallow_symlink_in_tree_artifact 5295--noincompatible_remote_disallow_symlink_in_tree_artifact 5296--incompatible_remote_downloader_send_all_headers 5297--noincompatible_remote_downloader_send_all_headers 5298--incompatible_remote_output_paths_relative_to_input_root 5299--noincompatible_remote_output_paths_relative_to_input_root 5300--incompatible_remote_results_ignore_disk 5301--noincompatible_remote_results_ignore_disk 5302--incompatible_remote_symlinks 5303--noincompatible_remote_symlinks 5304--incompatible_remote_use_new_exit_code_for_lost_inputs 5305--noincompatible_remote_use_new_exit_code_for_lost_inputs 5306--incompatible_remove_legacy_whole_archive 5307--noincompatible_remove_legacy_whole_archive 5308--incompatible_require_ctx_in_configure_features 5309--noincompatible_require_ctx_in_configure_features 5310--incompatible_require_linker_input_cc_api 5311--noincompatible_require_linker_input_cc_api 5312--incompatible_run_shell_command_string 5313--noincompatible_run_shell_command_string 5314--incompatible_sandbox_hermetic_tmp 5315--noincompatible_sandbox_hermetic_tmp 5316--incompatible_stop_exporting_language_modules 5317--noincompatible_stop_exporting_language_modules 5318--incompatible_strict_action_env 5319--noincompatible_strict_action_env 5320--incompatible_struct_has_no_methods 5321--noincompatible_struct_has_no_methods 5322--incompatible_top_level_aspects_require_providers 5323--noincompatible_top_level_aspects_require_providers 5324--incompatible_unambiguous_label_stringification 5325--noincompatible_unambiguous_label_stringification 5326--incompatible_use_cc_configure_from_rules_cc 5327--noincompatible_use_cc_configure_from_rules_cc 5328--incompatible_use_host_features 5329--noincompatible_use_host_features 5330--incompatible_use_python_toolchains 5331--noincompatible_use_python_toolchains 5332--incompatible_validate_top_level_header_inclusions 5333--noincompatible_validate_top_level_header_inclusions 5334--incompatible_visibility_private_attributes_at_definition 5335--noincompatible_visibility_private_attributes_at_definition 5336--incremental_dexing 5337--noincremental_dexing 5338--instrument_test_targets 5339--noinstrument_test_targets 5340--instrumentation_filter= 5341--interface_shared_objects 5342--nointerface_shared_objects 5343--internal_spawn_scheduler 5344--nointernal_spawn_scheduler 5345--ios_memleaks 5346--noios_memleaks 5347--ios_minimum_os= 5348--ios_multi_cpus= 5349--ios_sdk_version= 5350--ios_signing_cert_name= 5351--ios_simulator_device= 5352--ios_simulator_version= 5353--j2objc_translation_flags= 5354--java_debug 5355--java_deps 5356--nojava_deps 5357--java_header_compilation 5358--nojava_header_compilation 5359--java_language_version= 5360--java_launcher=label 5361--java_runtime_version= 5362--javacopt= 5363--jobs= 5364--jvmopt= 5365--keep_going 5366--nokeep_going 5367--keep_state_after_build 5368--nokeep_state_after_build 5369--legacy_external_runfiles 5370--nolegacy_external_runfiles 5371--legacy_important_outputs 5372--nolegacy_important_outputs 5373--legacy_main_dex_list_generator=label 5374--legacy_whole_archive 5375--nolegacy_whole_archive 5376--linkopt= 5377--loading_phase_threads= 5378--local_cpu_resources= 5379--local_extra_resources= 5380--local_ram_resources= 5381--local_termination_grace_seconds= 5382--local_test_jobs= 5383--lockfile_mode={off,update,error} 5384--logging= 5385--ltobackendopt= 5386--ltoindexopt= 5387--macos_cpus= 5388--macos_minimum_os= 5389--macos_sdk_version= 5390--materialize_param_files 5391--nomaterialize_param_files 5392--max_computation_steps= 5393--max_config_changes_to_show= 5394--max_test_output_bytes= 5395--memory_profile=path 5396--memory_profile_stable_heap_parameters= 5397--memprof_profile=label 5398--minimum_os_version= 5399--modify_execution_info= 5400--nested_set_depth_limit= 5401--objc_debug_with_GLIBCXX 5402--noobjc_debug_with_GLIBCXX 5403--objc_enable_binary_stripping 5404--noobjc_enable_binary_stripping 5405--objc_generate_linkmap 5406--noobjc_generate_linkmap 5407--objc_use_dotd_pruning 5408--noobjc_use_dotd_pruning 5409--objccopt= 5410--optimizing_dexer=label 5411--output={text,json} 5412--output_filter= 5413--output_groups= 5414--override_module= 5415--override_repository= 5416--package_path= 5417--per_file_copt= 5418--per_file_ltobackendopt= 5419--persistent_android_dex_desugar 5420--persistent_android_resource_processor 5421--persistent_multiplex_android_dex_desugar 5422--persistent_multiplex_android_resource_processor 5423--persistent_multiplex_android_tools 5424--platform_mappings=path 5425--platform_suffix= 5426--platforms= 5427--plugin= 5428--process_headers_in_dependencies 5429--noprocess_headers_in_dependencies 5430--profile=path 5431--progress_in_terminal_title 5432--noprogress_in_terminal_title 5433--progress_report_interval= 5434--proguard_top=label 5435--propeller_optimize=label 5436--propeller_optimize_absolute_cc_profile= 5437--propeller_optimize_absolute_ld_profile= 5438--proto_compiler=label 5439--proto_toolchain_for_cc=label 5440--proto_toolchain_for_j2objc=label 5441--proto_toolchain_for_java=label 5442--proto_toolchain_for_javalite=label 5443--protocopt= 5444--python2_path= 5445--python3_path= 5446--python_native_rules_allowlist=label 5447--python_path= 5448--python_top=label 5449--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 5450--record_full_profiler_data 5451--norecord_full_profiler_data 5452--registry= 5453--remote_accept_cached 5454--noremote_accept_cached 5455--remote_build_event_upload={all,minimal} 5456--remote_bytestream_uri_prefix= 5457--remote_cache= 5458--remote_cache_compression 5459--noremote_cache_compression 5460--remote_cache_header= 5461--remote_default_exec_properties= 5462--remote_default_platform_properties= 5463--remote_download_all 5464--remote_download_minimal 5465--remote_download_outputs={all,minimal,toplevel} 5466--remote_download_regex= 5467--remote_download_symlink_template= 5468--remote_download_toplevel 5469--remote_downloader_header= 5470--remote_exec_header= 5471--remote_execution_priority= 5472--remote_executor= 5473--remote_grpc_log=path 5474--remote_header= 5475--remote_instance_name= 5476--remote_local_fallback 5477--noremote_local_fallback 5478--remote_local_fallback_strategy= 5479--remote_max_connections= 5480--remote_print_execution_messages={failure,success,all} 5481--remote_proxy= 5482--remote_result_cache_priority= 5483--remote_retries= 5484--remote_retry_max_delay= 5485--remote_timeout= 5486--remote_upload_local_results 5487--noremote_upload_local_results 5488--remote_verify_downloads 5489--noremote_verify_downloads 5490--repo_env= 5491--repository_cache=path 5492--repository_cache_urls_as_default_canonical_id 5493--norepository_cache_urls_as_default_canonical_id 5494--repository_disable_download 5495--norepository_disable_download 5496--reuse_sandbox_directories 5497--noreuse_sandbox_directories 5498--run_under= 5499--run_validations 5500--norun_validations 5501--runs_per_test= 5502--runs_per_test_detects_flakes 5503--noruns_per_test_detects_flakes 5504--sandbox_add_mount_pair= 5505--sandbox_base= 5506--sandbox_block_path= 5507--sandbox_debug 5508--nosandbox_debug 5509--sandbox_default_allow_network 5510--nosandbox_default_allow_network 5511--sandbox_explicit_pseudoterminal 5512--nosandbox_explicit_pseudoterminal 5513--sandbox_fake_hostname 5514--nosandbox_fake_hostname 5515--sandbox_fake_username 5516--nosandbox_fake_username 5517--sandbox_tmpfs_path= 5518--sandbox_writable_path= 5519--save_temps 5520--nosave_temps 5521--share_native_deps 5522--noshare_native_deps 5523--shell_executable=path 5524--show_loading_progress 5525--noshow_loading_progress 5526--show_progress 5527--noshow_progress 5528--show_progress_rate_limit= 5529--show_result= 5530--show_timestamps 5531--noshow_timestamps 5532--skip_incompatible_explicit_targets 5533--noskip_incompatible_explicit_targets 5534--skyframe_high_water_mark_full_gc_drops_per_invocation= 5535--skyframe_high_water_mark_minor_gc_drops_per_invocation= 5536--skyframe_high_water_mark_threshold= 5537--slim_profile 5538--noslim_profile 5539--spawn_strategy= 5540--stamp 5541--nostamp 5542--starlark_cpu_profile= 5543--strategy= 5544--strategy_regexp= 5545--strict_filesets 5546--nostrict_filesets 5547--strict_proto_deps={off,warn,error,strict,default} 5548--strict_public_imports={off,warn,error,strict,default} 5549--strict_system_includes 5550--nostrict_system_includes 5551--strip={always,sometimes,never} 5552--stripopt= 5553--subcommands={true,pretty_print,false} 5554--swiftcopt= 5555--symlink_prefix= 5556--target_environment= 5557--target_pattern_file= 5558--target_platform_fallback= 5559--test_arg= 5560--test_env= 5561--test_filter= 5562--test_keep_going 5563--notest_keep_going 5564--test_lang_filters= 5565--test_output={summary,errors,all,streamed} 5566--test_result_expiration= 5567--test_runner_fail_fast 5568--notest_runner_fail_fast 5569--test_sharding_strategy= 5570--test_size_filters= 5571--test_strategy= 5572--test_summary={short,terse,detailed,none,testcase} 5573--test_tag_filters= 5574--test_timeout= 5575--test_timeout_filters= 5576--test_tmpdir=path 5577--tls_certificate= 5578--tls_client_certificate= 5579--tls_client_key= 5580--tool_java_language_version= 5581--tool_java_runtime_version= 5582--tool_tag= 5583--toolchain_resolution_debug= 5584--track_incremental_state 5585--notrack_incremental_state 5586--trim_test_configuration 5587--notrim_test_configuration 5588--tvos_cpus= 5589--tvos_minimum_os= 5590--tvos_sdk_version= 5591--ui_actions_shown= 5592--ui_event_filters= 5593--use_ijars 5594--nouse_ijars 5595--use_target_platform_for_tests 5596--nouse_target_platform_for_tests 5597--verbose_explanations 5598--noverbose_explanations 5599--verbose_failures 5600--noverbose_failures 5601--visionos_cpus= 5602--watchfs 5603--nowatchfs 5604--watchos_cpus= 5605--watchos_minimum_os= 5606--watchos_sdk_version= 5607--worker_extra_flag= 5608--worker_max_instances= 5609--worker_max_multiplex_instances= 5610--worker_multiplex 5611--noworker_multiplex 5612--worker_quit_after_build 5613--noworker_quit_after_build 5614--worker_sandboxing 5615--noworker_sandboxing 5616--worker_verbose 5617--noworker_verbose 5618--workspace_status_command=path 5619--xbinary_fdo=label 5620--xcode_version= 5621--xcode_version_config=label 5622--zip_undeclared_test_outputs 5623--nozip_undeclared_test_outputs 5624" 5625BAZEL_COMMAND_COVERAGE_ARGUMENT="label-test" 5626BAZEL_COMMAND_COVERAGE_FLAGS=" 5627--action_env= 5628--allow_analysis_cache_discard 5629--noallow_analysis_cache_discard 5630--allow_analysis_failures 5631--noallow_analysis_failures 5632--allow_yanked_versions= 5633--analysis_testing_deps_limit= 5634--android_compiler= 5635--android_cpu= 5636--android_crosstool_top=label 5637--android_databinding_use_androidx 5638--noandroid_databinding_use_androidx 5639--android_databinding_use_v3_4_args 5640--noandroid_databinding_use_v3_4_args 5641--android_dynamic_mode={off,default,fully} 5642--android_grte_top=label 5643--android_manifest_merger={legacy,android,force_android} 5644--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 5645--android_platforms= 5646--android_resource_shrinking 5647--noandroid_resource_shrinking 5648--android_sdk=label 5649--announce_rc 5650--noannounce_rc 5651--apk_signing_method={v1,v2,v1_v2,v4} 5652--apple_crosstool_top=label 5653--apple_generate_dsym 5654--noapple_generate_dsym 5655--aspects= 5656--aspects_parameters= 5657--attempt_to_print_relative_paths 5658--noattempt_to_print_relative_paths 5659--auto_cpu_environment_group=label 5660--auto_output_filter={none,all,packages,subpackages} 5661--bep_maximum_open_remote_upload_files= 5662--bes_backend= 5663--bes_check_preceding_lifecycle_events 5664--nobes_check_preceding_lifecycle_events 5665--bes_header= 5666--bes_instance_name= 5667--bes_keywords= 5668--bes_lifecycle_events 5669--nobes_lifecycle_events 5670--bes_oom_finish_upload_timeout= 5671--bes_outerr_buffer_size= 5672--bes_outerr_chunk_size= 5673--bes_proxy= 5674--bes_results_url= 5675--bes_system_keywords= 5676--bes_timeout= 5677--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 5678--break_build_on_parallel_dex2oat_failure 5679--nobreak_build_on_parallel_dex2oat_failure 5680--build 5681--nobuild 5682--build_event_binary_file= 5683--build_event_binary_file_path_conversion 5684--nobuild_event_binary_file_path_conversion 5685--build_event_json_file= 5686--build_event_json_file_path_conversion 5687--nobuild_event_json_file_path_conversion 5688--build_event_max_named_set_of_file_entries= 5689--build_event_publish_all_actions 5690--nobuild_event_publish_all_actions 5691--build_event_text_file= 5692--build_event_text_file_path_conversion 5693--nobuild_event_text_file_path_conversion 5694--build_manual_tests 5695--nobuild_manual_tests 5696--build_metadata= 5697--build_python_zip={auto,yes,no} 5698--nobuild_python_zip 5699--build_runfile_links 5700--nobuild_runfile_links 5701--build_runfile_manifests 5702--nobuild_runfile_manifests 5703--build_tag_filters= 5704--build_test_dwp 5705--nobuild_test_dwp 5706--build_tests_only 5707--nobuild_tests_only 5708--cache_test_results={auto,yes,no} 5709--nocache_test_results 5710--catalyst_cpus= 5711--cc_output_directory_tag= 5712--cc_proto_library_header_suffixes= 5713--cc_proto_library_source_suffixes= 5714--check_bazel_compatibility={error,warning,off} 5715--check_bzl_visibility 5716--nocheck_bzl_visibility 5717--check_direct_dependencies={off,warning,error} 5718--check_licenses 5719--nocheck_licenses 5720--check_tests_up_to_date 5721--nocheck_tests_up_to_date 5722--check_up_to_date 5723--nocheck_up_to_date 5724--check_visibility 5725--nocheck_visibility 5726--collect_code_coverage 5727--nocollect_code_coverage 5728--color={yes,no,auto} 5729--combined_report={none,lcov} 5730--compilation_mode={fastbuild,dbg,opt} 5731--compile_one_dependency 5732--nocompile_one_dependency 5733--compiler= 5734--config= 5735--conlyopt= 5736--copt= 5737--coverage_output_generator=label 5738--coverage_report_generator=label 5739--coverage_support=label 5740--cpu= 5741--credential_helper= 5742--credential_helper_cache_duration= 5743--credential_helper_timeout= 5744--crosstool_top=label 5745--cs_fdo_absolute_path= 5746--cs_fdo_instrument= 5747--cs_fdo_profile=label 5748--curses={yes,no,auto} 5749--custom_malloc=label 5750--cxxopt= 5751--debug_spawn_scheduler 5752--nodebug_spawn_scheduler 5753--define= 5754--deleted_packages= 5755--desugar_for_android 5756--nodesugar_for_android 5757--desugar_java8_libs 5758--nodesugar_java8_libs 5759--device_debug_entitlements 5760--nodevice_debug_entitlements 5761--discard_analysis_cache 5762--nodiscard_analysis_cache 5763--disk_cache=path 5764--distdir= 5765--dynamic_local_execution_delay= 5766--dynamic_local_strategy= 5767--dynamic_mode={off,default,fully} 5768--dynamic_remote_strategy= 5769--embed_label= 5770--enable_bzlmod 5771--noenable_bzlmod 5772--enable_fdo_profile_absolute_path 5773--noenable_fdo_profile_absolute_path 5774--enable_platform_specific_config 5775--noenable_platform_specific_config 5776--enable_runfiles={auto,yes,no} 5777--noenable_runfiles 5778--enforce_constraints 5779--noenforce_constraints 5780--execution_log_binary_file=path 5781--execution_log_json_file=path 5782--execution_log_sort 5783--noexecution_log_sort 5784--expand_test_suites 5785--noexpand_test_suites 5786--experimental_action_listener= 5787--experimental_action_resource_set 5788--noexperimental_action_resource_set 5789--experimental_add_exec_constraints_to_targets= 5790--experimental_android_compress_java_resources 5791--noexperimental_android_compress_java_resources 5792--experimental_android_databinding_v2 5793--noexperimental_android_databinding_v2 5794--experimental_android_resource_shrinking 5795--noexperimental_android_resource_shrinking 5796--experimental_android_rewrite_dexes_with_rex 5797--noexperimental_android_rewrite_dexes_with_rex 5798--experimental_android_use_parallel_dex2oat 5799--noexperimental_android_use_parallel_dex2oat 5800--experimental_announce_profile_path 5801--noexperimental_announce_profile_path 5802--experimental_bep_target_summary 5803--noexperimental_bep_target_summary 5804--experimental_build_event_expand_filesets 5805--noexperimental_build_event_expand_filesets 5806--experimental_build_event_fully_resolve_fileset_symlinks 5807--noexperimental_build_event_fully_resolve_fileset_symlinks 5808--experimental_build_event_upload_max_retries= 5809--experimental_build_event_upload_retry_minimum_delay= 5810--experimental_build_event_upload_strategy= 5811--experimental_bzl_visibility 5812--noexperimental_bzl_visibility 5813--experimental_cancel_concurrent_tests 5814--noexperimental_cancel_concurrent_tests 5815--experimental_cc_shared_library 5816--noexperimental_cc_shared_library 5817--experimental_check_desugar_deps 5818--noexperimental_check_desugar_deps 5819--experimental_circuit_breaker_strategy={failure} 5820--experimental_collect_code_coverage_for_generated_files 5821--noexperimental_collect_code_coverage_for_generated_files 5822--experimental_collect_load_average_in_profiler 5823--noexperimental_collect_load_average_in_profiler 5824--experimental_collect_local_sandbox_action_metrics 5825--noexperimental_collect_local_sandbox_action_metrics 5826--experimental_collect_pressure_stall_indicators 5827--noexperimental_collect_pressure_stall_indicators 5828--experimental_collect_resource_estimation 5829--noexperimental_collect_resource_estimation 5830--experimental_collect_system_network_usage 5831--noexperimental_collect_system_network_usage 5832--experimental_collect_worker_data_in_profiler 5833--noexperimental_collect_worker_data_in_profiler 5834--experimental_command_profile 5835--noexperimental_command_profile 5836--experimental_convenience_symlinks={normal,clean,ignore,log_only} 5837--experimental_convenience_symlinks_bep_event 5838--noexperimental_convenience_symlinks_bep_event 5839--experimental_disable_external_package 5840--noexperimental_disable_external_package 5841--experimental_docker_image= 5842--experimental_docker_privileged 5843--noexperimental_docker_privileged 5844--experimental_docker_use_customized_images 5845--noexperimental_docker_use_customized_images 5846--experimental_docker_verbose 5847--noexperimental_docker_verbose 5848--experimental_downloader_config= 5849--experimental_dynamic_exclude_tools 5850--noexperimental_dynamic_exclude_tools 5851--experimental_dynamic_ignore_local_signals= 5852--experimental_dynamic_local_load_factor= 5853--experimental_dynamic_slow_remote_time= 5854--experimental_enable_android_migration_apis 5855--noexperimental_enable_android_migration_apis 5856--experimental_enable_docker_sandbox 5857--noexperimental_enable_docker_sandbox 5858--experimental_enable_scl_dialect 5859--noexperimental_enable_scl_dialect 5860--experimental_execution_log_file=path 5861--experimental_extra_action_filter= 5862--experimental_extra_action_top_level_only 5863--noexperimental_extra_action_top_level_only 5864--experimental_fetch_all_coverage_outputs 5865--noexperimental_fetch_all_coverage_outputs 5866--experimental_filter_library_jar_with_program_jar 5867--noexperimental_filter_library_jar_with_program_jar 5868--experimental_generate_llvm_lcov 5869--noexperimental_generate_llvm_lcov 5870--experimental_google_legacy_api 5871--noexperimental_google_legacy_api 5872--experimental_guard_against_concurrent_changes 5873--noexperimental_guard_against_concurrent_changes 5874--experimental_import_deps_checking={off,warning,error} 5875--experimental_include_xcode_execution_requirements 5876--noexperimental_include_xcode_execution_requirements 5877--experimental_inmemory_dotd_files 5878--noexperimental_inmemory_dotd_files 5879--experimental_inmemory_jdeps_files 5880--noexperimental_inmemory_jdeps_files 5881--experimental_inprocess_symlink_creation 5882--noexperimental_inprocess_symlink_creation 5883--experimental_isolated_extension_usages 5884--noexperimental_isolated_extension_usages 5885--experimental_j2objc_header_map 5886--noexperimental_j2objc_header_map 5887--experimental_j2objc_shorter_header_path 5888--noexperimental_j2objc_shorter_header_path 5889--experimental_java_classpath={off,javabuilder,bazel} 5890--experimental_java_library_export 5891--noexperimental_java_library_export 5892--experimental_limit_android_lint_to_android_constrained_java 5893--noexperimental_limit_android_lint_to_android_constrained_java 5894--experimental_materialize_param_files_directly 5895--noexperimental_materialize_param_files_directly 5896--experimental_objc_fastbuild_options= 5897--experimental_objc_include_scanning 5898--noexperimental_objc_include_scanning 5899--experimental_omitfp 5900--noexperimental_omitfp 5901--experimental_parallel_aquery_output 5902--noexperimental_parallel_aquery_output 5903--experimental_persistent_aar_extractor 5904--noexperimental_persistent_aar_extractor 5905--experimental_platform_in_output_dir 5906--noexperimental_platform_in_output_dir 5907--experimental_platforms_api 5908--noexperimental_platforms_api 5909--experimental_prefer_mutual_xcode 5910--noexperimental_prefer_mutual_xcode 5911--experimental_profile_additional_tasks= 5912--experimental_profile_include_primary_output 5913--noexperimental_profile_include_primary_output 5914--experimental_profile_include_target_label 5915--noexperimental_profile_include_target_label 5916--experimental_proto_descriptor_sets_include_source_info 5917--noexperimental_proto_descriptor_sets_include_source_info 5918--experimental_proto_extra_actions 5919--noexperimental_proto_extra_actions 5920--experimental_record_metrics_for_all_mnemonics 5921--noexperimental_record_metrics_for_all_mnemonics 5922--experimental_remotable_source_manifests 5923--noexperimental_remotable_source_manifests 5924--experimental_remote_cache_async 5925--noexperimental_remote_cache_async 5926--experimental_remote_cache_eviction_retries= 5927--experimental_remote_cache_lease_extension 5928--noexperimental_remote_cache_lease_extension 5929--experimental_remote_cache_ttl= 5930--experimental_remote_capture_corrupted_outputs=path 5931--experimental_remote_discard_merkle_trees 5932--noexperimental_remote_discard_merkle_trees 5933--experimental_remote_downloader= 5934--experimental_remote_downloader_local_fallback 5935--noexperimental_remote_downloader_local_fallback 5936--experimental_remote_execution_keepalive 5937--noexperimental_remote_execution_keepalive 5938--experimental_remote_failure_rate_threshold= 5939--experimental_remote_failure_window_interval= 5940--experimental_remote_mark_tool_inputs 5941--noexperimental_remote_mark_tool_inputs 5942--experimental_remote_merkle_tree_cache 5943--noexperimental_remote_merkle_tree_cache 5944--experimental_remote_merkle_tree_cache_size= 5945--experimental_remote_require_cached 5946--noexperimental_remote_require_cached 5947--experimental_repo_remote_exec 5948--noexperimental_repo_remote_exec 5949--experimental_repository_cache_hardlinks 5950--noexperimental_repository_cache_hardlinks 5951--experimental_repository_downloader_retries= 5952--experimental_repository_resolved_file= 5953--experimental_resolved_file_instead_of_workspace= 5954--experimental_retain_test_configuration_across_testonly 5955--noexperimental_retain_test_configuration_across_testonly 5956--experimental_run_android_lint_on_java_rules 5957--noexperimental_run_android_lint_on_java_rules 5958--experimental_run_bep_event_include_residue 5959--noexperimental_run_bep_event_include_residue 5960--experimental_sandbox_async_tree_delete_idle_threads= 5961--experimental_sandbox_memory_limit_mb= 5962--experimental_sandboxfs_map_symlink_targets 5963--noexperimental_sandboxfs_map_symlink_targets 5964--experimental_sandboxfs_path= 5965--experimental_save_feature_state 5966--noexperimental_save_feature_state 5967--experimental_scale_timeouts= 5968--experimental_shrink_worker_pool 5969--noexperimental_shrink_worker_pool 5970--experimental_sibling_repository_layout 5971--noexperimental_sibling_repository_layout 5972--experimental_spawn_scheduler 5973--experimental_split_coverage_postprocessing 5974--noexperimental_split_coverage_postprocessing 5975--experimental_split_xml_generation 5976--noexperimental_split_xml_generation 5977--experimental_starlark_cc_import 5978--noexperimental_starlark_cc_import 5979--experimental_stream_log_file_uploads 5980--noexperimental_stream_log_file_uploads 5981--experimental_strict_fileset_output 5982--noexperimental_strict_fileset_output 5983--experimental_strict_java_deps={off,warn,error,strict,default} 5984--experimental_total_worker_memory_limit_mb= 5985--experimental_ui_max_stdouterr_bytes= 5986--experimental_unsupported_and_brittle_include_scanning 5987--noexperimental_unsupported_and_brittle_include_scanning 5988--experimental_use_hermetic_linux_sandbox 5989--noexperimental_use_hermetic_linux_sandbox 5990--experimental_use_llvm_covmap 5991--noexperimental_use_llvm_covmap 5992--experimental_use_sandboxfs={auto,yes,no} 5993--noexperimental_use_sandboxfs 5994--experimental_use_semaphore_for_jobs 5995--noexperimental_use_semaphore_for_jobs 5996--experimental_use_validation_aspect 5997--noexperimental_use_validation_aspect 5998--experimental_use_windows_sandbox={auto,yes,no} 5999--noexperimental_use_windows_sandbox 6000--experimental_windows_sandbox_path= 6001--experimental_windows_watchfs 6002--noexperimental_windows_watchfs 6003--experimental_worker_allowlist= 6004--experimental_worker_as_resource 6005--noexperimental_worker_as_resource 6006--experimental_worker_cancellation 6007--noexperimental_worker_cancellation 6008--experimental_worker_for_repo_fetching={off,platform,virtual} 6009--experimental_worker_memory_limit_mb= 6010--experimental_worker_metrics_poll_interval= 6011--experimental_worker_multiplex_sandboxing 6012--noexperimental_worker_multiplex_sandboxing 6013--experimental_worker_sandbox_hardening 6014--noexperimental_worker_sandbox_hardening 6015--experimental_worker_strict_flagfiles 6016--noexperimental_worker_strict_flagfiles 6017--experimental_workspace_rules_log_file=path 6018--explain=path 6019--explicit_java_test_deps 6020--noexplicit_java_test_deps 6021--extra_execution_platforms= 6022--extra_toolchains= 6023--fat_apk_cpu= 6024--fat_apk_hwasan 6025--nofat_apk_hwasan 6026--fdo_instrument= 6027--fdo_optimize= 6028--fdo_prefetch_hints=label 6029--fdo_profile=label 6030--features= 6031--fission= 6032--flag_alias= 6033--flaky_test_attempts= 6034--force_pic 6035--noforce_pic 6036--gc_thrashing_limits= 6037--gc_thrashing_threshold= 6038--generate_json_trace_profile={auto,yes,no} 6039--nogenerate_json_trace_profile 6040--genrule_strategy= 6041--google_auth_scopes= 6042--google_credentials= 6043--google_default_credentials 6044--nogoogle_default_credentials 6045--grpc_keepalive_time= 6046--grpc_keepalive_timeout= 6047--grte_top=label 6048--heap_dump_on_oom 6049--noheap_dump_on_oom 6050--heuristically_drop_nodes 6051--noheuristically_drop_nodes 6052--high_priority_workers= 6053--host_action_env= 6054--host_compilation_mode={fastbuild,dbg,opt} 6055--host_compiler= 6056--host_conlyopt= 6057--host_copt= 6058--host_cpu= 6059--host_crosstool_top=label 6060--host_cxxopt= 6061--host_features= 6062--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 6063--host_grte_top=label 6064--host_java_launcher=label 6065--host_javacopt= 6066--host_jvmopt= 6067--host_linkopt= 6068--host_macos_minimum_os= 6069--host_per_file_copt= 6070--host_platform=label 6071--host_swiftcopt= 6072--http_connector_attempts= 6073--http_connector_retry_max_timeout= 6074--http_timeout_scaling= 6075--ignore_dev_dependency 6076--noignore_dev_dependency 6077--ignore_unsupported_sandboxing 6078--noignore_unsupported_sandboxing 6079--incompatible_allow_tags_propagation 6080--noincompatible_allow_tags_propagation 6081--incompatible_always_check_depset_elements 6082--noincompatible_always_check_depset_elements 6083--incompatible_always_include_files_in_data 6084--noincompatible_always_include_files_in_data 6085--incompatible_auto_exec_groups 6086--noincompatible_auto_exec_groups 6087--incompatible_check_sharding_support 6088--noincompatible_check_sharding_support 6089--incompatible_check_testonly_for_output_files 6090--noincompatible_check_testonly_for_output_files 6091--incompatible_check_visibility_for_toolchains 6092--noincompatible_check_visibility_for_toolchains 6093--incompatible_config_setting_private_default_visibility 6094--noincompatible_config_setting_private_default_visibility 6095--incompatible_default_to_explicit_init_py 6096--noincompatible_default_to_explicit_init_py 6097--incompatible_depset_for_java_output_source_jars 6098--noincompatible_depset_for_java_output_source_jars 6099--incompatible_depset_for_libraries_to_link_getter 6100--noincompatible_depset_for_libraries_to_link_getter 6101--incompatible_disable_native_android_rules 6102--noincompatible_disable_native_android_rules 6103--incompatible_disable_native_apple_binary_rule 6104--noincompatible_disable_native_apple_binary_rule 6105--incompatible_disable_non_executable_java_binary 6106--noincompatible_disable_non_executable_java_binary 6107--incompatible_disable_objc_library_transition 6108--noincompatible_disable_objc_library_transition 6109--incompatible_disable_starlark_host_transitions 6110--noincompatible_disable_starlark_host_transitions 6111--incompatible_disable_target_provider_fields 6112--noincompatible_disable_target_provider_fields 6113--incompatible_disallow_empty_glob 6114--noincompatible_disallow_empty_glob 6115--incompatible_disallow_legacy_py_provider 6116--noincompatible_disallow_legacy_py_provider 6117--incompatible_disallow_sdk_frameworks_attributes 6118--noincompatible_disallow_sdk_frameworks_attributes 6119--incompatible_disallow_struct_provider_syntax 6120--noincompatible_disallow_struct_provider_syntax 6121--incompatible_disallow_symlink_file_to_dir 6122--noincompatible_disallow_symlink_file_to_dir 6123--incompatible_do_not_split_linking_cmdline 6124--noincompatible_do_not_split_linking_cmdline 6125--incompatible_dont_enable_host_nonhost_crosstool_features 6126--noincompatible_dont_enable_host_nonhost_crosstool_features 6127--incompatible_dont_use_javasourceinfoprovider 6128--noincompatible_dont_use_javasourceinfoprovider 6129--incompatible_enable_android_toolchain_resolution 6130--noincompatible_enable_android_toolchain_resolution 6131--incompatible_enable_apple_toolchain_resolution 6132--noincompatible_enable_apple_toolchain_resolution 6133--incompatible_enable_proto_toolchain_resolution 6134--noincompatible_enable_proto_toolchain_resolution 6135--incompatible_enforce_config_setting_visibility 6136--noincompatible_enforce_config_setting_visibility 6137--incompatible_exclusive_test_sandboxed 6138--noincompatible_exclusive_test_sandboxed 6139--incompatible_existing_rules_immutable_view 6140--noincompatible_existing_rules_immutable_view 6141--incompatible_fail_on_unknown_attributes 6142--noincompatible_fail_on_unknown_attributes 6143--incompatible_fix_package_group_reporoot_syntax 6144--noincompatible_fix_package_group_reporoot_syntax 6145--incompatible_java_common_parameters 6146--noincompatible_java_common_parameters 6147--incompatible_legacy_local_fallback 6148--noincompatible_legacy_local_fallback 6149--incompatible_make_thinlto_command_lines_standalone 6150--noincompatible_make_thinlto_command_lines_standalone 6151--incompatible_merge_fixed_and_default_shell_env 6152--noincompatible_merge_fixed_and_default_shell_env 6153--incompatible_merge_genfiles_directory 6154--noincompatible_merge_genfiles_directory 6155--incompatible_new_actions_api 6156--noincompatible_new_actions_api 6157--incompatible_no_attr_license 6158--noincompatible_no_attr_license 6159--incompatible_no_implicit_file_export 6160--noincompatible_no_implicit_file_export 6161--incompatible_no_rule_outputs_param 6162--noincompatible_no_rule_outputs_param 6163--incompatible_objc_alwayslink_by_default 6164--noincompatible_objc_alwayslink_by_default 6165--incompatible_objc_provider_remove_linking_info 6166--noincompatible_objc_provider_remove_linking_info 6167--incompatible_package_group_has_public_syntax 6168--noincompatible_package_group_has_public_syntax 6169--incompatible_py2_outputs_are_suffixed 6170--noincompatible_py2_outputs_are_suffixed 6171--incompatible_py3_is_default 6172--noincompatible_py3_is_default 6173--incompatible_python_disable_py2 6174--noincompatible_python_disable_py2 6175--incompatible_python_disallow_native_rules 6176--noincompatible_python_disallow_native_rules 6177--incompatible_remote_build_event_upload_respect_no_cache 6178--noincompatible_remote_build_event_upload_respect_no_cache 6179--incompatible_remote_dangling_symlinks 6180--noincompatible_remote_dangling_symlinks 6181--incompatible_remote_disallow_symlink_in_tree_artifact 6182--noincompatible_remote_disallow_symlink_in_tree_artifact 6183--incompatible_remote_downloader_send_all_headers 6184--noincompatible_remote_downloader_send_all_headers 6185--incompatible_remote_output_paths_relative_to_input_root 6186--noincompatible_remote_output_paths_relative_to_input_root 6187--incompatible_remote_results_ignore_disk 6188--noincompatible_remote_results_ignore_disk 6189--incompatible_remote_symlinks 6190--noincompatible_remote_symlinks 6191--incompatible_remote_use_new_exit_code_for_lost_inputs 6192--noincompatible_remote_use_new_exit_code_for_lost_inputs 6193--incompatible_remove_legacy_whole_archive 6194--noincompatible_remove_legacy_whole_archive 6195--incompatible_require_ctx_in_configure_features 6196--noincompatible_require_ctx_in_configure_features 6197--incompatible_require_linker_input_cc_api 6198--noincompatible_require_linker_input_cc_api 6199--incompatible_run_shell_command_string 6200--noincompatible_run_shell_command_string 6201--incompatible_sandbox_hermetic_tmp 6202--noincompatible_sandbox_hermetic_tmp 6203--incompatible_stop_exporting_language_modules 6204--noincompatible_stop_exporting_language_modules 6205--incompatible_strict_action_env 6206--noincompatible_strict_action_env 6207--incompatible_struct_has_no_methods 6208--noincompatible_struct_has_no_methods 6209--incompatible_top_level_aspects_require_providers 6210--noincompatible_top_level_aspects_require_providers 6211--incompatible_unambiguous_label_stringification 6212--noincompatible_unambiguous_label_stringification 6213--incompatible_use_cc_configure_from_rules_cc 6214--noincompatible_use_cc_configure_from_rules_cc 6215--incompatible_use_host_features 6216--noincompatible_use_host_features 6217--incompatible_use_python_toolchains 6218--noincompatible_use_python_toolchains 6219--incompatible_validate_top_level_header_inclusions 6220--noincompatible_validate_top_level_header_inclusions 6221--incompatible_visibility_private_attributes_at_definition 6222--noincompatible_visibility_private_attributes_at_definition 6223--incremental_dexing 6224--noincremental_dexing 6225--instrument_test_targets 6226--noinstrument_test_targets 6227--instrumentation_filter= 6228--interface_shared_objects 6229--nointerface_shared_objects 6230--internal_spawn_scheduler 6231--nointernal_spawn_scheduler 6232--ios_memleaks 6233--noios_memleaks 6234--ios_minimum_os= 6235--ios_multi_cpus= 6236--ios_sdk_version= 6237--ios_signing_cert_name= 6238--ios_simulator_device= 6239--ios_simulator_version= 6240--j2objc_translation_flags= 6241--java_debug 6242--java_deps 6243--nojava_deps 6244--java_header_compilation 6245--nojava_header_compilation 6246--java_language_version= 6247--java_launcher=label 6248--java_runtime_version= 6249--javacopt= 6250--jobs= 6251--jvmopt= 6252--keep_going 6253--nokeep_going 6254--keep_state_after_build 6255--nokeep_state_after_build 6256--legacy_external_runfiles 6257--nolegacy_external_runfiles 6258--legacy_important_outputs 6259--nolegacy_important_outputs 6260--legacy_main_dex_list_generator=label 6261--legacy_whole_archive 6262--nolegacy_whole_archive 6263--linkopt= 6264--loading_phase_threads= 6265--local_cpu_resources= 6266--local_extra_resources= 6267--local_ram_resources= 6268--local_termination_grace_seconds= 6269--local_test_jobs= 6270--lockfile_mode={off,update,error} 6271--logging= 6272--ltobackendopt= 6273--ltoindexopt= 6274--macos_cpus= 6275--macos_minimum_os= 6276--macos_sdk_version= 6277--materialize_param_files 6278--nomaterialize_param_files 6279--max_computation_steps= 6280--max_config_changes_to_show= 6281--max_test_output_bytes= 6282--memory_profile=path 6283--memory_profile_stable_heap_parameters= 6284--memprof_profile=label 6285--minimum_os_version= 6286--modify_execution_info= 6287--nested_set_depth_limit= 6288--objc_debug_with_GLIBCXX 6289--noobjc_debug_with_GLIBCXX 6290--objc_enable_binary_stripping 6291--noobjc_enable_binary_stripping 6292--objc_generate_linkmap 6293--noobjc_generate_linkmap 6294--objc_use_dotd_pruning 6295--noobjc_use_dotd_pruning 6296--objccopt= 6297--optimizing_dexer=label 6298--output_filter= 6299--output_groups= 6300--override_module= 6301--override_repository= 6302--package_path= 6303--per_file_copt= 6304--per_file_ltobackendopt= 6305--persistent_android_dex_desugar 6306--persistent_android_resource_processor 6307--persistent_multiplex_android_dex_desugar 6308--persistent_multiplex_android_resource_processor 6309--persistent_multiplex_android_tools 6310--platform_mappings=path 6311--platform_suffix= 6312--platforms= 6313--plugin= 6314--print_relative_test_log_paths 6315--noprint_relative_test_log_paths 6316--process_headers_in_dependencies 6317--noprocess_headers_in_dependencies 6318--profile=path 6319--progress_in_terminal_title 6320--noprogress_in_terminal_title 6321--progress_report_interval= 6322--proguard_top=label 6323--propeller_optimize=label 6324--propeller_optimize_absolute_cc_profile= 6325--propeller_optimize_absolute_ld_profile= 6326--proto_compiler=label 6327--proto_toolchain_for_cc=label 6328--proto_toolchain_for_j2objc=label 6329--proto_toolchain_for_java=label 6330--proto_toolchain_for_javalite=label 6331--protocopt= 6332--python2_path= 6333--python3_path= 6334--python_native_rules_allowlist=label 6335--python_path= 6336--python_top=label 6337--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 6338--record_full_profiler_data 6339--norecord_full_profiler_data 6340--registry= 6341--remote_accept_cached 6342--noremote_accept_cached 6343--remote_build_event_upload={all,minimal} 6344--remote_bytestream_uri_prefix= 6345--remote_cache= 6346--remote_cache_compression 6347--noremote_cache_compression 6348--remote_cache_header= 6349--remote_default_exec_properties= 6350--remote_default_platform_properties= 6351--remote_download_all 6352--remote_download_minimal 6353--remote_download_outputs={all,minimal,toplevel} 6354--remote_download_regex= 6355--remote_download_symlink_template= 6356--remote_download_toplevel 6357--remote_downloader_header= 6358--remote_exec_header= 6359--remote_execution_priority= 6360--remote_executor= 6361--remote_grpc_log=path 6362--remote_header= 6363--remote_instance_name= 6364--remote_local_fallback 6365--noremote_local_fallback 6366--remote_local_fallback_strategy= 6367--remote_max_connections= 6368--remote_print_execution_messages={failure,success,all} 6369--remote_proxy= 6370--remote_result_cache_priority= 6371--remote_retries= 6372--remote_retry_max_delay= 6373--remote_timeout= 6374--remote_upload_local_results 6375--noremote_upload_local_results 6376--remote_verify_downloads 6377--noremote_verify_downloads 6378--repo_env= 6379--repository_cache=path 6380--repository_cache_urls_as_default_canonical_id 6381--norepository_cache_urls_as_default_canonical_id 6382--repository_disable_download 6383--norepository_disable_download 6384--reuse_sandbox_directories 6385--noreuse_sandbox_directories 6386--run_under= 6387--run_validations 6388--norun_validations 6389--runs_per_test= 6390--runs_per_test_detects_flakes 6391--noruns_per_test_detects_flakes 6392--sandbox_add_mount_pair= 6393--sandbox_base= 6394--sandbox_block_path= 6395--sandbox_debug 6396--nosandbox_debug 6397--sandbox_default_allow_network 6398--nosandbox_default_allow_network 6399--sandbox_explicit_pseudoterminal 6400--nosandbox_explicit_pseudoterminal 6401--sandbox_fake_hostname 6402--nosandbox_fake_hostname 6403--sandbox_fake_username 6404--nosandbox_fake_username 6405--sandbox_tmpfs_path= 6406--sandbox_writable_path= 6407--save_temps 6408--nosave_temps 6409--share_native_deps 6410--noshare_native_deps 6411--shell_executable=path 6412--show_loading_progress 6413--noshow_loading_progress 6414--show_progress 6415--noshow_progress 6416--show_progress_rate_limit= 6417--show_result= 6418--show_timestamps 6419--noshow_timestamps 6420--skip_incompatible_explicit_targets 6421--noskip_incompatible_explicit_targets 6422--skyframe_high_water_mark_full_gc_drops_per_invocation= 6423--skyframe_high_water_mark_minor_gc_drops_per_invocation= 6424--skyframe_high_water_mark_threshold= 6425--slim_profile 6426--noslim_profile 6427--spawn_strategy= 6428--stamp 6429--nostamp 6430--starlark_cpu_profile= 6431--strategy= 6432--strategy_regexp= 6433--strict_filesets 6434--nostrict_filesets 6435--strict_proto_deps={off,warn,error,strict,default} 6436--strict_public_imports={off,warn,error,strict,default} 6437--strict_system_includes 6438--nostrict_system_includes 6439--strip={always,sometimes,never} 6440--stripopt= 6441--subcommands={true,pretty_print,false} 6442--swiftcopt= 6443--symlink_prefix= 6444--target_environment= 6445--target_pattern_file= 6446--target_platform_fallback= 6447--test_arg= 6448--test_env= 6449--test_filter= 6450--test_keep_going 6451--notest_keep_going 6452--test_lang_filters= 6453--test_output={summary,errors,all,streamed} 6454--test_result_expiration= 6455--test_runner_fail_fast 6456--notest_runner_fail_fast 6457--test_sharding_strategy= 6458--test_size_filters= 6459--test_strategy= 6460--test_summary={short,terse,detailed,none,testcase} 6461--test_tag_filters= 6462--test_timeout= 6463--test_timeout_filters= 6464--test_tmpdir=path 6465--test_verbose_timeout_warnings 6466--notest_verbose_timeout_warnings 6467--tls_certificate= 6468--tls_client_certificate= 6469--tls_client_key= 6470--tool_java_language_version= 6471--tool_java_runtime_version= 6472--tool_tag= 6473--toolchain_resolution_debug= 6474--track_incremental_state 6475--notrack_incremental_state 6476--trim_test_configuration 6477--notrim_test_configuration 6478--tvos_cpus= 6479--tvos_minimum_os= 6480--tvos_sdk_version= 6481--ui_actions_shown= 6482--ui_event_filters= 6483--use_ijars 6484--nouse_ijars 6485--use_target_platform_for_tests 6486--nouse_target_platform_for_tests 6487--verbose_explanations 6488--noverbose_explanations 6489--verbose_failures 6490--noverbose_failures 6491--verbose_test_summary 6492--noverbose_test_summary 6493--visionos_cpus= 6494--watchfs 6495--nowatchfs 6496--watchos_cpus= 6497--watchos_minimum_os= 6498--watchos_sdk_version= 6499--worker_extra_flag= 6500--worker_max_instances= 6501--worker_max_multiplex_instances= 6502--worker_multiplex 6503--noworker_multiplex 6504--worker_quit_after_build 6505--noworker_quit_after_build 6506--worker_sandboxing 6507--noworker_sandboxing 6508--worker_verbose 6509--noworker_verbose 6510--workspace_status_command=path 6511--xbinary_fdo=label 6512--xcode_version= 6513--xcode_version_config=label 6514--zip_undeclared_test_outputs 6515--nozip_undeclared_test_outputs 6516" 6517BAZEL_COMMAND_CQUERY_ARGUMENT="label" 6518BAZEL_COMMAND_CQUERY_FLAGS=" 6519--action_env= 6520--allow_analysis_cache_discard 6521--noallow_analysis_cache_discard 6522--allow_analysis_failures 6523--noallow_analysis_failures 6524--allow_yanked_versions= 6525--analysis_testing_deps_limit= 6526--android_compiler= 6527--android_cpu= 6528--android_crosstool_top=label 6529--android_databinding_use_androidx 6530--noandroid_databinding_use_androidx 6531--android_databinding_use_v3_4_args 6532--noandroid_databinding_use_v3_4_args 6533--android_dynamic_mode={off,default,fully} 6534--android_grte_top=label 6535--android_manifest_merger={legacy,android,force_android} 6536--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 6537--android_platforms= 6538--android_resource_shrinking 6539--noandroid_resource_shrinking 6540--android_sdk=label 6541--announce_rc 6542--noannounce_rc 6543--apk_signing_method={v1,v2,v1_v2,v4} 6544--apple_crosstool_top=label 6545--apple_generate_dsym 6546--noapple_generate_dsym 6547--aspect_deps={off,conservative,precise} 6548--aspects= 6549--aspects_parameters= 6550--attempt_to_print_relative_paths 6551--noattempt_to_print_relative_paths 6552--auto_cpu_environment_group=label 6553--auto_output_filter={none,all,packages,subpackages} 6554--bep_maximum_open_remote_upload_files= 6555--bes_backend= 6556--bes_check_preceding_lifecycle_events 6557--nobes_check_preceding_lifecycle_events 6558--bes_header= 6559--bes_instance_name= 6560--bes_keywords= 6561--bes_lifecycle_events 6562--nobes_lifecycle_events 6563--bes_oom_finish_upload_timeout= 6564--bes_outerr_buffer_size= 6565--bes_outerr_chunk_size= 6566--bes_proxy= 6567--bes_results_url= 6568--bes_system_keywords= 6569--bes_timeout= 6570--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 6571--break_build_on_parallel_dex2oat_failure 6572--nobreak_build_on_parallel_dex2oat_failure 6573--build 6574--nobuild 6575--build_event_binary_file= 6576--build_event_binary_file_path_conversion 6577--nobuild_event_binary_file_path_conversion 6578--build_event_json_file= 6579--build_event_json_file_path_conversion 6580--nobuild_event_json_file_path_conversion 6581--build_event_max_named_set_of_file_entries= 6582--build_event_publish_all_actions 6583--nobuild_event_publish_all_actions 6584--build_event_text_file= 6585--build_event_text_file_path_conversion 6586--nobuild_event_text_file_path_conversion 6587--build_manual_tests 6588--nobuild_manual_tests 6589--build_metadata= 6590--build_python_zip={auto,yes,no} 6591--nobuild_python_zip 6592--build_runfile_links 6593--nobuild_runfile_links 6594--build_runfile_manifests 6595--nobuild_runfile_manifests 6596--build_tag_filters= 6597--build_test_dwp 6598--nobuild_test_dwp 6599--build_tests_only 6600--nobuild_tests_only 6601--cache_test_results={auto,yes,no} 6602--nocache_test_results 6603--catalyst_cpus= 6604--cc_output_directory_tag= 6605--cc_proto_library_header_suffixes= 6606--cc_proto_library_source_suffixes= 6607--check_bazel_compatibility={error,warning,off} 6608--check_bzl_visibility 6609--nocheck_bzl_visibility 6610--check_direct_dependencies={off,warning,error} 6611--check_licenses 6612--nocheck_licenses 6613--check_tests_up_to_date 6614--nocheck_tests_up_to_date 6615--check_up_to_date 6616--nocheck_up_to_date 6617--check_visibility 6618--nocheck_visibility 6619--collect_code_coverage 6620--nocollect_code_coverage 6621--color={yes,no,auto} 6622--combined_report={none,lcov} 6623--compilation_mode={fastbuild,dbg,opt} 6624--compile_one_dependency 6625--nocompile_one_dependency 6626--compiler= 6627--config= 6628--conlyopt= 6629--consistent_labels 6630--noconsistent_labels 6631--copt= 6632--coverage_output_generator=label 6633--coverage_report_generator=label 6634--coverage_support=label 6635--cpu= 6636--credential_helper= 6637--credential_helper_cache_duration= 6638--credential_helper_timeout= 6639--crosstool_top=label 6640--cs_fdo_absolute_path= 6641--cs_fdo_instrument= 6642--cs_fdo_profile=label 6643--curses={yes,no,auto} 6644--custom_malloc=label 6645--cxxopt= 6646--debug_spawn_scheduler 6647--nodebug_spawn_scheduler 6648--define= 6649--deleted_packages= 6650--desugar_for_android 6651--nodesugar_for_android 6652--desugar_java8_libs 6653--nodesugar_java8_libs 6654--device_debug_entitlements 6655--nodevice_debug_entitlements 6656--discard_analysis_cache 6657--nodiscard_analysis_cache 6658--disk_cache=path 6659--distdir= 6660--dynamic_local_execution_delay= 6661--dynamic_local_strategy= 6662--dynamic_mode={off,default,fully} 6663--dynamic_remote_strategy= 6664--embed_label= 6665--enable_bzlmod 6666--noenable_bzlmod 6667--enable_fdo_profile_absolute_path 6668--noenable_fdo_profile_absolute_path 6669--enable_platform_specific_config 6670--noenable_platform_specific_config 6671--enable_runfiles={auto,yes,no} 6672--noenable_runfiles 6673--enforce_constraints 6674--noenforce_constraints 6675--execution_log_binary_file=path 6676--execution_log_json_file=path 6677--execution_log_sort 6678--noexecution_log_sort 6679--expand_test_suites 6680--noexpand_test_suites 6681--experimental_action_listener= 6682--experimental_action_resource_set 6683--noexperimental_action_resource_set 6684--experimental_add_exec_constraints_to_targets= 6685--experimental_android_compress_java_resources 6686--noexperimental_android_compress_java_resources 6687--experimental_android_databinding_v2 6688--noexperimental_android_databinding_v2 6689--experimental_android_resource_shrinking 6690--noexperimental_android_resource_shrinking 6691--experimental_android_rewrite_dexes_with_rex 6692--noexperimental_android_rewrite_dexes_with_rex 6693--experimental_android_use_parallel_dex2oat 6694--noexperimental_android_use_parallel_dex2oat 6695--experimental_announce_profile_path 6696--noexperimental_announce_profile_path 6697--experimental_bep_target_summary 6698--noexperimental_bep_target_summary 6699--experimental_build_event_expand_filesets 6700--noexperimental_build_event_expand_filesets 6701--experimental_build_event_fully_resolve_fileset_symlinks 6702--noexperimental_build_event_fully_resolve_fileset_symlinks 6703--experimental_build_event_upload_max_retries= 6704--experimental_build_event_upload_retry_minimum_delay= 6705--experimental_build_event_upload_strategy= 6706--experimental_bzl_visibility 6707--noexperimental_bzl_visibility 6708--experimental_cancel_concurrent_tests 6709--noexperimental_cancel_concurrent_tests 6710--experimental_cc_shared_library 6711--noexperimental_cc_shared_library 6712--experimental_check_desugar_deps 6713--noexperimental_check_desugar_deps 6714--experimental_circuit_breaker_strategy={failure} 6715--experimental_collect_code_coverage_for_generated_files 6716--noexperimental_collect_code_coverage_for_generated_files 6717--experimental_collect_load_average_in_profiler 6718--noexperimental_collect_load_average_in_profiler 6719--experimental_collect_local_sandbox_action_metrics 6720--noexperimental_collect_local_sandbox_action_metrics 6721--experimental_collect_pressure_stall_indicators 6722--noexperimental_collect_pressure_stall_indicators 6723--experimental_collect_resource_estimation 6724--noexperimental_collect_resource_estimation 6725--experimental_collect_system_network_usage 6726--noexperimental_collect_system_network_usage 6727--experimental_collect_worker_data_in_profiler 6728--noexperimental_collect_worker_data_in_profiler 6729--experimental_command_profile 6730--noexperimental_command_profile 6731--experimental_convenience_symlinks={normal,clean,ignore,log_only} 6732--experimental_convenience_symlinks_bep_event 6733--noexperimental_convenience_symlinks_bep_event 6734--experimental_disable_external_package 6735--noexperimental_disable_external_package 6736--experimental_docker_image= 6737--experimental_docker_privileged 6738--noexperimental_docker_privileged 6739--experimental_docker_use_customized_images 6740--noexperimental_docker_use_customized_images 6741--experimental_docker_verbose 6742--noexperimental_docker_verbose 6743--experimental_downloader_config= 6744--experimental_dynamic_exclude_tools 6745--noexperimental_dynamic_exclude_tools 6746--experimental_dynamic_ignore_local_signals= 6747--experimental_dynamic_local_load_factor= 6748--experimental_dynamic_slow_remote_time= 6749--experimental_enable_android_migration_apis 6750--noexperimental_enable_android_migration_apis 6751--experimental_enable_docker_sandbox 6752--noexperimental_enable_docker_sandbox 6753--experimental_enable_scl_dialect 6754--noexperimental_enable_scl_dialect 6755--experimental_execution_log_file=path 6756--experimental_extra_action_filter= 6757--experimental_extra_action_top_level_only 6758--noexperimental_extra_action_top_level_only 6759--experimental_fetch_all_coverage_outputs 6760--noexperimental_fetch_all_coverage_outputs 6761--experimental_filter_library_jar_with_program_jar 6762--noexperimental_filter_library_jar_with_program_jar 6763--experimental_generate_llvm_lcov 6764--noexperimental_generate_llvm_lcov 6765--experimental_google_legacy_api 6766--noexperimental_google_legacy_api 6767--experimental_guard_against_concurrent_changes 6768--noexperimental_guard_against_concurrent_changes 6769--experimental_import_deps_checking={off,warning,error} 6770--experimental_include_xcode_execution_requirements 6771--noexperimental_include_xcode_execution_requirements 6772--experimental_inmemory_dotd_files 6773--noexperimental_inmemory_dotd_files 6774--experimental_inmemory_jdeps_files 6775--noexperimental_inmemory_jdeps_files 6776--experimental_inprocess_symlink_creation 6777--noexperimental_inprocess_symlink_creation 6778--experimental_isolated_extension_usages 6779--noexperimental_isolated_extension_usages 6780--experimental_j2objc_header_map 6781--noexperimental_j2objc_header_map 6782--experimental_j2objc_shorter_header_path 6783--noexperimental_j2objc_shorter_header_path 6784--experimental_java_classpath={off,javabuilder,bazel} 6785--experimental_java_library_export 6786--noexperimental_java_library_export 6787--experimental_limit_android_lint_to_android_constrained_java 6788--noexperimental_limit_android_lint_to_android_constrained_java 6789--experimental_materialize_param_files_directly 6790--noexperimental_materialize_param_files_directly 6791--experimental_objc_fastbuild_options= 6792--experimental_objc_include_scanning 6793--noexperimental_objc_include_scanning 6794--experimental_omitfp 6795--noexperimental_omitfp 6796--experimental_parallel_aquery_output 6797--noexperimental_parallel_aquery_output 6798--experimental_persistent_aar_extractor 6799--noexperimental_persistent_aar_extractor 6800--experimental_platform_in_output_dir 6801--noexperimental_platform_in_output_dir 6802--experimental_platforms_api 6803--noexperimental_platforms_api 6804--experimental_prefer_mutual_xcode 6805--noexperimental_prefer_mutual_xcode 6806--experimental_profile_additional_tasks= 6807--experimental_profile_include_primary_output 6808--noexperimental_profile_include_primary_output 6809--experimental_profile_include_target_label 6810--noexperimental_profile_include_target_label 6811--experimental_proto_descriptor_sets_include_source_info 6812--noexperimental_proto_descriptor_sets_include_source_info 6813--experimental_proto_extra_actions 6814--noexperimental_proto_extra_actions 6815--experimental_record_metrics_for_all_mnemonics 6816--noexperimental_record_metrics_for_all_mnemonics 6817--experimental_remotable_source_manifests 6818--noexperimental_remotable_source_manifests 6819--experimental_remote_cache_async 6820--noexperimental_remote_cache_async 6821--experimental_remote_cache_eviction_retries= 6822--experimental_remote_cache_lease_extension 6823--noexperimental_remote_cache_lease_extension 6824--experimental_remote_cache_ttl= 6825--experimental_remote_capture_corrupted_outputs=path 6826--experimental_remote_discard_merkle_trees 6827--noexperimental_remote_discard_merkle_trees 6828--experimental_remote_downloader= 6829--experimental_remote_downloader_local_fallback 6830--noexperimental_remote_downloader_local_fallback 6831--experimental_remote_execution_keepalive 6832--noexperimental_remote_execution_keepalive 6833--experimental_remote_failure_rate_threshold= 6834--experimental_remote_failure_window_interval= 6835--experimental_remote_mark_tool_inputs 6836--noexperimental_remote_mark_tool_inputs 6837--experimental_remote_merkle_tree_cache 6838--noexperimental_remote_merkle_tree_cache 6839--experimental_remote_merkle_tree_cache_size= 6840--experimental_remote_require_cached 6841--noexperimental_remote_require_cached 6842--experimental_repo_remote_exec 6843--noexperimental_repo_remote_exec 6844--experimental_repository_cache_hardlinks 6845--noexperimental_repository_cache_hardlinks 6846--experimental_repository_downloader_retries= 6847--experimental_repository_resolved_file= 6848--experimental_resolved_file_instead_of_workspace= 6849--experimental_retain_test_configuration_across_testonly 6850--noexperimental_retain_test_configuration_across_testonly 6851--experimental_run_android_lint_on_java_rules 6852--noexperimental_run_android_lint_on_java_rules 6853--experimental_run_bep_event_include_residue 6854--noexperimental_run_bep_event_include_residue 6855--experimental_sandbox_async_tree_delete_idle_threads= 6856--experimental_sandbox_memory_limit_mb= 6857--experimental_sandboxfs_map_symlink_targets 6858--noexperimental_sandboxfs_map_symlink_targets 6859--experimental_sandboxfs_path= 6860--experimental_save_feature_state 6861--noexperimental_save_feature_state 6862--experimental_scale_timeouts= 6863--experimental_shrink_worker_pool 6864--noexperimental_shrink_worker_pool 6865--experimental_sibling_repository_layout 6866--noexperimental_sibling_repository_layout 6867--experimental_spawn_scheduler 6868--experimental_split_coverage_postprocessing 6869--noexperimental_split_coverage_postprocessing 6870--experimental_split_xml_generation 6871--noexperimental_split_xml_generation 6872--experimental_starlark_cc_import 6873--noexperimental_starlark_cc_import 6874--experimental_stream_log_file_uploads 6875--noexperimental_stream_log_file_uploads 6876--experimental_strict_fileset_output 6877--noexperimental_strict_fileset_output 6878--experimental_strict_java_deps={off,warn,error,strict,default} 6879--experimental_total_worker_memory_limit_mb= 6880--experimental_ui_max_stdouterr_bytes= 6881--experimental_unsupported_and_brittle_include_scanning 6882--noexperimental_unsupported_and_brittle_include_scanning 6883--experimental_use_hermetic_linux_sandbox 6884--noexperimental_use_hermetic_linux_sandbox 6885--experimental_use_llvm_covmap 6886--noexperimental_use_llvm_covmap 6887--experimental_use_sandboxfs={auto,yes,no} 6888--noexperimental_use_sandboxfs 6889--experimental_use_semaphore_for_jobs 6890--noexperimental_use_semaphore_for_jobs 6891--experimental_use_validation_aspect 6892--noexperimental_use_validation_aspect 6893--experimental_use_windows_sandbox={auto,yes,no} 6894--noexperimental_use_windows_sandbox 6895--experimental_windows_sandbox_path= 6896--experimental_windows_watchfs 6897--noexperimental_windows_watchfs 6898--experimental_worker_allowlist= 6899--experimental_worker_as_resource 6900--noexperimental_worker_as_resource 6901--experimental_worker_cancellation 6902--noexperimental_worker_cancellation 6903--experimental_worker_for_repo_fetching={off,platform,virtual} 6904--experimental_worker_memory_limit_mb= 6905--experimental_worker_metrics_poll_interval= 6906--experimental_worker_multiplex_sandboxing 6907--noexperimental_worker_multiplex_sandboxing 6908--experimental_worker_sandbox_hardening 6909--noexperimental_worker_sandbox_hardening 6910--experimental_worker_strict_flagfiles 6911--noexperimental_worker_strict_flagfiles 6912--experimental_workspace_rules_log_file=path 6913--explain=path 6914--explicit_java_test_deps 6915--noexplicit_java_test_deps 6916--extra_execution_platforms= 6917--extra_toolchains= 6918--fat_apk_cpu= 6919--fat_apk_hwasan 6920--nofat_apk_hwasan 6921--fdo_instrument= 6922--fdo_optimize= 6923--fdo_prefetch_hints=label 6924--fdo_profile=label 6925--features= 6926--fission= 6927--flag_alias= 6928--flaky_test_attempts= 6929--force_pic 6930--noforce_pic 6931--gc_thrashing_limits= 6932--gc_thrashing_threshold= 6933--generate_json_trace_profile={auto,yes,no} 6934--nogenerate_json_trace_profile 6935--genrule_strategy= 6936--google_auth_scopes= 6937--google_credentials= 6938--google_default_credentials 6939--nogoogle_default_credentials 6940--graph:factored 6941--nograph:factored 6942--graph:node_limit= 6943--grpc_keepalive_time= 6944--grpc_keepalive_timeout= 6945--grte_top=label 6946--heap_dump_on_oom 6947--noheap_dump_on_oom 6948--heuristically_drop_nodes 6949--noheuristically_drop_nodes 6950--high_priority_workers= 6951--host_action_env= 6952--host_compilation_mode={fastbuild,dbg,opt} 6953--host_compiler= 6954--host_conlyopt= 6955--host_copt= 6956--host_cpu= 6957--host_crosstool_top=label 6958--host_cxxopt= 6959--host_features= 6960--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 6961--host_grte_top=label 6962--host_java_launcher=label 6963--host_javacopt= 6964--host_jvmopt= 6965--host_linkopt= 6966--host_macos_minimum_os= 6967--host_per_file_copt= 6968--host_platform=label 6969--host_swiftcopt= 6970--http_connector_attempts= 6971--http_connector_retry_max_timeout= 6972--http_timeout_scaling= 6973--ignore_dev_dependency 6974--noignore_dev_dependency 6975--ignore_unsupported_sandboxing 6976--noignore_unsupported_sandboxing 6977--implicit_deps 6978--noimplicit_deps 6979--include_aspects 6980--noinclude_aspects 6981--incompatible_allow_tags_propagation 6982--noincompatible_allow_tags_propagation 6983--incompatible_always_check_depset_elements 6984--noincompatible_always_check_depset_elements 6985--incompatible_always_include_files_in_data 6986--noincompatible_always_include_files_in_data 6987--incompatible_auto_exec_groups 6988--noincompatible_auto_exec_groups 6989--incompatible_check_sharding_support 6990--noincompatible_check_sharding_support 6991--incompatible_check_testonly_for_output_files 6992--noincompatible_check_testonly_for_output_files 6993--incompatible_check_visibility_for_toolchains 6994--noincompatible_check_visibility_for_toolchains 6995--incompatible_config_setting_private_default_visibility 6996--noincompatible_config_setting_private_default_visibility 6997--incompatible_default_to_explicit_init_py 6998--noincompatible_default_to_explicit_init_py 6999--incompatible_depset_for_java_output_source_jars 7000--noincompatible_depset_for_java_output_source_jars 7001--incompatible_depset_for_libraries_to_link_getter 7002--noincompatible_depset_for_libraries_to_link_getter 7003--incompatible_disable_native_android_rules 7004--noincompatible_disable_native_android_rules 7005--incompatible_disable_native_apple_binary_rule 7006--noincompatible_disable_native_apple_binary_rule 7007--incompatible_disable_non_executable_java_binary 7008--noincompatible_disable_non_executable_java_binary 7009--incompatible_disable_objc_library_transition 7010--noincompatible_disable_objc_library_transition 7011--incompatible_disable_starlark_host_transitions 7012--noincompatible_disable_starlark_host_transitions 7013--incompatible_disable_target_provider_fields 7014--noincompatible_disable_target_provider_fields 7015--incompatible_disallow_empty_glob 7016--noincompatible_disallow_empty_glob 7017--incompatible_disallow_legacy_py_provider 7018--noincompatible_disallow_legacy_py_provider 7019--incompatible_disallow_sdk_frameworks_attributes 7020--noincompatible_disallow_sdk_frameworks_attributes 7021--incompatible_disallow_struct_provider_syntax 7022--noincompatible_disallow_struct_provider_syntax 7023--incompatible_disallow_symlink_file_to_dir 7024--noincompatible_disallow_symlink_file_to_dir 7025--incompatible_do_not_split_linking_cmdline 7026--noincompatible_do_not_split_linking_cmdline 7027--incompatible_dont_enable_host_nonhost_crosstool_features 7028--noincompatible_dont_enable_host_nonhost_crosstool_features 7029--incompatible_dont_use_javasourceinfoprovider 7030--noincompatible_dont_use_javasourceinfoprovider 7031--incompatible_enable_android_toolchain_resolution 7032--noincompatible_enable_android_toolchain_resolution 7033--incompatible_enable_apple_toolchain_resolution 7034--noincompatible_enable_apple_toolchain_resolution 7035--incompatible_enable_proto_toolchain_resolution 7036--noincompatible_enable_proto_toolchain_resolution 7037--incompatible_enforce_config_setting_visibility 7038--noincompatible_enforce_config_setting_visibility 7039--incompatible_exclusive_test_sandboxed 7040--noincompatible_exclusive_test_sandboxed 7041--incompatible_existing_rules_immutable_view 7042--noincompatible_existing_rules_immutable_view 7043--incompatible_fail_on_unknown_attributes 7044--noincompatible_fail_on_unknown_attributes 7045--incompatible_fix_package_group_reporoot_syntax 7046--noincompatible_fix_package_group_reporoot_syntax 7047--incompatible_java_common_parameters 7048--noincompatible_java_common_parameters 7049--incompatible_legacy_local_fallback 7050--noincompatible_legacy_local_fallback 7051--incompatible_make_thinlto_command_lines_standalone 7052--noincompatible_make_thinlto_command_lines_standalone 7053--incompatible_merge_fixed_and_default_shell_env 7054--noincompatible_merge_fixed_and_default_shell_env 7055--incompatible_merge_genfiles_directory 7056--noincompatible_merge_genfiles_directory 7057--incompatible_new_actions_api 7058--noincompatible_new_actions_api 7059--incompatible_no_attr_license 7060--noincompatible_no_attr_license 7061--incompatible_no_implicit_file_export 7062--noincompatible_no_implicit_file_export 7063--incompatible_no_rule_outputs_param 7064--noincompatible_no_rule_outputs_param 7065--incompatible_objc_alwayslink_by_default 7066--noincompatible_objc_alwayslink_by_default 7067--incompatible_objc_provider_remove_linking_info 7068--noincompatible_objc_provider_remove_linking_info 7069--incompatible_package_group_has_public_syntax 7070--noincompatible_package_group_has_public_syntax 7071--incompatible_package_group_includes_double_slash 7072--noincompatible_package_group_includes_double_slash 7073--incompatible_py2_outputs_are_suffixed 7074--noincompatible_py2_outputs_are_suffixed 7075--incompatible_py3_is_default 7076--noincompatible_py3_is_default 7077--incompatible_python_disable_py2 7078--noincompatible_python_disable_py2 7079--incompatible_python_disallow_native_rules 7080--noincompatible_python_disallow_native_rules 7081--incompatible_remote_build_event_upload_respect_no_cache 7082--noincompatible_remote_build_event_upload_respect_no_cache 7083--incompatible_remote_dangling_symlinks 7084--noincompatible_remote_dangling_symlinks 7085--incompatible_remote_disallow_symlink_in_tree_artifact 7086--noincompatible_remote_disallow_symlink_in_tree_artifact 7087--incompatible_remote_downloader_send_all_headers 7088--noincompatible_remote_downloader_send_all_headers 7089--incompatible_remote_output_paths_relative_to_input_root 7090--noincompatible_remote_output_paths_relative_to_input_root 7091--incompatible_remote_results_ignore_disk 7092--noincompatible_remote_results_ignore_disk 7093--incompatible_remote_symlinks 7094--noincompatible_remote_symlinks 7095--incompatible_remote_use_new_exit_code_for_lost_inputs 7096--noincompatible_remote_use_new_exit_code_for_lost_inputs 7097--incompatible_remove_legacy_whole_archive 7098--noincompatible_remove_legacy_whole_archive 7099--incompatible_require_ctx_in_configure_features 7100--noincompatible_require_ctx_in_configure_features 7101--incompatible_require_linker_input_cc_api 7102--noincompatible_require_linker_input_cc_api 7103--incompatible_run_shell_command_string 7104--noincompatible_run_shell_command_string 7105--incompatible_sandbox_hermetic_tmp 7106--noincompatible_sandbox_hermetic_tmp 7107--incompatible_stop_exporting_language_modules 7108--noincompatible_stop_exporting_language_modules 7109--incompatible_strict_action_env 7110--noincompatible_strict_action_env 7111--incompatible_struct_has_no_methods 7112--noincompatible_struct_has_no_methods 7113--incompatible_top_level_aspects_require_providers 7114--noincompatible_top_level_aspects_require_providers 7115--incompatible_unambiguous_label_stringification 7116--noincompatible_unambiguous_label_stringification 7117--incompatible_use_cc_configure_from_rules_cc 7118--noincompatible_use_cc_configure_from_rules_cc 7119--incompatible_use_host_features 7120--noincompatible_use_host_features 7121--incompatible_use_python_toolchains 7122--noincompatible_use_python_toolchains 7123--incompatible_validate_top_level_header_inclusions 7124--noincompatible_validate_top_level_header_inclusions 7125--incompatible_visibility_private_attributes_at_definition 7126--noincompatible_visibility_private_attributes_at_definition 7127--incremental_dexing 7128--noincremental_dexing 7129--infer_universe_scope 7130--noinfer_universe_scope 7131--instrument_test_targets 7132--noinstrument_test_targets 7133--instrumentation_filter= 7134--interface_shared_objects 7135--nointerface_shared_objects 7136--internal_spawn_scheduler 7137--nointernal_spawn_scheduler 7138--ios_memleaks 7139--noios_memleaks 7140--ios_minimum_os= 7141--ios_multi_cpus= 7142--ios_sdk_version= 7143--ios_signing_cert_name= 7144--ios_simulator_device= 7145--ios_simulator_version= 7146--j2objc_translation_flags= 7147--java_debug 7148--java_deps 7149--nojava_deps 7150--java_header_compilation 7151--nojava_header_compilation 7152--java_language_version= 7153--java_launcher=label 7154--java_runtime_version= 7155--javacopt= 7156--jobs= 7157--jvmopt= 7158--keep_going 7159--nokeep_going 7160--keep_state_after_build 7161--nokeep_state_after_build 7162--legacy_external_runfiles 7163--nolegacy_external_runfiles 7164--legacy_important_outputs 7165--nolegacy_important_outputs 7166--legacy_main_dex_list_generator=label 7167--legacy_whole_archive 7168--nolegacy_whole_archive 7169--line_terminator_null 7170--noline_terminator_null 7171--linkopt= 7172--loading_phase_threads= 7173--local_cpu_resources= 7174--local_extra_resources= 7175--local_ram_resources= 7176--local_termination_grace_seconds= 7177--local_test_jobs= 7178--lockfile_mode={off,update,error} 7179--logging= 7180--ltobackendopt= 7181--ltoindexopt= 7182--macos_cpus= 7183--macos_minimum_os= 7184--macos_sdk_version= 7185--materialize_param_files 7186--nomaterialize_param_files 7187--max_computation_steps= 7188--max_config_changes_to_show= 7189--max_test_output_bytes= 7190--memory_profile=path 7191--memory_profile_stable_heap_parameters= 7192--memprof_profile=label 7193--minimum_os_version= 7194--modify_execution_info= 7195--nested_set_depth_limit= 7196--nodep_deps 7197--nonodep_deps 7198--objc_debug_with_GLIBCXX 7199--noobjc_debug_with_GLIBCXX 7200--objc_enable_binary_stripping 7201--noobjc_enable_binary_stripping 7202--objc_generate_linkmap 7203--noobjc_generate_linkmap 7204--objc_use_dotd_pruning 7205--noobjc_use_dotd_pruning 7206--objccopt= 7207--optimizing_dexer=label 7208--output= 7209--output_filter= 7210--output_groups= 7211--override_module= 7212--override_repository= 7213--package_path= 7214--per_file_copt= 7215--per_file_ltobackendopt= 7216--persistent_android_dex_desugar 7217--persistent_android_resource_processor 7218--persistent_multiplex_android_dex_desugar 7219--persistent_multiplex_android_resource_processor 7220--persistent_multiplex_android_tools 7221--platform_mappings=path 7222--platform_suffix= 7223--platforms= 7224--plugin= 7225--print_relative_test_log_paths 7226--noprint_relative_test_log_paths 7227--process_headers_in_dependencies 7228--noprocess_headers_in_dependencies 7229--profile=path 7230--progress_in_terminal_title 7231--noprogress_in_terminal_title 7232--progress_report_interval= 7233--proguard_top=label 7234--propeller_optimize=label 7235--propeller_optimize_absolute_cc_profile= 7236--propeller_optimize_absolute_ld_profile= 7237--proto:default_values 7238--noproto:default_values 7239--proto:definition_stack 7240--noproto:definition_stack 7241--proto:flatten_selects 7242--noproto:flatten_selects 7243--proto:include_attribute_source_aspects 7244--noproto:include_attribute_source_aspects 7245--proto:include_configurations 7246--noproto:include_configurations 7247--proto:include_synthetic_attribute_hash 7248--noproto:include_synthetic_attribute_hash 7249--proto:instantiation_stack 7250--noproto:instantiation_stack 7251--proto:locations 7252--noproto:locations 7253--proto:output_rule_attrs= 7254--proto:rule_inputs_and_outputs 7255--noproto:rule_inputs_and_outputs 7256--proto_compiler=label 7257--proto_toolchain_for_cc=label 7258--proto_toolchain_for_j2objc=label 7259--proto_toolchain_for_java=label 7260--proto_toolchain_for_javalite=label 7261--protocopt= 7262--python2_path= 7263--python3_path= 7264--python_native_rules_allowlist=label 7265--python_path= 7266--python_top=label 7267--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 7268--query_file= 7269--record_full_profiler_data 7270--norecord_full_profiler_data 7271--registry= 7272--relative_locations 7273--norelative_locations 7274--remote_accept_cached 7275--noremote_accept_cached 7276--remote_build_event_upload={all,minimal} 7277--remote_bytestream_uri_prefix= 7278--remote_cache= 7279--remote_cache_compression 7280--noremote_cache_compression 7281--remote_cache_header= 7282--remote_default_exec_properties= 7283--remote_default_platform_properties= 7284--remote_download_all 7285--remote_download_minimal 7286--remote_download_outputs={all,minimal,toplevel} 7287--remote_download_regex= 7288--remote_download_symlink_template= 7289--remote_download_toplevel 7290--remote_downloader_header= 7291--remote_exec_header= 7292--remote_execution_priority= 7293--remote_executor= 7294--remote_grpc_log=path 7295--remote_header= 7296--remote_instance_name= 7297--remote_local_fallback 7298--noremote_local_fallback 7299--remote_local_fallback_strategy= 7300--remote_max_connections= 7301--remote_print_execution_messages={failure,success,all} 7302--remote_proxy= 7303--remote_result_cache_priority= 7304--remote_retries= 7305--remote_retry_max_delay= 7306--remote_timeout= 7307--remote_upload_local_results 7308--noremote_upload_local_results 7309--remote_verify_downloads 7310--noremote_verify_downloads 7311--repo_env= 7312--repository_cache=path 7313--repository_cache_urls_as_default_canonical_id 7314--norepository_cache_urls_as_default_canonical_id 7315--repository_disable_download 7316--norepository_disable_download 7317--reuse_sandbox_directories 7318--noreuse_sandbox_directories 7319--run_under= 7320--run_validations 7321--norun_validations 7322--runs_per_test= 7323--runs_per_test_detects_flakes 7324--noruns_per_test_detects_flakes 7325--sandbox_add_mount_pair= 7326--sandbox_base= 7327--sandbox_block_path= 7328--sandbox_debug 7329--nosandbox_debug 7330--sandbox_default_allow_network 7331--nosandbox_default_allow_network 7332--sandbox_explicit_pseudoterminal 7333--nosandbox_explicit_pseudoterminal 7334--sandbox_fake_hostname 7335--nosandbox_fake_hostname 7336--sandbox_fake_username 7337--nosandbox_fake_username 7338--sandbox_tmpfs_path= 7339--sandbox_writable_path= 7340--save_temps 7341--nosave_temps 7342--share_native_deps 7343--noshare_native_deps 7344--shell_executable=path 7345--show_config_fragments={off,direct,transitive} 7346--show_loading_progress 7347--noshow_loading_progress 7348--show_progress 7349--noshow_progress 7350--show_progress_rate_limit= 7351--show_result= 7352--show_timestamps 7353--noshow_timestamps 7354--skip_incompatible_explicit_targets 7355--noskip_incompatible_explicit_targets 7356--skyframe_high_water_mark_full_gc_drops_per_invocation= 7357--skyframe_high_water_mark_minor_gc_drops_per_invocation= 7358--skyframe_high_water_mark_threshold= 7359--slim_profile 7360--noslim_profile 7361--spawn_strategy= 7362--stamp 7363--nostamp 7364--starlark:expr= 7365--starlark:file= 7366--starlark_cpu_profile= 7367--strategy= 7368--strategy_regexp= 7369--strict_filesets 7370--nostrict_filesets 7371--strict_proto_deps={off,warn,error,strict,default} 7372--strict_public_imports={off,warn,error,strict,default} 7373--strict_system_includes 7374--nostrict_system_includes 7375--strip={always,sometimes,never} 7376--stripopt= 7377--subcommands={true,pretty_print,false} 7378--swiftcopt= 7379--symlink_prefix= 7380--target_environment= 7381--target_pattern_file= 7382--target_platform_fallback= 7383--test_arg= 7384--test_env= 7385--test_filter= 7386--test_keep_going 7387--notest_keep_going 7388--test_lang_filters= 7389--test_output={summary,errors,all,streamed} 7390--test_result_expiration= 7391--test_runner_fail_fast 7392--notest_runner_fail_fast 7393--test_sharding_strategy= 7394--test_size_filters= 7395--test_strategy= 7396--test_summary={short,terse,detailed,none,testcase} 7397--test_tag_filters= 7398--test_timeout= 7399--test_timeout_filters= 7400--test_tmpdir=path 7401--test_verbose_timeout_warnings 7402--notest_verbose_timeout_warnings 7403--tls_certificate= 7404--tls_client_certificate= 7405--tls_client_key= 7406--tool_deps 7407--notool_deps 7408--tool_java_language_version= 7409--tool_java_runtime_version= 7410--tool_tag= 7411--toolchain_resolution_debug= 7412--track_incremental_state 7413--notrack_incremental_state 7414--transitions={full,lite,none} 7415--trim_test_configuration 7416--notrim_test_configuration 7417--tvos_cpus= 7418--tvos_minimum_os= 7419--tvos_sdk_version= 7420--ui_actions_shown= 7421--ui_event_filters= 7422--universe_scope= 7423--use_ijars 7424--nouse_ijars 7425--use_target_platform_for_tests 7426--nouse_target_platform_for_tests 7427--verbose_explanations 7428--noverbose_explanations 7429--verbose_failures 7430--noverbose_failures 7431--verbose_test_summary 7432--noverbose_test_summary 7433--visionos_cpus= 7434--watchfs 7435--nowatchfs 7436--watchos_cpus= 7437--watchos_minimum_os= 7438--watchos_sdk_version= 7439--worker_extra_flag= 7440--worker_max_instances= 7441--worker_max_multiplex_instances= 7442--worker_multiplex 7443--noworker_multiplex 7444--worker_quit_after_build 7445--noworker_quit_after_build 7446--worker_sandboxing 7447--noworker_sandboxing 7448--worker_verbose 7449--noworker_verbose 7450--workspace_status_command=path 7451--xbinary_fdo=label 7452--xcode_version= 7453--xcode_version_config=label 7454--zip_undeclared_test_outputs 7455--nozip_undeclared_test_outputs 7456" 7457BAZEL_COMMAND_DUMP_FLAGS=" 7458--action_cache 7459--noaction_cache 7460--allow_yanked_versions= 7461--announce_rc 7462--noannounce_rc 7463--attempt_to_print_relative_paths 7464--noattempt_to_print_relative_paths 7465--bep_maximum_open_remote_upload_files= 7466--bes_backend= 7467--bes_check_preceding_lifecycle_events 7468--nobes_check_preceding_lifecycle_events 7469--bes_header= 7470--bes_instance_name= 7471--bes_keywords= 7472--bes_lifecycle_events 7473--nobes_lifecycle_events 7474--bes_oom_finish_upload_timeout= 7475--bes_outerr_buffer_size= 7476--bes_outerr_chunk_size= 7477--bes_proxy= 7478--bes_results_url= 7479--bes_system_keywords= 7480--bes_timeout= 7481--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 7482--build_event_binary_file= 7483--build_event_binary_file_path_conversion 7484--nobuild_event_binary_file_path_conversion 7485--build_event_json_file= 7486--build_event_json_file_path_conversion 7487--nobuild_event_json_file_path_conversion 7488--build_event_max_named_set_of_file_entries= 7489--build_event_publish_all_actions 7490--nobuild_event_publish_all_actions 7491--build_event_text_file= 7492--build_event_text_file_path_conversion 7493--nobuild_event_text_file_path_conversion 7494--build_metadata= 7495--check_bazel_compatibility={error,warning,off} 7496--check_bzl_visibility 7497--nocheck_bzl_visibility 7498--check_direct_dependencies={off,warning,error} 7499--color={yes,no,auto} 7500--config= 7501--credential_helper= 7502--credential_helper_cache_duration= 7503--credential_helper_timeout= 7504--curses={yes,no,auto} 7505--disk_cache=path 7506--distdir= 7507--enable_bzlmod 7508--noenable_bzlmod 7509--enable_platform_specific_config 7510--noenable_platform_specific_config 7511--experimental_action_resource_set 7512--noexperimental_action_resource_set 7513--experimental_announce_profile_path 7514--noexperimental_announce_profile_path 7515--experimental_bep_target_summary 7516--noexperimental_bep_target_summary 7517--experimental_build_event_expand_filesets 7518--noexperimental_build_event_expand_filesets 7519--experimental_build_event_fully_resolve_fileset_symlinks 7520--noexperimental_build_event_fully_resolve_fileset_symlinks 7521--experimental_build_event_upload_max_retries= 7522--experimental_build_event_upload_retry_minimum_delay= 7523--experimental_build_event_upload_strategy= 7524--experimental_bzl_visibility 7525--noexperimental_bzl_visibility 7526--experimental_cc_shared_library 7527--noexperimental_cc_shared_library 7528--experimental_circuit_breaker_strategy={failure} 7529--experimental_collect_load_average_in_profiler 7530--noexperimental_collect_load_average_in_profiler 7531--experimental_collect_pressure_stall_indicators 7532--noexperimental_collect_pressure_stall_indicators 7533--experimental_collect_resource_estimation 7534--noexperimental_collect_resource_estimation 7535--experimental_collect_system_network_usage 7536--noexperimental_collect_system_network_usage 7537--experimental_collect_worker_data_in_profiler 7538--noexperimental_collect_worker_data_in_profiler 7539--experimental_command_profile 7540--noexperimental_command_profile 7541--experimental_disable_external_package 7542--noexperimental_disable_external_package 7543--experimental_downloader_config= 7544--experimental_enable_android_migration_apis 7545--noexperimental_enable_android_migration_apis 7546--experimental_enable_scl_dialect 7547--noexperimental_enable_scl_dialect 7548--experimental_google_legacy_api 7549--noexperimental_google_legacy_api 7550--experimental_guard_against_concurrent_changes 7551--noexperimental_guard_against_concurrent_changes 7552--experimental_isolated_extension_usages 7553--noexperimental_isolated_extension_usages 7554--experimental_java_library_export 7555--noexperimental_java_library_export 7556--experimental_platforms_api 7557--noexperimental_platforms_api 7558--experimental_profile_additional_tasks= 7559--experimental_profile_include_primary_output 7560--noexperimental_profile_include_primary_output 7561--experimental_profile_include_target_label 7562--noexperimental_profile_include_target_label 7563--experimental_record_metrics_for_all_mnemonics 7564--noexperimental_record_metrics_for_all_mnemonics 7565--experimental_remote_cache_async 7566--noexperimental_remote_cache_async 7567--experimental_remote_cache_lease_extension 7568--noexperimental_remote_cache_lease_extension 7569--experimental_remote_cache_ttl= 7570--experimental_remote_capture_corrupted_outputs=path 7571--experimental_remote_discard_merkle_trees 7572--noexperimental_remote_discard_merkle_trees 7573--experimental_remote_downloader= 7574--experimental_remote_downloader_local_fallback 7575--noexperimental_remote_downloader_local_fallback 7576--experimental_remote_execution_keepalive 7577--noexperimental_remote_execution_keepalive 7578--experimental_remote_failure_rate_threshold= 7579--experimental_remote_failure_window_interval= 7580--experimental_remote_mark_tool_inputs 7581--noexperimental_remote_mark_tool_inputs 7582--experimental_remote_merkle_tree_cache 7583--noexperimental_remote_merkle_tree_cache 7584--experimental_remote_merkle_tree_cache_size= 7585--experimental_remote_require_cached 7586--noexperimental_remote_require_cached 7587--experimental_repo_remote_exec 7588--noexperimental_repo_remote_exec 7589--experimental_repository_cache_hardlinks 7590--noexperimental_repository_cache_hardlinks 7591--experimental_repository_downloader_retries= 7592--experimental_resolved_file_instead_of_workspace= 7593--experimental_run_bep_event_include_residue 7594--noexperimental_run_bep_event_include_residue 7595--experimental_scale_timeouts= 7596--experimental_sibling_repository_layout 7597--noexperimental_sibling_repository_layout 7598--experimental_stream_log_file_uploads 7599--noexperimental_stream_log_file_uploads 7600--experimental_ui_max_stdouterr_bytes= 7601--experimental_windows_watchfs 7602--noexperimental_windows_watchfs 7603--experimental_worker_for_repo_fetching={off,platform,virtual} 7604--experimental_workspace_rules_log_file=path 7605--gc_thrashing_limits= 7606--gc_thrashing_threshold= 7607--generate_json_trace_profile={auto,yes,no} 7608--nogenerate_json_trace_profile 7609--google_auth_scopes= 7610--google_credentials= 7611--google_default_credentials 7612--nogoogle_default_credentials 7613--grpc_keepalive_time= 7614--grpc_keepalive_timeout= 7615--heap_dump_on_oom 7616--noheap_dump_on_oom 7617--heuristically_drop_nodes 7618--noheuristically_drop_nodes 7619--http_connector_attempts= 7620--http_connector_retry_max_timeout= 7621--http_timeout_scaling= 7622--ignore_dev_dependency 7623--noignore_dev_dependency 7624--incompatible_allow_tags_propagation 7625--noincompatible_allow_tags_propagation 7626--incompatible_always_check_depset_elements 7627--noincompatible_always_check_depset_elements 7628--incompatible_depset_for_java_output_source_jars 7629--noincompatible_depset_for_java_output_source_jars 7630--incompatible_depset_for_libraries_to_link_getter 7631--noincompatible_depset_for_libraries_to_link_getter 7632--incompatible_disable_non_executable_java_binary 7633--noincompatible_disable_non_executable_java_binary 7634--incompatible_disable_objc_library_transition 7635--noincompatible_disable_objc_library_transition 7636--incompatible_disable_starlark_host_transitions 7637--noincompatible_disable_starlark_host_transitions 7638--incompatible_disable_target_provider_fields 7639--noincompatible_disable_target_provider_fields 7640--incompatible_disallow_empty_glob 7641--noincompatible_disallow_empty_glob 7642--incompatible_disallow_struct_provider_syntax 7643--noincompatible_disallow_struct_provider_syntax 7644--incompatible_disallow_symlink_file_to_dir 7645--noincompatible_disallow_symlink_file_to_dir 7646--incompatible_do_not_split_linking_cmdline 7647--noincompatible_do_not_split_linking_cmdline 7648--incompatible_enable_proto_toolchain_resolution 7649--noincompatible_enable_proto_toolchain_resolution 7650--incompatible_existing_rules_immutable_view 7651--noincompatible_existing_rules_immutable_view 7652--incompatible_fail_on_unknown_attributes 7653--noincompatible_fail_on_unknown_attributes 7654--incompatible_fix_package_group_reporoot_syntax 7655--noincompatible_fix_package_group_reporoot_syntax 7656--incompatible_java_common_parameters 7657--noincompatible_java_common_parameters 7658--incompatible_merge_fixed_and_default_shell_env 7659--noincompatible_merge_fixed_and_default_shell_env 7660--incompatible_new_actions_api 7661--noincompatible_new_actions_api 7662--incompatible_no_attr_license 7663--noincompatible_no_attr_license 7664--incompatible_no_implicit_file_export 7665--noincompatible_no_implicit_file_export 7666--incompatible_no_rule_outputs_param 7667--noincompatible_no_rule_outputs_param 7668--incompatible_objc_provider_remove_linking_info 7669--noincompatible_objc_provider_remove_linking_info 7670--incompatible_package_group_has_public_syntax 7671--noincompatible_package_group_has_public_syntax 7672--incompatible_remote_build_event_upload_respect_no_cache 7673--noincompatible_remote_build_event_upload_respect_no_cache 7674--incompatible_remote_dangling_symlinks 7675--noincompatible_remote_dangling_symlinks 7676--incompatible_remote_disallow_symlink_in_tree_artifact 7677--noincompatible_remote_disallow_symlink_in_tree_artifact 7678--incompatible_remote_downloader_send_all_headers 7679--noincompatible_remote_downloader_send_all_headers 7680--incompatible_remote_output_paths_relative_to_input_root 7681--noincompatible_remote_output_paths_relative_to_input_root 7682--incompatible_remote_results_ignore_disk 7683--noincompatible_remote_results_ignore_disk 7684--incompatible_remote_symlinks 7685--noincompatible_remote_symlinks 7686--incompatible_require_linker_input_cc_api 7687--noincompatible_require_linker_input_cc_api 7688--incompatible_run_shell_command_string 7689--noincompatible_run_shell_command_string 7690--incompatible_stop_exporting_language_modules 7691--noincompatible_stop_exporting_language_modules 7692--incompatible_struct_has_no_methods 7693--noincompatible_struct_has_no_methods 7694--incompatible_top_level_aspects_require_providers 7695--noincompatible_top_level_aspects_require_providers 7696--incompatible_unambiguous_label_stringification 7697--noincompatible_unambiguous_label_stringification 7698--incompatible_use_cc_configure_from_rules_cc 7699--noincompatible_use_cc_configure_from_rules_cc 7700--incompatible_visibility_private_attributes_at_definition 7701--noincompatible_visibility_private_attributes_at_definition 7702--keep_state_after_build 7703--nokeep_state_after_build 7704--legacy_important_outputs 7705--nolegacy_important_outputs 7706--lockfile_mode={off,update,error} 7707--logging= 7708--max_computation_steps= 7709--memory_profile=path 7710--memory_profile_stable_heap_parameters= 7711--nested_set_depth_limit= 7712--override_module= 7713--override_repository= 7714--packages 7715--nopackages 7716--profile=path 7717--progress_in_terminal_title 7718--noprogress_in_terminal_title 7719--record_full_profiler_data 7720--norecord_full_profiler_data 7721--registry= 7722--remote_accept_cached 7723--noremote_accept_cached 7724--remote_build_event_upload={all,minimal} 7725--remote_bytestream_uri_prefix= 7726--remote_cache= 7727--remote_cache_compression 7728--noremote_cache_compression 7729--remote_cache_header= 7730--remote_default_exec_properties= 7731--remote_default_platform_properties= 7732--remote_download_all 7733--remote_download_minimal 7734--remote_download_outputs={all,minimal,toplevel} 7735--remote_download_regex= 7736--remote_download_symlink_template= 7737--remote_download_toplevel 7738--remote_downloader_header= 7739--remote_exec_header= 7740--remote_execution_priority= 7741--remote_executor= 7742--remote_grpc_log=path 7743--remote_header= 7744--remote_instance_name= 7745--remote_local_fallback 7746--noremote_local_fallback 7747--remote_local_fallback_strategy= 7748--remote_max_connections= 7749--remote_print_execution_messages={failure,success,all} 7750--remote_proxy= 7751--remote_result_cache_priority= 7752--remote_retries= 7753--remote_retry_max_delay= 7754--remote_timeout= 7755--remote_upload_local_results 7756--noremote_upload_local_results 7757--remote_verify_downloads 7758--noremote_verify_downloads 7759--repo_env= 7760--repository_cache=path 7761--repository_cache_urls_as_default_canonical_id 7762--norepository_cache_urls_as_default_canonical_id 7763--repository_disable_download 7764--norepository_disable_download 7765--rule_classes 7766--norule_classes 7767--rules 7768--norules 7769--show_progress 7770--noshow_progress 7771--show_progress_rate_limit= 7772--show_timestamps 7773--noshow_timestamps 7774--skyframe={off,summary,count,deps,rdeps} 7775--skyframe_high_water_mark_full_gc_drops_per_invocation= 7776--skyframe_high_water_mark_minor_gc_drops_per_invocation= 7777--skyframe_high_water_mark_threshold= 7778--skykey_filter= 7779--skylark_memory= 7780--slim_profile 7781--noslim_profile 7782--starlark_cpu_profile= 7783--tls_certificate= 7784--tls_client_certificate= 7785--tls_client_key= 7786--tool_tag= 7787--track_incremental_state 7788--notrack_incremental_state 7789--ui_actions_shown= 7790--ui_event_filters= 7791--watchfs 7792--nowatchfs 7793" 7794BAZEL_COMMAND_FETCH_ARGUMENT="label" 7795BAZEL_COMMAND_FETCH_FLAGS=" 7796--all 7797--noall 7798--allow_yanked_versions= 7799--announce_rc 7800--noannounce_rc 7801--attempt_to_print_relative_paths 7802--noattempt_to_print_relative_paths 7803--bep_maximum_open_remote_upload_files= 7804--bes_backend= 7805--bes_check_preceding_lifecycle_events 7806--nobes_check_preceding_lifecycle_events 7807--bes_header= 7808--bes_instance_name= 7809--bes_keywords= 7810--bes_lifecycle_events 7811--nobes_lifecycle_events 7812--bes_oom_finish_upload_timeout= 7813--bes_outerr_buffer_size= 7814--bes_outerr_chunk_size= 7815--bes_proxy= 7816--bes_results_url= 7817--bes_system_keywords= 7818--bes_timeout= 7819--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 7820--build_event_binary_file= 7821--build_event_binary_file_path_conversion 7822--nobuild_event_binary_file_path_conversion 7823--build_event_json_file= 7824--build_event_json_file_path_conversion 7825--nobuild_event_json_file_path_conversion 7826--build_event_max_named_set_of_file_entries= 7827--build_event_publish_all_actions 7828--nobuild_event_publish_all_actions 7829--build_event_text_file= 7830--build_event_text_file_path_conversion 7831--nobuild_event_text_file_path_conversion 7832--build_metadata= 7833--check_bazel_compatibility={error,warning,off} 7834--check_bzl_visibility 7835--nocheck_bzl_visibility 7836--check_direct_dependencies={off,warning,error} 7837--color={yes,no,auto} 7838--config= 7839--configure 7840--noconfigure 7841--credential_helper= 7842--credential_helper_cache_duration= 7843--credential_helper_timeout= 7844--curses={yes,no,auto} 7845--deleted_packages= 7846--disk_cache=path 7847--distdir= 7848--enable_bzlmod 7849--noenable_bzlmod 7850--enable_platform_specific_config 7851--noenable_platform_specific_config 7852--experimental_action_resource_set 7853--noexperimental_action_resource_set 7854--experimental_announce_profile_path 7855--noexperimental_announce_profile_path 7856--experimental_bep_target_summary 7857--noexperimental_bep_target_summary 7858--experimental_build_event_expand_filesets 7859--noexperimental_build_event_expand_filesets 7860--experimental_build_event_fully_resolve_fileset_symlinks 7861--noexperimental_build_event_fully_resolve_fileset_symlinks 7862--experimental_build_event_upload_max_retries= 7863--experimental_build_event_upload_retry_minimum_delay= 7864--experimental_build_event_upload_strategy= 7865--experimental_bzl_visibility 7866--noexperimental_bzl_visibility 7867--experimental_cc_shared_library 7868--noexperimental_cc_shared_library 7869--experimental_circuit_breaker_strategy={failure} 7870--experimental_collect_load_average_in_profiler 7871--noexperimental_collect_load_average_in_profiler 7872--experimental_collect_pressure_stall_indicators 7873--noexperimental_collect_pressure_stall_indicators 7874--experimental_collect_resource_estimation 7875--noexperimental_collect_resource_estimation 7876--experimental_collect_system_network_usage 7877--noexperimental_collect_system_network_usage 7878--experimental_collect_worker_data_in_profiler 7879--noexperimental_collect_worker_data_in_profiler 7880--experimental_command_profile 7881--noexperimental_command_profile 7882--experimental_disable_external_package 7883--noexperimental_disable_external_package 7884--experimental_downloader_config= 7885--experimental_enable_android_migration_apis 7886--noexperimental_enable_android_migration_apis 7887--experimental_enable_scl_dialect 7888--noexperimental_enable_scl_dialect 7889--experimental_google_legacy_api 7890--noexperimental_google_legacy_api 7891--experimental_guard_against_concurrent_changes 7892--noexperimental_guard_against_concurrent_changes 7893--experimental_isolated_extension_usages 7894--noexperimental_isolated_extension_usages 7895--experimental_java_library_export 7896--noexperimental_java_library_export 7897--experimental_platforms_api 7898--noexperimental_platforms_api 7899--experimental_profile_additional_tasks= 7900--experimental_profile_include_primary_output 7901--noexperimental_profile_include_primary_output 7902--experimental_profile_include_target_label 7903--noexperimental_profile_include_target_label 7904--experimental_record_metrics_for_all_mnemonics 7905--noexperimental_record_metrics_for_all_mnemonics 7906--experimental_remote_cache_async 7907--noexperimental_remote_cache_async 7908--experimental_remote_cache_lease_extension 7909--noexperimental_remote_cache_lease_extension 7910--experimental_remote_cache_ttl= 7911--experimental_remote_capture_corrupted_outputs=path 7912--experimental_remote_discard_merkle_trees 7913--noexperimental_remote_discard_merkle_trees 7914--experimental_remote_downloader= 7915--experimental_remote_downloader_local_fallback 7916--noexperimental_remote_downloader_local_fallback 7917--experimental_remote_execution_keepalive 7918--noexperimental_remote_execution_keepalive 7919--experimental_remote_failure_rate_threshold= 7920--experimental_remote_failure_window_interval= 7921--experimental_remote_mark_tool_inputs 7922--noexperimental_remote_mark_tool_inputs 7923--experimental_remote_merkle_tree_cache 7924--noexperimental_remote_merkle_tree_cache 7925--experimental_remote_merkle_tree_cache_size= 7926--experimental_remote_require_cached 7927--noexperimental_remote_require_cached 7928--experimental_repo_remote_exec 7929--noexperimental_repo_remote_exec 7930--experimental_repository_cache_hardlinks 7931--noexperimental_repository_cache_hardlinks 7932--experimental_repository_downloader_retries= 7933--experimental_repository_resolved_file= 7934--experimental_resolved_file_instead_of_workspace= 7935--experimental_run_bep_event_include_residue 7936--noexperimental_run_bep_event_include_residue 7937--experimental_scale_timeouts= 7938--experimental_sibling_repository_layout 7939--noexperimental_sibling_repository_layout 7940--experimental_stream_log_file_uploads 7941--noexperimental_stream_log_file_uploads 7942--experimental_ui_max_stdouterr_bytes= 7943--experimental_windows_watchfs 7944--noexperimental_windows_watchfs 7945--experimental_worker_for_repo_fetching={off,platform,virtual} 7946--experimental_workspace_rules_log_file=path 7947--gc_thrashing_limits= 7948--gc_thrashing_threshold= 7949--generate_json_trace_profile={auto,yes,no} 7950--nogenerate_json_trace_profile 7951--google_auth_scopes= 7952--google_credentials= 7953--google_default_credentials 7954--nogoogle_default_credentials 7955--grpc_keepalive_time= 7956--grpc_keepalive_timeout= 7957--heap_dump_on_oom 7958--noheap_dump_on_oom 7959--heuristically_drop_nodes 7960--noheuristically_drop_nodes 7961--http_connector_attempts= 7962--http_connector_retry_max_timeout= 7963--http_timeout_scaling= 7964--ignore_dev_dependency 7965--noignore_dev_dependency 7966--incompatible_allow_tags_propagation 7967--noincompatible_allow_tags_propagation 7968--incompatible_always_check_depset_elements 7969--noincompatible_always_check_depset_elements 7970--incompatible_config_setting_private_default_visibility 7971--noincompatible_config_setting_private_default_visibility 7972--incompatible_depset_for_java_output_source_jars 7973--noincompatible_depset_for_java_output_source_jars 7974--incompatible_depset_for_libraries_to_link_getter 7975--noincompatible_depset_for_libraries_to_link_getter 7976--incompatible_disable_non_executable_java_binary 7977--noincompatible_disable_non_executable_java_binary 7978--incompatible_disable_objc_library_transition 7979--noincompatible_disable_objc_library_transition 7980--incompatible_disable_starlark_host_transitions 7981--noincompatible_disable_starlark_host_transitions 7982--incompatible_disable_target_provider_fields 7983--noincompatible_disable_target_provider_fields 7984--incompatible_disallow_empty_glob 7985--noincompatible_disallow_empty_glob 7986--incompatible_disallow_struct_provider_syntax 7987--noincompatible_disallow_struct_provider_syntax 7988--incompatible_disallow_symlink_file_to_dir 7989--noincompatible_disallow_symlink_file_to_dir 7990--incompatible_do_not_split_linking_cmdline 7991--noincompatible_do_not_split_linking_cmdline 7992--incompatible_enable_proto_toolchain_resolution 7993--noincompatible_enable_proto_toolchain_resolution 7994--incompatible_enforce_config_setting_visibility 7995--noincompatible_enforce_config_setting_visibility 7996--incompatible_existing_rules_immutable_view 7997--noincompatible_existing_rules_immutable_view 7998--incompatible_fail_on_unknown_attributes 7999--noincompatible_fail_on_unknown_attributes 8000--incompatible_fix_package_group_reporoot_syntax 8001--noincompatible_fix_package_group_reporoot_syntax 8002--incompatible_java_common_parameters 8003--noincompatible_java_common_parameters 8004--incompatible_merge_fixed_and_default_shell_env 8005--noincompatible_merge_fixed_and_default_shell_env 8006--incompatible_new_actions_api 8007--noincompatible_new_actions_api 8008--incompatible_no_attr_license 8009--noincompatible_no_attr_license 8010--incompatible_no_implicit_file_export 8011--noincompatible_no_implicit_file_export 8012--incompatible_no_rule_outputs_param 8013--noincompatible_no_rule_outputs_param 8014--incompatible_objc_provider_remove_linking_info 8015--noincompatible_objc_provider_remove_linking_info 8016--incompatible_package_group_has_public_syntax 8017--noincompatible_package_group_has_public_syntax 8018--incompatible_remote_build_event_upload_respect_no_cache 8019--noincompatible_remote_build_event_upload_respect_no_cache 8020--incompatible_remote_dangling_symlinks 8021--noincompatible_remote_dangling_symlinks 8022--incompatible_remote_disallow_symlink_in_tree_artifact 8023--noincompatible_remote_disallow_symlink_in_tree_artifact 8024--incompatible_remote_downloader_send_all_headers 8025--noincompatible_remote_downloader_send_all_headers 8026--incompatible_remote_output_paths_relative_to_input_root 8027--noincompatible_remote_output_paths_relative_to_input_root 8028--incompatible_remote_results_ignore_disk 8029--noincompatible_remote_results_ignore_disk 8030--incompatible_remote_symlinks 8031--noincompatible_remote_symlinks 8032--incompatible_require_linker_input_cc_api 8033--noincompatible_require_linker_input_cc_api 8034--incompatible_run_shell_command_string 8035--noincompatible_run_shell_command_string 8036--incompatible_stop_exporting_language_modules 8037--noincompatible_stop_exporting_language_modules 8038--incompatible_struct_has_no_methods 8039--noincompatible_struct_has_no_methods 8040--incompatible_top_level_aspects_require_providers 8041--noincompatible_top_level_aspects_require_providers 8042--incompatible_unambiguous_label_stringification 8043--noincompatible_unambiguous_label_stringification 8044--incompatible_use_cc_configure_from_rules_cc 8045--noincompatible_use_cc_configure_from_rules_cc 8046--incompatible_visibility_private_attributes_at_definition 8047--noincompatible_visibility_private_attributes_at_definition 8048--keep_going 8049--nokeep_going 8050--keep_state_after_build 8051--nokeep_state_after_build 8052--legacy_important_outputs 8053--nolegacy_important_outputs 8054--loading_phase_threads= 8055--lockfile_mode={off,update,error} 8056--logging= 8057--max_computation_steps= 8058--memory_profile=path 8059--memory_profile_stable_heap_parameters= 8060--nested_set_depth_limit= 8061--override_module= 8062--override_repository= 8063--package_path= 8064--profile=path 8065--progress_in_terminal_title 8066--noprogress_in_terminal_title 8067--record_full_profiler_data 8068--norecord_full_profiler_data 8069--registry= 8070--remote_accept_cached 8071--noremote_accept_cached 8072--remote_build_event_upload={all,minimal} 8073--remote_bytestream_uri_prefix= 8074--remote_cache= 8075--remote_cache_compression 8076--noremote_cache_compression 8077--remote_cache_header= 8078--remote_default_exec_properties= 8079--remote_default_platform_properties= 8080--remote_download_all 8081--remote_download_minimal 8082--remote_download_outputs={all,minimal,toplevel} 8083--remote_download_regex= 8084--remote_download_symlink_template= 8085--remote_download_toplevel 8086--remote_downloader_header= 8087--remote_exec_header= 8088--remote_execution_priority= 8089--remote_executor= 8090--remote_grpc_log=path 8091--remote_header= 8092--remote_instance_name= 8093--remote_local_fallback 8094--noremote_local_fallback 8095--remote_local_fallback_strategy= 8096--remote_max_connections= 8097--remote_print_execution_messages={failure,success,all} 8098--remote_proxy= 8099--remote_result_cache_priority= 8100--remote_retries= 8101--remote_retry_max_delay= 8102--remote_timeout= 8103--remote_upload_local_results 8104--noremote_upload_local_results 8105--remote_verify_downloads 8106--noremote_verify_downloads 8107--repo= 8108--repo_env= 8109--repository_cache=path 8110--repository_cache_urls_as_default_canonical_id 8111--norepository_cache_urls_as_default_canonical_id 8112--repository_disable_download 8113--norepository_disable_download 8114--show_loading_progress 8115--noshow_loading_progress 8116--show_progress 8117--noshow_progress 8118--show_progress_rate_limit= 8119--show_timestamps 8120--noshow_timestamps 8121--skyframe_high_water_mark_full_gc_drops_per_invocation= 8122--skyframe_high_water_mark_minor_gc_drops_per_invocation= 8123--skyframe_high_water_mark_threshold= 8124--slim_profile 8125--noslim_profile 8126--starlark_cpu_profile= 8127--tls_certificate= 8128--tls_client_certificate= 8129--tls_client_key= 8130--tool_tag= 8131--track_incremental_state 8132--notrack_incremental_state 8133--ui_actions_shown= 8134--ui_event_filters= 8135--watchfs 8136--nowatchfs 8137" 8138BAZEL_COMMAND_HELP_ARGUMENT="command|{startup_options,target-syntax,info-keys}" 8139BAZEL_COMMAND_HELP_FLAGS=" 8140--allow_yanked_versions= 8141--announce_rc 8142--noannounce_rc 8143--attempt_to_print_relative_paths 8144--noattempt_to_print_relative_paths 8145--bep_maximum_open_remote_upload_files= 8146--bes_backend= 8147--bes_check_preceding_lifecycle_events 8148--nobes_check_preceding_lifecycle_events 8149--bes_header= 8150--bes_instance_name= 8151--bes_keywords= 8152--bes_lifecycle_events 8153--nobes_lifecycle_events 8154--bes_oom_finish_upload_timeout= 8155--bes_outerr_buffer_size= 8156--bes_outerr_chunk_size= 8157--bes_proxy= 8158--bes_results_url= 8159--bes_system_keywords= 8160--bes_timeout= 8161--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 8162--build_event_binary_file= 8163--build_event_binary_file_path_conversion 8164--nobuild_event_binary_file_path_conversion 8165--build_event_json_file= 8166--build_event_json_file_path_conversion 8167--nobuild_event_json_file_path_conversion 8168--build_event_max_named_set_of_file_entries= 8169--build_event_publish_all_actions 8170--nobuild_event_publish_all_actions 8171--build_event_text_file= 8172--build_event_text_file_path_conversion 8173--nobuild_event_text_file_path_conversion 8174--build_metadata= 8175--check_bazel_compatibility={error,warning,off} 8176--check_bzl_visibility 8177--nocheck_bzl_visibility 8178--check_direct_dependencies={off,warning,error} 8179--color={yes,no,auto} 8180--config= 8181--credential_helper= 8182--credential_helper_cache_duration= 8183--credential_helper_timeout= 8184--curses={yes,no,auto} 8185--disk_cache=path 8186--distdir= 8187--enable_bzlmod 8188--noenable_bzlmod 8189--enable_platform_specific_config 8190--noenable_platform_specific_config 8191--experimental_action_resource_set 8192--noexperimental_action_resource_set 8193--experimental_announce_profile_path 8194--noexperimental_announce_profile_path 8195--experimental_bep_target_summary 8196--noexperimental_bep_target_summary 8197--experimental_build_event_expand_filesets 8198--noexperimental_build_event_expand_filesets 8199--experimental_build_event_fully_resolve_fileset_symlinks 8200--noexperimental_build_event_fully_resolve_fileset_symlinks 8201--experimental_build_event_upload_max_retries= 8202--experimental_build_event_upload_retry_minimum_delay= 8203--experimental_build_event_upload_strategy= 8204--experimental_bzl_visibility 8205--noexperimental_bzl_visibility 8206--experimental_cc_shared_library 8207--noexperimental_cc_shared_library 8208--experimental_circuit_breaker_strategy={failure} 8209--experimental_collect_load_average_in_profiler 8210--noexperimental_collect_load_average_in_profiler 8211--experimental_collect_pressure_stall_indicators 8212--noexperimental_collect_pressure_stall_indicators 8213--experimental_collect_resource_estimation 8214--noexperimental_collect_resource_estimation 8215--experimental_collect_system_network_usage 8216--noexperimental_collect_system_network_usage 8217--experimental_collect_worker_data_in_profiler 8218--noexperimental_collect_worker_data_in_profiler 8219--experimental_command_profile 8220--noexperimental_command_profile 8221--experimental_disable_external_package 8222--noexperimental_disable_external_package 8223--experimental_downloader_config= 8224--experimental_enable_android_migration_apis 8225--noexperimental_enable_android_migration_apis 8226--experimental_enable_scl_dialect 8227--noexperimental_enable_scl_dialect 8228--experimental_google_legacy_api 8229--noexperimental_google_legacy_api 8230--experimental_guard_against_concurrent_changes 8231--noexperimental_guard_against_concurrent_changes 8232--experimental_isolated_extension_usages 8233--noexperimental_isolated_extension_usages 8234--experimental_java_library_export 8235--noexperimental_java_library_export 8236--experimental_platforms_api 8237--noexperimental_platforms_api 8238--experimental_profile_additional_tasks= 8239--experimental_profile_include_primary_output 8240--noexperimental_profile_include_primary_output 8241--experimental_profile_include_target_label 8242--noexperimental_profile_include_target_label 8243--experimental_record_metrics_for_all_mnemonics 8244--noexperimental_record_metrics_for_all_mnemonics 8245--experimental_remote_cache_async 8246--noexperimental_remote_cache_async 8247--experimental_remote_cache_lease_extension 8248--noexperimental_remote_cache_lease_extension 8249--experimental_remote_cache_ttl= 8250--experimental_remote_capture_corrupted_outputs=path 8251--experimental_remote_discard_merkle_trees 8252--noexperimental_remote_discard_merkle_trees 8253--experimental_remote_downloader= 8254--experimental_remote_downloader_local_fallback 8255--noexperimental_remote_downloader_local_fallback 8256--experimental_remote_execution_keepalive 8257--noexperimental_remote_execution_keepalive 8258--experimental_remote_failure_rate_threshold= 8259--experimental_remote_failure_window_interval= 8260--experimental_remote_mark_tool_inputs 8261--noexperimental_remote_mark_tool_inputs 8262--experimental_remote_merkle_tree_cache 8263--noexperimental_remote_merkle_tree_cache 8264--experimental_remote_merkle_tree_cache_size= 8265--experimental_remote_require_cached 8266--noexperimental_remote_require_cached 8267--experimental_repo_remote_exec 8268--noexperimental_repo_remote_exec 8269--experimental_repository_cache_hardlinks 8270--noexperimental_repository_cache_hardlinks 8271--experimental_repository_downloader_retries= 8272--experimental_resolved_file_instead_of_workspace= 8273--experimental_run_bep_event_include_residue 8274--noexperimental_run_bep_event_include_residue 8275--experimental_scale_timeouts= 8276--experimental_sibling_repository_layout 8277--noexperimental_sibling_repository_layout 8278--experimental_stream_log_file_uploads 8279--noexperimental_stream_log_file_uploads 8280--experimental_ui_max_stdouterr_bytes= 8281--experimental_windows_watchfs 8282--noexperimental_windows_watchfs 8283--experimental_worker_for_repo_fetching={off,platform,virtual} 8284--experimental_workspace_rules_log_file=path 8285--gc_thrashing_limits= 8286--gc_thrashing_threshold= 8287--generate_json_trace_profile={auto,yes,no} 8288--nogenerate_json_trace_profile 8289--google_auth_scopes= 8290--google_credentials= 8291--google_default_credentials 8292--nogoogle_default_credentials 8293--grpc_keepalive_time= 8294--grpc_keepalive_timeout= 8295--heap_dump_on_oom 8296--noheap_dump_on_oom 8297--help_verbosity={long,medium,short} 8298--heuristically_drop_nodes 8299--noheuristically_drop_nodes 8300--http_connector_attempts= 8301--http_connector_retry_max_timeout= 8302--http_timeout_scaling= 8303--ignore_dev_dependency 8304--noignore_dev_dependency 8305--incompatible_allow_tags_propagation 8306--noincompatible_allow_tags_propagation 8307--incompatible_always_check_depset_elements 8308--noincompatible_always_check_depset_elements 8309--incompatible_depset_for_java_output_source_jars 8310--noincompatible_depset_for_java_output_source_jars 8311--incompatible_depset_for_libraries_to_link_getter 8312--noincompatible_depset_for_libraries_to_link_getter 8313--incompatible_disable_non_executable_java_binary 8314--noincompatible_disable_non_executable_java_binary 8315--incompatible_disable_objc_library_transition 8316--noincompatible_disable_objc_library_transition 8317--incompatible_disable_starlark_host_transitions 8318--noincompatible_disable_starlark_host_transitions 8319--incompatible_disable_target_provider_fields 8320--noincompatible_disable_target_provider_fields 8321--incompatible_disallow_empty_glob 8322--noincompatible_disallow_empty_glob 8323--incompatible_disallow_struct_provider_syntax 8324--noincompatible_disallow_struct_provider_syntax 8325--incompatible_disallow_symlink_file_to_dir 8326--noincompatible_disallow_symlink_file_to_dir 8327--incompatible_do_not_split_linking_cmdline 8328--noincompatible_do_not_split_linking_cmdline 8329--incompatible_enable_proto_toolchain_resolution 8330--noincompatible_enable_proto_toolchain_resolution 8331--incompatible_existing_rules_immutable_view 8332--noincompatible_existing_rules_immutable_view 8333--incompatible_fail_on_unknown_attributes 8334--noincompatible_fail_on_unknown_attributes 8335--incompatible_fix_package_group_reporoot_syntax 8336--noincompatible_fix_package_group_reporoot_syntax 8337--incompatible_java_common_parameters 8338--noincompatible_java_common_parameters 8339--incompatible_merge_fixed_and_default_shell_env 8340--noincompatible_merge_fixed_and_default_shell_env 8341--incompatible_new_actions_api 8342--noincompatible_new_actions_api 8343--incompatible_no_attr_license 8344--noincompatible_no_attr_license 8345--incompatible_no_implicit_file_export 8346--noincompatible_no_implicit_file_export 8347--incompatible_no_rule_outputs_param 8348--noincompatible_no_rule_outputs_param 8349--incompatible_objc_provider_remove_linking_info 8350--noincompatible_objc_provider_remove_linking_info 8351--incompatible_package_group_has_public_syntax 8352--noincompatible_package_group_has_public_syntax 8353--incompatible_remote_build_event_upload_respect_no_cache 8354--noincompatible_remote_build_event_upload_respect_no_cache 8355--incompatible_remote_dangling_symlinks 8356--noincompatible_remote_dangling_symlinks 8357--incompatible_remote_disallow_symlink_in_tree_artifact 8358--noincompatible_remote_disallow_symlink_in_tree_artifact 8359--incompatible_remote_downloader_send_all_headers 8360--noincompatible_remote_downloader_send_all_headers 8361--incompatible_remote_output_paths_relative_to_input_root 8362--noincompatible_remote_output_paths_relative_to_input_root 8363--incompatible_remote_results_ignore_disk 8364--noincompatible_remote_results_ignore_disk 8365--incompatible_remote_symlinks 8366--noincompatible_remote_symlinks 8367--incompatible_require_linker_input_cc_api 8368--noincompatible_require_linker_input_cc_api 8369--incompatible_run_shell_command_string 8370--noincompatible_run_shell_command_string 8371--incompatible_stop_exporting_language_modules 8372--noincompatible_stop_exporting_language_modules 8373--incompatible_struct_has_no_methods 8374--noincompatible_struct_has_no_methods 8375--incompatible_top_level_aspects_require_providers 8376--noincompatible_top_level_aspects_require_providers 8377--incompatible_unambiguous_label_stringification 8378--noincompatible_unambiguous_label_stringification 8379--incompatible_use_cc_configure_from_rules_cc 8380--noincompatible_use_cc_configure_from_rules_cc 8381--incompatible_visibility_private_attributes_at_definition 8382--noincompatible_visibility_private_attributes_at_definition 8383--keep_state_after_build 8384--nokeep_state_after_build 8385--legacy_important_outputs 8386--nolegacy_important_outputs 8387--lockfile_mode={off,update,error} 8388--logging= 8389--long 8390--max_computation_steps= 8391--memory_profile=path 8392--memory_profile_stable_heap_parameters= 8393--nested_set_depth_limit= 8394--override_module= 8395--override_repository= 8396--profile=path 8397--progress_in_terminal_title 8398--noprogress_in_terminal_title 8399--record_full_profiler_data 8400--norecord_full_profiler_data 8401--registry= 8402--remote_accept_cached 8403--noremote_accept_cached 8404--remote_build_event_upload={all,minimal} 8405--remote_bytestream_uri_prefix= 8406--remote_cache= 8407--remote_cache_compression 8408--noremote_cache_compression 8409--remote_cache_header= 8410--remote_default_exec_properties= 8411--remote_default_platform_properties= 8412--remote_download_all 8413--remote_download_minimal 8414--remote_download_outputs={all,minimal,toplevel} 8415--remote_download_regex= 8416--remote_download_symlink_template= 8417--remote_download_toplevel 8418--remote_downloader_header= 8419--remote_exec_header= 8420--remote_execution_priority= 8421--remote_executor= 8422--remote_grpc_log=path 8423--remote_header= 8424--remote_instance_name= 8425--remote_local_fallback 8426--noremote_local_fallback 8427--remote_local_fallback_strategy= 8428--remote_max_connections= 8429--remote_print_execution_messages={failure,success,all} 8430--remote_proxy= 8431--remote_result_cache_priority= 8432--remote_retries= 8433--remote_retry_max_delay= 8434--remote_timeout= 8435--remote_upload_local_results 8436--noremote_upload_local_results 8437--remote_verify_downloads 8438--noremote_verify_downloads 8439--repo_env= 8440--repository_cache=path 8441--repository_cache_urls_as_default_canonical_id 8442--norepository_cache_urls_as_default_canonical_id 8443--repository_disable_download 8444--norepository_disable_download 8445--short 8446--show_progress 8447--noshow_progress 8448--show_progress_rate_limit= 8449--show_timestamps 8450--noshow_timestamps 8451--skyframe_high_water_mark_full_gc_drops_per_invocation= 8452--skyframe_high_water_mark_minor_gc_drops_per_invocation= 8453--skyframe_high_water_mark_threshold= 8454--slim_profile 8455--noslim_profile 8456--starlark_cpu_profile= 8457--tls_certificate= 8458--tls_client_certificate= 8459--tls_client_key= 8460--tool_tag= 8461--track_incremental_state 8462--notrack_incremental_state 8463--ui_actions_shown= 8464--ui_event_filters= 8465--watchfs 8466--nowatchfs 8467" 8468BAZEL_COMMAND_INFO_ARGUMENT="info-key" 8469BAZEL_COMMAND_INFO_FLAGS=" 8470--action_env= 8471--allow_analysis_cache_discard 8472--noallow_analysis_cache_discard 8473--allow_analysis_failures 8474--noallow_analysis_failures 8475--allow_yanked_versions= 8476--analysis_testing_deps_limit= 8477--android_compiler= 8478--android_cpu= 8479--android_crosstool_top=label 8480--android_databinding_use_androidx 8481--noandroid_databinding_use_androidx 8482--android_databinding_use_v3_4_args 8483--noandroid_databinding_use_v3_4_args 8484--android_dynamic_mode={off,default,fully} 8485--android_grte_top=label 8486--android_manifest_merger={legacy,android,force_android} 8487--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 8488--android_platforms= 8489--android_resource_shrinking 8490--noandroid_resource_shrinking 8491--android_sdk=label 8492--announce_rc 8493--noannounce_rc 8494--apk_signing_method={v1,v2,v1_v2,v4} 8495--apple_crosstool_top=label 8496--apple_generate_dsym 8497--noapple_generate_dsym 8498--aspects= 8499--aspects_parameters= 8500--attempt_to_print_relative_paths 8501--noattempt_to_print_relative_paths 8502--auto_cpu_environment_group=label 8503--auto_output_filter={none,all,packages,subpackages} 8504--bep_maximum_open_remote_upload_files= 8505--bes_backend= 8506--bes_check_preceding_lifecycle_events 8507--nobes_check_preceding_lifecycle_events 8508--bes_header= 8509--bes_instance_name= 8510--bes_keywords= 8511--bes_lifecycle_events 8512--nobes_lifecycle_events 8513--bes_oom_finish_upload_timeout= 8514--bes_outerr_buffer_size= 8515--bes_outerr_chunk_size= 8516--bes_proxy= 8517--bes_results_url= 8518--bes_system_keywords= 8519--bes_timeout= 8520--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 8521--break_build_on_parallel_dex2oat_failure 8522--nobreak_build_on_parallel_dex2oat_failure 8523--build 8524--nobuild 8525--build_event_binary_file= 8526--build_event_binary_file_path_conversion 8527--nobuild_event_binary_file_path_conversion 8528--build_event_json_file= 8529--build_event_json_file_path_conversion 8530--nobuild_event_json_file_path_conversion 8531--build_event_max_named_set_of_file_entries= 8532--build_event_publish_all_actions 8533--nobuild_event_publish_all_actions 8534--build_event_text_file= 8535--build_event_text_file_path_conversion 8536--nobuild_event_text_file_path_conversion 8537--build_manual_tests 8538--nobuild_manual_tests 8539--build_metadata= 8540--build_python_zip={auto,yes,no} 8541--nobuild_python_zip 8542--build_runfile_links 8543--nobuild_runfile_links 8544--build_runfile_manifests 8545--nobuild_runfile_manifests 8546--build_tag_filters= 8547--build_test_dwp 8548--nobuild_test_dwp 8549--build_tests_only 8550--nobuild_tests_only 8551--cache_test_results={auto,yes,no} 8552--nocache_test_results 8553--catalyst_cpus= 8554--cc_output_directory_tag= 8555--cc_proto_library_header_suffixes= 8556--cc_proto_library_source_suffixes= 8557--check_bazel_compatibility={error,warning,off} 8558--check_bzl_visibility 8559--nocheck_bzl_visibility 8560--check_direct_dependencies={off,warning,error} 8561--check_licenses 8562--nocheck_licenses 8563--check_tests_up_to_date 8564--nocheck_tests_up_to_date 8565--check_up_to_date 8566--nocheck_up_to_date 8567--check_visibility 8568--nocheck_visibility 8569--collect_code_coverage 8570--nocollect_code_coverage 8571--color={yes,no,auto} 8572--combined_report={none,lcov} 8573--compilation_mode={fastbuild,dbg,opt} 8574--compile_one_dependency 8575--nocompile_one_dependency 8576--compiler= 8577--config= 8578--conlyopt= 8579--copt= 8580--coverage_output_generator=label 8581--coverage_report_generator=label 8582--coverage_support=label 8583--cpu= 8584--credential_helper= 8585--credential_helper_cache_duration= 8586--credential_helper_timeout= 8587--crosstool_top=label 8588--cs_fdo_absolute_path= 8589--cs_fdo_instrument= 8590--cs_fdo_profile=label 8591--curses={yes,no,auto} 8592--custom_malloc=label 8593--cxxopt= 8594--debug_spawn_scheduler 8595--nodebug_spawn_scheduler 8596--define= 8597--deleted_packages= 8598--desugar_for_android 8599--nodesugar_for_android 8600--desugar_java8_libs 8601--nodesugar_java8_libs 8602--device_debug_entitlements 8603--nodevice_debug_entitlements 8604--discard_analysis_cache 8605--nodiscard_analysis_cache 8606--disk_cache=path 8607--distdir= 8608--dynamic_local_execution_delay= 8609--dynamic_local_strategy= 8610--dynamic_mode={off,default,fully} 8611--dynamic_remote_strategy= 8612--embed_label= 8613--enable_bzlmod 8614--noenable_bzlmod 8615--enable_fdo_profile_absolute_path 8616--noenable_fdo_profile_absolute_path 8617--enable_platform_specific_config 8618--noenable_platform_specific_config 8619--enable_runfiles={auto,yes,no} 8620--noenable_runfiles 8621--enforce_constraints 8622--noenforce_constraints 8623--execution_log_binary_file=path 8624--execution_log_json_file=path 8625--execution_log_sort 8626--noexecution_log_sort 8627--expand_test_suites 8628--noexpand_test_suites 8629--experimental_action_listener= 8630--experimental_action_resource_set 8631--noexperimental_action_resource_set 8632--experimental_add_exec_constraints_to_targets= 8633--experimental_android_compress_java_resources 8634--noexperimental_android_compress_java_resources 8635--experimental_android_databinding_v2 8636--noexperimental_android_databinding_v2 8637--experimental_android_resource_shrinking 8638--noexperimental_android_resource_shrinking 8639--experimental_android_rewrite_dexes_with_rex 8640--noexperimental_android_rewrite_dexes_with_rex 8641--experimental_android_use_parallel_dex2oat 8642--noexperimental_android_use_parallel_dex2oat 8643--experimental_announce_profile_path 8644--noexperimental_announce_profile_path 8645--experimental_bep_target_summary 8646--noexperimental_bep_target_summary 8647--experimental_build_event_expand_filesets 8648--noexperimental_build_event_expand_filesets 8649--experimental_build_event_fully_resolve_fileset_symlinks 8650--noexperimental_build_event_fully_resolve_fileset_symlinks 8651--experimental_build_event_upload_max_retries= 8652--experimental_build_event_upload_retry_minimum_delay= 8653--experimental_build_event_upload_strategy= 8654--experimental_bzl_visibility 8655--noexperimental_bzl_visibility 8656--experimental_cancel_concurrent_tests 8657--noexperimental_cancel_concurrent_tests 8658--experimental_cc_shared_library 8659--noexperimental_cc_shared_library 8660--experimental_check_desugar_deps 8661--noexperimental_check_desugar_deps 8662--experimental_circuit_breaker_strategy={failure} 8663--experimental_collect_code_coverage_for_generated_files 8664--noexperimental_collect_code_coverage_for_generated_files 8665--experimental_collect_load_average_in_profiler 8666--noexperimental_collect_load_average_in_profiler 8667--experimental_collect_local_sandbox_action_metrics 8668--noexperimental_collect_local_sandbox_action_metrics 8669--experimental_collect_pressure_stall_indicators 8670--noexperimental_collect_pressure_stall_indicators 8671--experimental_collect_resource_estimation 8672--noexperimental_collect_resource_estimation 8673--experimental_collect_system_network_usage 8674--noexperimental_collect_system_network_usage 8675--experimental_collect_worker_data_in_profiler 8676--noexperimental_collect_worker_data_in_profiler 8677--experimental_command_profile 8678--noexperimental_command_profile 8679--experimental_convenience_symlinks={normal,clean,ignore,log_only} 8680--experimental_convenience_symlinks_bep_event 8681--noexperimental_convenience_symlinks_bep_event 8682--experimental_disable_external_package 8683--noexperimental_disable_external_package 8684--experimental_docker_image= 8685--experimental_docker_privileged 8686--noexperimental_docker_privileged 8687--experimental_docker_use_customized_images 8688--noexperimental_docker_use_customized_images 8689--experimental_docker_verbose 8690--noexperimental_docker_verbose 8691--experimental_downloader_config= 8692--experimental_dynamic_exclude_tools 8693--noexperimental_dynamic_exclude_tools 8694--experimental_dynamic_ignore_local_signals= 8695--experimental_dynamic_local_load_factor= 8696--experimental_dynamic_slow_remote_time= 8697--experimental_enable_android_migration_apis 8698--noexperimental_enable_android_migration_apis 8699--experimental_enable_docker_sandbox 8700--noexperimental_enable_docker_sandbox 8701--experimental_enable_scl_dialect 8702--noexperimental_enable_scl_dialect 8703--experimental_execution_log_file=path 8704--experimental_extra_action_filter= 8705--experimental_extra_action_top_level_only 8706--noexperimental_extra_action_top_level_only 8707--experimental_fetch_all_coverage_outputs 8708--noexperimental_fetch_all_coverage_outputs 8709--experimental_filter_library_jar_with_program_jar 8710--noexperimental_filter_library_jar_with_program_jar 8711--experimental_generate_llvm_lcov 8712--noexperimental_generate_llvm_lcov 8713--experimental_google_legacy_api 8714--noexperimental_google_legacy_api 8715--experimental_guard_against_concurrent_changes 8716--noexperimental_guard_against_concurrent_changes 8717--experimental_import_deps_checking={off,warning,error} 8718--experimental_include_xcode_execution_requirements 8719--noexperimental_include_xcode_execution_requirements 8720--experimental_inmemory_dotd_files 8721--noexperimental_inmemory_dotd_files 8722--experimental_inmemory_jdeps_files 8723--noexperimental_inmemory_jdeps_files 8724--experimental_inprocess_symlink_creation 8725--noexperimental_inprocess_symlink_creation 8726--experimental_isolated_extension_usages 8727--noexperimental_isolated_extension_usages 8728--experimental_j2objc_header_map 8729--noexperimental_j2objc_header_map 8730--experimental_j2objc_shorter_header_path 8731--noexperimental_j2objc_shorter_header_path 8732--experimental_java_classpath={off,javabuilder,bazel} 8733--experimental_java_library_export 8734--noexperimental_java_library_export 8735--experimental_limit_android_lint_to_android_constrained_java 8736--noexperimental_limit_android_lint_to_android_constrained_java 8737--experimental_materialize_param_files_directly 8738--noexperimental_materialize_param_files_directly 8739--experimental_objc_fastbuild_options= 8740--experimental_objc_include_scanning 8741--noexperimental_objc_include_scanning 8742--experimental_omitfp 8743--noexperimental_omitfp 8744--experimental_parallel_aquery_output 8745--noexperimental_parallel_aquery_output 8746--experimental_persistent_aar_extractor 8747--noexperimental_persistent_aar_extractor 8748--experimental_platform_in_output_dir 8749--noexperimental_platform_in_output_dir 8750--experimental_platforms_api 8751--noexperimental_platforms_api 8752--experimental_prefer_mutual_xcode 8753--noexperimental_prefer_mutual_xcode 8754--experimental_profile_additional_tasks= 8755--experimental_profile_include_primary_output 8756--noexperimental_profile_include_primary_output 8757--experimental_profile_include_target_label 8758--noexperimental_profile_include_target_label 8759--experimental_proto_descriptor_sets_include_source_info 8760--noexperimental_proto_descriptor_sets_include_source_info 8761--experimental_proto_extra_actions 8762--noexperimental_proto_extra_actions 8763--experimental_record_metrics_for_all_mnemonics 8764--noexperimental_record_metrics_for_all_mnemonics 8765--experimental_remotable_source_manifests 8766--noexperimental_remotable_source_manifests 8767--experimental_remote_cache_async 8768--noexperimental_remote_cache_async 8769--experimental_remote_cache_eviction_retries= 8770--experimental_remote_cache_lease_extension 8771--noexperimental_remote_cache_lease_extension 8772--experimental_remote_cache_ttl= 8773--experimental_remote_capture_corrupted_outputs=path 8774--experimental_remote_discard_merkle_trees 8775--noexperimental_remote_discard_merkle_trees 8776--experimental_remote_downloader= 8777--experimental_remote_downloader_local_fallback 8778--noexperimental_remote_downloader_local_fallback 8779--experimental_remote_execution_keepalive 8780--noexperimental_remote_execution_keepalive 8781--experimental_remote_failure_rate_threshold= 8782--experimental_remote_failure_window_interval= 8783--experimental_remote_mark_tool_inputs 8784--noexperimental_remote_mark_tool_inputs 8785--experimental_remote_merkle_tree_cache 8786--noexperimental_remote_merkle_tree_cache 8787--experimental_remote_merkle_tree_cache_size= 8788--experimental_remote_require_cached 8789--noexperimental_remote_require_cached 8790--experimental_repo_remote_exec 8791--noexperimental_repo_remote_exec 8792--experimental_repository_cache_hardlinks 8793--noexperimental_repository_cache_hardlinks 8794--experimental_repository_downloader_retries= 8795--experimental_repository_resolved_file= 8796--experimental_resolved_file_instead_of_workspace= 8797--experimental_retain_test_configuration_across_testonly 8798--noexperimental_retain_test_configuration_across_testonly 8799--experimental_run_android_lint_on_java_rules 8800--noexperimental_run_android_lint_on_java_rules 8801--experimental_run_bep_event_include_residue 8802--noexperimental_run_bep_event_include_residue 8803--experimental_sandbox_async_tree_delete_idle_threads= 8804--experimental_sandbox_memory_limit_mb= 8805--experimental_sandboxfs_map_symlink_targets 8806--noexperimental_sandboxfs_map_symlink_targets 8807--experimental_sandboxfs_path= 8808--experimental_save_feature_state 8809--noexperimental_save_feature_state 8810--experimental_scale_timeouts= 8811--experimental_shrink_worker_pool 8812--noexperimental_shrink_worker_pool 8813--experimental_sibling_repository_layout 8814--noexperimental_sibling_repository_layout 8815--experimental_spawn_scheduler 8816--experimental_split_coverage_postprocessing 8817--noexperimental_split_coverage_postprocessing 8818--experimental_split_xml_generation 8819--noexperimental_split_xml_generation 8820--experimental_starlark_cc_import 8821--noexperimental_starlark_cc_import 8822--experimental_stream_log_file_uploads 8823--noexperimental_stream_log_file_uploads 8824--experimental_strict_fileset_output 8825--noexperimental_strict_fileset_output 8826--experimental_strict_java_deps={off,warn,error,strict,default} 8827--experimental_total_worker_memory_limit_mb= 8828--experimental_ui_max_stdouterr_bytes= 8829--experimental_unsupported_and_brittle_include_scanning 8830--noexperimental_unsupported_and_brittle_include_scanning 8831--experimental_use_hermetic_linux_sandbox 8832--noexperimental_use_hermetic_linux_sandbox 8833--experimental_use_llvm_covmap 8834--noexperimental_use_llvm_covmap 8835--experimental_use_sandboxfs={auto,yes,no} 8836--noexperimental_use_sandboxfs 8837--experimental_use_semaphore_for_jobs 8838--noexperimental_use_semaphore_for_jobs 8839--experimental_use_validation_aspect 8840--noexperimental_use_validation_aspect 8841--experimental_use_windows_sandbox={auto,yes,no} 8842--noexperimental_use_windows_sandbox 8843--experimental_windows_sandbox_path= 8844--experimental_windows_watchfs 8845--noexperimental_windows_watchfs 8846--experimental_worker_allowlist= 8847--experimental_worker_as_resource 8848--noexperimental_worker_as_resource 8849--experimental_worker_cancellation 8850--noexperimental_worker_cancellation 8851--experimental_worker_for_repo_fetching={off,platform,virtual} 8852--experimental_worker_memory_limit_mb= 8853--experimental_worker_metrics_poll_interval= 8854--experimental_worker_multiplex_sandboxing 8855--noexperimental_worker_multiplex_sandboxing 8856--experimental_worker_sandbox_hardening 8857--noexperimental_worker_sandbox_hardening 8858--experimental_worker_strict_flagfiles 8859--noexperimental_worker_strict_flagfiles 8860--experimental_workspace_rules_log_file=path 8861--explain=path 8862--explicit_java_test_deps 8863--noexplicit_java_test_deps 8864--extra_execution_platforms= 8865--extra_toolchains= 8866--fat_apk_cpu= 8867--fat_apk_hwasan 8868--nofat_apk_hwasan 8869--fdo_instrument= 8870--fdo_optimize= 8871--fdo_prefetch_hints=label 8872--fdo_profile=label 8873--features= 8874--fission= 8875--flag_alias= 8876--flaky_test_attempts= 8877--force_pic 8878--noforce_pic 8879--gc_thrashing_limits= 8880--gc_thrashing_threshold= 8881--generate_json_trace_profile={auto,yes,no} 8882--nogenerate_json_trace_profile 8883--genrule_strategy= 8884--google_auth_scopes= 8885--google_credentials= 8886--google_default_credentials 8887--nogoogle_default_credentials 8888--grpc_keepalive_time= 8889--grpc_keepalive_timeout= 8890--grte_top=label 8891--heap_dump_on_oom 8892--noheap_dump_on_oom 8893--heuristically_drop_nodes 8894--noheuristically_drop_nodes 8895--high_priority_workers= 8896--host_action_env= 8897--host_compilation_mode={fastbuild,dbg,opt} 8898--host_compiler= 8899--host_conlyopt= 8900--host_copt= 8901--host_cpu= 8902--host_crosstool_top=label 8903--host_cxxopt= 8904--host_features= 8905--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 8906--host_grte_top=label 8907--host_java_launcher=label 8908--host_javacopt= 8909--host_jvmopt= 8910--host_linkopt= 8911--host_macos_minimum_os= 8912--host_per_file_copt= 8913--host_platform=label 8914--host_swiftcopt= 8915--http_connector_attempts= 8916--http_connector_retry_max_timeout= 8917--http_timeout_scaling= 8918--ignore_dev_dependency 8919--noignore_dev_dependency 8920--ignore_unsupported_sandboxing 8921--noignore_unsupported_sandboxing 8922--incompatible_allow_tags_propagation 8923--noincompatible_allow_tags_propagation 8924--incompatible_always_check_depset_elements 8925--noincompatible_always_check_depset_elements 8926--incompatible_always_include_files_in_data 8927--noincompatible_always_include_files_in_data 8928--incompatible_auto_exec_groups 8929--noincompatible_auto_exec_groups 8930--incompatible_check_sharding_support 8931--noincompatible_check_sharding_support 8932--incompatible_check_testonly_for_output_files 8933--noincompatible_check_testonly_for_output_files 8934--incompatible_check_visibility_for_toolchains 8935--noincompatible_check_visibility_for_toolchains 8936--incompatible_config_setting_private_default_visibility 8937--noincompatible_config_setting_private_default_visibility 8938--incompatible_default_to_explicit_init_py 8939--noincompatible_default_to_explicit_init_py 8940--incompatible_depset_for_java_output_source_jars 8941--noincompatible_depset_for_java_output_source_jars 8942--incompatible_depset_for_libraries_to_link_getter 8943--noincompatible_depset_for_libraries_to_link_getter 8944--incompatible_disable_native_android_rules 8945--noincompatible_disable_native_android_rules 8946--incompatible_disable_native_apple_binary_rule 8947--noincompatible_disable_native_apple_binary_rule 8948--incompatible_disable_non_executable_java_binary 8949--noincompatible_disable_non_executable_java_binary 8950--incompatible_disable_objc_library_transition 8951--noincompatible_disable_objc_library_transition 8952--incompatible_disable_starlark_host_transitions 8953--noincompatible_disable_starlark_host_transitions 8954--incompatible_disable_target_provider_fields 8955--noincompatible_disable_target_provider_fields 8956--incompatible_disallow_empty_glob 8957--noincompatible_disallow_empty_glob 8958--incompatible_disallow_legacy_py_provider 8959--noincompatible_disallow_legacy_py_provider 8960--incompatible_disallow_sdk_frameworks_attributes 8961--noincompatible_disallow_sdk_frameworks_attributes 8962--incompatible_disallow_struct_provider_syntax 8963--noincompatible_disallow_struct_provider_syntax 8964--incompatible_disallow_symlink_file_to_dir 8965--noincompatible_disallow_symlink_file_to_dir 8966--incompatible_do_not_split_linking_cmdline 8967--noincompatible_do_not_split_linking_cmdline 8968--incompatible_dont_enable_host_nonhost_crosstool_features 8969--noincompatible_dont_enable_host_nonhost_crosstool_features 8970--incompatible_dont_use_javasourceinfoprovider 8971--noincompatible_dont_use_javasourceinfoprovider 8972--incompatible_enable_android_toolchain_resolution 8973--noincompatible_enable_android_toolchain_resolution 8974--incompatible_enable_apple_toolchain_resolution 8975--noincompatible_enable_apple_toolchain_resolution 8976--incompatible_enable_proto_toolchain_resolution 8977--noincompatible_enable_proto_toolchain_resolution 8978--incompatible_enforce_config_setting_visibility 8979--noincompatible_enforce_config_setting_visibility 8980--incompatible_exclusive_test_sandboxed 8981--noincompatible_exclusive_test_sandboxed 8982--incompatible_existing_rules_immutable_view 8983--noincompatible_existing_rules_immutable_view 8984--incompatible_fail_on_unknown_attributes 8985--noincompatible_fail_on_unknown_attributes 8986--incompatible_fix_package_group_reporoot_syntax 8987--noincompatible_fix_package_group_reporoot_syntax 8988--incompatible_java_common_parameters 8989--noincompatible_java_common_parameters 8990--incompatible_legacy_local_fallback 8991--noincompatible_legacy_local_fallback 8992--incompatible_make_thinlto_command_lines_standalone 8993--noincompatible_make_thinlto_command_lines_standalone 8994--incompatible_merge_fixed_and_default_shell_env 8995--noincompatible_merge_fixed_and_default_shell_env 8996--incompatible_merge_genfiles_directory 8997--noincompatible_merge_genfiles_directory 8998--incompatible_new_actions_api 8999--noincompatible_new_actions_api 9000--incompatible_no_attr_license 9001--noincompatible_no_attr_license 9002--incompatible_no_implicit_file_export 9003--noincompatible_no_implicit_file_export 9004--incompatible_no_rule_outputs_param 9005--noincompatible_no_rule_outputs_param 9006--incompatible_objc_alwayslink_by_default 9007--noincompatible_objc_alwayslink_by_default 9008--incompatible_objc_provider_remove_linking_info 9009--noincompatible_objc_provider_remove_linking_info 9010--incompatible_package_group_has_public_syntax 9011--noincompatible_package_group_has_public_syntax 9012--incompatible_py2_outputs_are_suffixed 9013--noincompatible_py2_outputs_are_suffixed 9014--incompatible_py3_is_default 9015--noincompatible_py3_is_default 9016--incompatible_python_disable_py2 9017--noincompatible_python_disable_py2 9018--incompatible_python_disallow_native_rules 9019--noincompatible_python_disallow_native_rules 9020--incompatible_remote_build_event_upload_respect_no_cache 9021--noincompatible_remote_build_event_upload_respect_no_cache 9022--incompatible_remote_dangling_symlinks 9023--noincompatible_remote_dangling_symlinks 9024--incompatible_remote_disallow_symlink_in_tree_artifact 9025--noincompatible_remote_disallow_symlink_in_tree_artifact 9026--incompatible_remote_downloader_send_all_headers 9027--noincompatible_remote_downloader_send_all_headers 9028--incompatible_remote_output_paths_relative_to_input_root 9029--noincompatible_remote_output_paths_relative_to_input_root 9030--incompatible_remote_results_ignore_disk 9031--noincompatible_remote_results_ignore_disk 9032--incompatible_remote_symlinks 9033--noincompatible_remote_symlinks 9034--incompatible_remote_use_new_exit_code_for_lost_inputs 9035--noincompatible_remote_use_new_exit_code_for_lost_inputs 9036--incompatible_remove_legacy_whole_archive 9037--noincompatible_remove_legacy_whole_archive 9038--incompatible_require_ctx_in_configure_features 9039--noincompatible_require_ctx_in_configure_features 9040--incompatible_require_linker_input_cc_api 9041--noincompatible_require_linker_input_cc_api 9042--incompatible_run_shell_command_string 9043--noincompatible_run_shell_command_string 9044--incompatible_sandbox_hermetic_tmp 9045--noincompatible_sandbox_hermetic_tmp 9046--incompatible_stop_exporting_language_modules 9047--noincompatible_stop_exporting_language_modules 9048--incompatible_strict_action_env 9049--noincompatible_strict_action_env 9050--incompatible_struct_has_no_methods 9051--noincompatible_struct_has_no_methods 9052--incompatible_top_level_aspects_require_providers 9053--noincompatible_top_level_aspects_require_providers 9054--incompatible_unambiguous_label_stringification 9055--noincompatible_unambiguous_label_stringification 9056--incompatible_use_cc_configure_from_rules_cc 9057--noincompatible_use_cc_configure_from_rules_cc 9058--incompatible_use_host_features 9059--noincompatible_use_host_features 9060--incompatible_use_python_toolchains 9061--noincompatible_use_python_toolchains 9062--incompatible_validate_top_level_header_inclusions 9063--noincompatible_validate_top_level_header_inclusions 9064--incompatible_visibility_private_attributes_at_definition 9065--noincompatible_visibility_private_attributes_at_definition 9066--incremental_dexing 9067--noincremental_dexing 9068--instrument_test_targets 9069--noinstrument_test_targets 9070--instrumentation_filter= 9071--interface_shared_objects 9072--nointerface_shared_objects 9073--internal_spawn_scheduler 9074--nointernal_spawn_scheduler 9075--ios_memleaks 9076--noios_memleaks 9077--ios_minimum_os= 9078--ios_multi_cpus= 9079--ios_sdk_version= 9080--ios_signing_cert_name= 9081--ios_simulator_device= 9082--ios_simulator_version= 9083--j2objc_translation_flags= 9084--java_debug 9085--java_deps 9086--nojava_deps 9087--java_header_compilation 9088--nojava_header_compilation 9089--java_language_version= 9090--java_launcher=label 9091--java_runtime_version= 9092--javacopt= 9093--jobs= 9094--jvmopt= 9095--keep_going 9096--nokeep_going 9097--keep_state_after_build 9098--nokeep_state_after_build 9099--legacy_external_runfiles 9100--nolegacy_external_runfiles 9101--legacy_important_outputs 9102--nolegacy_important_outputs 9103--legacy_main_dex_list_generator=label 9104--legacy_whole_archive 9105--nolegacy_whole_archive 9106--linkopt= 9107--loading_phase_threads= 9108--local_cpu_resources= 9109--local_extra_resources= 9110--local_ram_resources= 9111--local_termination_grace_seconds= 9112--local_test_jobs= 9113--lockfile_mode={off,update,error} 9114--logging= 9115--ltobackendopt= 9116--ltoindexopt= 9117--macos_cpus= 9118--macos_minimum_os= 9119--macos_sdk_version= 9120--materialize_param_files 9121--nomaterialize_param_files 9122--max_computation_steps= 9123--max_config_changes_to_show= 9124--max_test_output_bytes= 9125--memory_profile=path 9126--memory_profile_stable_heap_parameters= 9127--memprof_profile=label 9128--minimum_os_version= 9129--modify_execution_info= 9130--nested_set_depth_limit= 9131--objc_debug_with_GLIBCXX 9132--noobjc_debug_with_GLIBCXX 9133--objc_enable_binary_stripping 9134--noobjc_enable_binary_stripping 9135--objc_generate_linkmap 9136--noobjc_generate_linkmap 9137--objc_use_dotd_pruning 9138--noobjc_use_dotd_pruning 9139--objccopt= 9140--optimizing_dexer=label 9141--output_filter= 9142--output_groups= 9143--override_module= 9144--override_repository= 9145--package_path= 9146--per_file_copt= 9147--per_file_ltobackendopt= 9148--persistent_android_dex_desugar 9149--persistent_android_resource_processor 9150--persistent_multiplex_android_dex_desugar 9151--persistent_multiplex_android_resource_processor 9152--persistent_multiplex_android_tools 9153--platform_mappings=path 9154--platform_suffix= 9155--platforms= 9156--plugin= 9157--process_headers_in_dependencies 9158--noprocess_headers_in_dependencies 9159--profile=path 9160--progress_in_terminal_title 9161--noprogress_in_terminal_title 9162--progress_report_interval= 9163--proguard_top=label 9164--propeller_optimize=label 9165--propeller_optimize_absolute_cc_profile= 9166--propeller_optimize_absolute_ld_profile= 9167--proto_compiler=label 9168--proto_toolchain_for_cc=label 9169--proto_toolchain_for_j2objc=label 9170--proto_toolchain_for_java=label 9171--proto_toolchain_for_javalite=label 9172--protocopt= 9173--python2_path= 9174--python3_path= 9175--python_native_rules_allowlist=label 9176--python_path= 9177--python_top=label 9178--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 9179--record_full_profiler_data 9180--norecord_full_profiler_data 9181--registry= 9182--remote_accept_cached 9183--noremote_accept_cached 9184--remote_build_event_upload={all,minimal} 9185--remote_bytestream_uri_prefix= 9186--remote_cache= 9187--remote_cache_compression 9188--noremote_cache_compression 9189--remote_cache_header= 9190--remote_default_exec_properties= 9191--remote_default_platform_properties= 9192--remote_download_all 9193--remote_download_minimal 9194--remote_download_outputs={all,minimal,toplevel} 9195--remote_download_regex= 9196--remote_download_symlink_template= 9197--remote_download_toplevel 9198--remote_downloader_header= 9199--remote_exec_header= 9200--remote_execution_priority= 9201--remote_executor= 9202--remote_grpc_log=path 9203--remote_header= 9204--remote_instance_name= 9205--remote_local_fallback 9206--noremote_local_fallback 9207--remote_local_fallback_strategy= 9208--remote_max_connections= 9209--remote_print_execution_messages={failure,success,all} 9210--remote_proxy= 9211--remote_result_cache_priority= 9212--remote_retries= 9213--remote_retry_max_delay= 9214--remote_timeout= 9215--remote_upload_local_results 9216--noremote_upload_local_results 9217--remote_verify_downloads 9218--noremote_verify_downloads 9219--repo_env= 9220--repository_cache=path 9221--repository_cache_urls_as_default_canonical_id 9222--norepository_cache_urls_as_default_canonical_id 9223--repository_disable_download 9224--norepository_disable_download 9225--reuse_sandbox_directories 9226--noreuse_sandbox_directories 9227--run_under= 9228--run_validations 9229--norun_validations 9230--runs_per_test= 9231--runs_per_test_detects_flakes 9232--noruns_per_test_detects_flakes 9233--sandbox_add_mount_pair= 9234--sandbox_base= 9235--sandbox_block_path= 9236--sandbox_debug 9237--nosandbox_debug 9238--sandbox_default_allow_network 9239--nosandbox_default_allow_network 9240--sandbox_explicit_pseudoterminal 9241--nosandbox_explicit_pseudoterminal 9242--sandbox_fake_hostname 9243--nosandbox_fake_hostname 9244--sandbox_fake_username 9245--nosandbox_fake_username 9246--sandbox_tmpfs_path= 9247--sandbox_writable_path= 9248--save_temps 9249--nosave_temps 9250--share_native_deps 9251--noshare_native_deps 9252--shell_executable=path 9253--show_loading_progress 9254--noshow_loading_progress 9255--show_make_env 9256--noshow_make_env 9257--show_progress 9258--noshow_progress 9259--show_progress_rate_limit= 9260--show_result= 9261--show_timestamps 9262--noshow_timestamps 9263--skip_incompatible_explicit_targets 9264--noskip_incompatible_explicit_targets 9265--skyframe_high_water_mark_full_gc_drops_per_invocation= 9266--skyframe_high_water_mark_minor_gc_drops_per_invocation= 9267--skyframe_high_water_mark_threshold= 9268--slim_profile 9269--noslim_profile 9270--spawn_strategy= 9271--stamp 9272--nostamp 9273--starlark_cpu_profile= 9274--strategy= 9275--strategy_regexp= 9276--strict_filesets 9277--nostrict_filesets 9278--strict_proto_deps={off,warn,error,strict,default} 9279--strict_public_imports={off,warn,error,strict,default} 9280--strict_system_includes 9281--nostrict_system_includes 9282--strip={always,sometimes,never} 9283--stripopt= 9284--subcommands={true,pretty_print,false} 9285--swiftcopt= 9286--symlink_prefix= 9287--target_environment= 9288--target_pattern_file= 9289--target_platform_fallback= 9290--test_arg= 9291--test_env= 9292--test_filter= 9293--test_keep_going 9294--notest_keep_going 9295--test_lang_filters= 9296--test_output={summary,errors,all,streamed} 9297--test_result_expiration= 9298--test_runner_fail_fast 9299--notest_runner_fail_fast 9300--test_sharding_strategy= 9301--test_size_filters= 9302--test_strategy= 9303--test_summary={short,terse,detailed,none,testcase} 9304--test_tag_filters= 9305--test_timeout= 9306--test_timeout_filters= 9307--test_tmpdir=path 9308--tls_certificate= 9309--tls_client_certificate= 9310--tls_client_key= 9311--tool_java_language_version= 9312--tool_java_runtime_version= 9313--tool_tag= 9314--toolchain_resolution_debug= 9315--track_incremental_state 9316--notrack_incremental_state 9317--trim_test_configuration 9318--notrim_test_configuration 9319--tvos_cpus= 9320--tvos_minimum_os= 9321--tvos_sdk_version= 9322--ui_actions_shown= 9323--ui_event_filters= 9324--use_ijars 9325--nouse_ijars 9326--use_target_platform_for_tests 9327--nouse_target_platform_for_tests 9328--verbose_explanations 9329--noverbose_explanations 9330--verbose_failures 9331--noverbose_failures 9332--visionos_cpus= 9333--watchfs 9334--nowatchfs 9335--watchos_cpus= 9336--watchos_minimum_os= 9337--watchos_sdk_version= 9338--worker_extra_flag= 9339--worker_max_instances= 9340--worker_max_multiplex_instances= 9341--worker_multiplex 9342--noworker_multiplex 9343--worker_quit_after_build 9344--noworker_quit_after_build 9345--worker_sandboxing 9346--noworker_sandboxing 9347--worker_verbose 9348--noworker_verbose 9349--workspace_status_command=path 9350--xbinary_fdo=label 9351--xcode_version= 9352--xcode_version_config=label 9353--zip_undeclared_test_outputs 9354--nozip_undeclared_test_outputs 9355" 9356BAZEL_COMMAND_LICENSE_FLAGS=" 9357--allow_yanked_versions= 9358--announce_rc 9359--noannounce_rc 9360--attempt_to_print_relative_paths 9361--noattempt_to_print_relative_paths 9362--bep_maximum_open_remote_upload_files= 9363--bes_backend= 9364--bes_check_preceding_lifecycle_events 9365--nobes_check_preceding_lifecycle_events 9366--bes_header= 9367--bes_instance_name= 9368--bes_keywords= 9369--bes_lifecycle_events 9370--nobes_lifecycle_events 9371--bes_oom_finish_upload_timeout= 9372--bes_outerr_buffer_size= 9373--bes_outerr_chunk_size= 9374--bes_proxy= 9375--bes_results_url= 9376--bes_system_keywords= 9377--bes_timeout= 9378--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 9379--build_event_binary_file= 9380--build_event_binary_file_path_conversion 9381--nobuild_event_binary_file_path_conversion 9382--build_event_json_file= 9383--build_event_json_file_path_conversion 9384--nobuild_event_json_file_path_conversion 9385--build_event_max_named_set_of_file_entries= 9386--build_event_publish_all_actions 9387--nobuild_event_publish_all_actions 9388--build_event_text_file= 9389--build_event_text_file_path_conversion 9390--nobuild_event_text_file_path_conversion 9391--build_metadata= 9392--check_bazel_compatibility={error,warning,off} 9393--check_bzl_visibility 9394--nocheck_bzl_visibility 9395--check_direct_dependencies={off,warning,error} 9396--color={yes,no,auto} 9397--config= 9398--credential_helper= 9399--credential_helper_cache_duration= 9400--credential_helper_timeout= 9401--curses={yes,no,auto} 9402--disk_cache=path 9403--distdir= 9404--enable_bzlmod 9405--noenable_bzlmod 9406--enable_platform_specific_config 9407--noenable_platform_specific_config 9408--experimental_action_resource_set 9409--noexperimental_action_resource_set 9410--experimental_announce_profile_path 9411--noexperimental_announce_profile_path 9412--experimental_bep_target_summary 9413--noexperimental_bep_target_summary 9414--experimental_build_event_expand_filesets 9415--noexperimental_build_event_expand_filesets 9416--experimental_build_event_fully_resolve_fileset_symlinks 9417--noexperimental_build_event_fully_resolve_fileset_symlinks 9418--experimental_build_event_upload_max_retries= 9419--experimental_build_event_upload_retry_minimum_delay= 9420--experimental_build_event_upload_strategy= 9421--experimental_bzl_visibility 9422--noexperimental_bzl_visibility 9423--experimental_cc_shared_library 9424--noexperimental_cc_shared_library 9425--experimental_circuit_breaker_strategy={failure} 9426--experimental_collect_load_average_in_profiler 9427--noexperimental_collect_load_average_in_profiler 9428--experimental_collect_pressure_stall_indicators 9429--noexperimental_collect_pressure_stall_indicators 9430--experimental_collect_resource_estimation 9431--noexperimental_collect_resource_estimation 9432--experimental_collect_system_network_usage 9433--noexperimental_collect_system_network_usage 9434--experimental_collect_worker_data_in_profiler 9435--noexperimental_collect_worker_data_in_profiler 9436--experimental_command_profile 9437--noexperimental_command_profile 9438--experimental_disable_external_package 9439--noexperimental_disable_external_package 9440--experimental_downloader_config= 9441--experimental_enable_android_migration_apis 9442--noexperimental_enable_android_migration_apis 9443--experimental_enable_scl_dialect 9444--noexperimental_enable_scl_dialect 9445--experimental_google_legacy_api 9446--noexperimental_google_legacy_api 9447--experimental_guard_against_concurrent_changes 9448--noexperimental_guard_against_concurrent_changes 9449--experimental_isolated_extension_usages 9450--noexperimental_isolated_extension_usages 9451--experimental_java_library_export 9452--noexperimental_java_library_export 9453--experimental_platforms_api 9454--noexperimental_platforms_api 9455--experimental_profile_additional_tasks= 9456--experimental_profile_include_primary_output 9457--noexperimental_profile_include_primary_output 9458--experimental_profile_include_target_label 9459--noexperimental_profile_include_target_label 9460--experimental_record_metrics_for_all_mnemonics 9461--noexperimental_record_metrics_for_all_mnemonics 9462--experimental_remote_cache_async 9463--noexperimental_remote_cache_async 9464--experimental_remote_cache_lease_extension 9465--noexperimental_remote_cache_lease_extension 9466--experimental_remote_cache_ttl= 9467--experimental_remote_capture_corrupted_outputs=path 9468--experimental_remote_discard_merkle_trees 9469--noexperimental_remote_discard_merkle_trees 9470--experimental_remote_downloader= 9471--experimental_remote_downloader_local_fallback 9472--noexperimental_remote_downloader_local_fallback 9473--experimental_remote_execution_keepalive 9474--noexperimental_remote_execution_keepalive 9475--experimental_remote_failure_rate_threshold= 9476--experimental_remote_failure_window_interval= 9477--experimental_remote_mark_tool_inputs 9478--noexperimental_remote_mark_tool_inputs 9479--experimental_remote_merkle_tree_cache 9480--noexperimental_remote_merkle_tree_cache 9481--experimental_remote_merkle_tree_cache_size= 9482--experimental_remote_require_cached 9483--noexperimental_remote_require_cached 9484--experimental_repo_remote_exec 9485--noexperimental_repo_remote_exec 9486--experimental_repository_cache_hardlinks 9487--noexperimental_repository_cache_hardlinks 9488--experimental_repository_downloader_retries= 9489--experimental_resolved_file_instead_of_workspace= 9490--experimental_run_bep_event_include_residue 9491--noexperimental_run_bep_event_include_residue 9492--experimental_scale_timeouts= 9493--experimental_sibling_repository_layout 9494--noexperimental_sibling_repository_layout 9495--experimental_stream_log_file_uploads 9496--noexperimental_stream_log_file_uploads 9497--experimental_ui_max_stdouterr_bytes= 9498--experimental_windows_watchfs 9499--noexperimental_windows_watchfs 9500--experimental_worker_for_repo_fetching={off,platform,virtual} 9501--experimental_workspace_rules_log_file=path 9502--gc_thrashing_limits= 9503--gc_thrashing_threshold= 9504--generate_json_trace_profile={auto,yes,no} 9505--nogenerate_json_trace_profile 9506--google_auth_scopes= 9507--google_credentials= 9508--google_default_credentials 9509--nogoogle_default_credentials 9510--grpc_keepalive_time= 9511--grpc_keepalive_timeout= 9512--heap_dump_on_oom 9513--noheap_dump_on_oom 9514--heuristically_drop_nodes 9515--noheuristically_drop_nodes 9516--http_connector_attempts= 9517--http_connector_retry_max_timeout= 9518--http_timeout_scaling= 9519--ignore_dev_dependency 9520--noignore_dev_dependency 9521--incompatible_allow_tags_propagation 9522--noincompatible_allow_tags_propagation 9523--incompatible_always_check_depset_elements 9524--noincompatible_always_check_depset_elements 9525--incompatible_depset_for_java_output_source_jars 9526--noincompatible_depset_for_java_output_source_jars 9527--incompatible_depset_for_libraries_to_link_getter 9528--noincompatible_depset_for_libraries_to_link_getter 9529--incompatible_disable_non_executable_java_binary 9530--noincompatible_disable_non_executable_java_binary 9531--incompatible_disable_objc_library_transition 9532--noincompatible_disable_objc_library_transition 9533--incompatible_disable_starlark_host_transitions 9534--noincompatible_disable_starlark_host_transitions 9535--incompatible_disable_target_provider_fields 9536--noincompatible_disable_target_provider_fields 9537--incompatible_disallow_empty_glob 9538--noincompatible_disallow_empty_glob 9539--incompatible_disallow_struct_provider_syntax 9540--noincompatible_disallow_struct_provider_syntax 9541--incompatible_disallow_symlink_file_to_dir 9542--noincompatible_disallow_symlink_file_to_dir 9543--incompatible_do_not_split_linking_cmdline 9544--noincompatible_do_not_split_linking_cmdline 9545--incompatible_enable_proto_toolchain_resolution 9546--noincompatible_enable_proto_toolchain_resolution 9547--incompatible_existing_rules_immutable_view 9548--noincompatible_existing_rules_immutable_view 9549--incompatible_fail_on_unknown_attributes 9550--noincompatible_fail_on_unknown_attributes 9551--incompatible_fix_package_group_reporoot_syntax 9552--noincompatible_fix_package_group_reporoot_syntax 9553--incompatible_java_common_parameters 9554--noincompatible_java_common_parameters 9555--incompatible_merge_fixed_and_default_shell_env 9556--noincompatible_merge_fixed_and_default_shell_env 9557--incompatible_new_actions_api 9558--noincompatible_new_actions_api 9559--incompatible_no_attr_license 9560--noincompatible_no_attr_license 9561--incompatible_no_implicit_file_export 9562--noincompatible_no_implicit_file_export 9563--incompatible_no_rule_outputs_param 9564--noincompatible_no_rule_outputs_param 9565--incompatible_objc_provider_remove_linking_info 9566--noincompatible_objc_provider_remove_linking_info 9567--incompatible_package_group_has_public_syntax 9568--noincompatible_package_group_has_public_syntax 9569--incompatible_remote_build_event_upload_respect_no_cache 9570--noincompatible_remote_build_event_upload_respect_no_cache 9571--incompatible_remote_dangling_symlinks 9572--noincompatible_remote_dangling_symlinks 9573--incompatible_remote_disallow_symlink_in_tree_artifact 9574--noincompatible_remote_disallow_symlink_in_tree_artifact 9575--incompatible_remote_downloader_send_all_headers 9576--noincompatible_remote_downloader_send_all_headers 9577--incompatible_remote_output_paths_relative_to_input_root 9578--noincompatible_remote_output_paths_relative_to_input_root 9579--incompatible_remote_results_ignore_disk 9580--noincompatible_remote_results_ignore_disk 9581--incompatible_remote_symlinks 9582--noincompatible_remote_symlinks 9583--incompatible_require_linker_input_cc_api 9584--noincompatible_require_linker_input_cc_api 9585--incompatible_run_shell_command_string 9586--noincompatible_run_shell_command_string 9587--incompatible_stop_exporting_language_modules 9588--noincompatible_stop_exporting_language_modules 9589--incompatible_struct_has_no_methods 9590--noincompatible_struct_has_no_methods 9591--incompatible_top_level_aspects_require_providers 9592--noincompatible_top_level_aspects_require_providers 9593--incompatible_unambiguous_label_stringification 9594--noincompatible_unambiguous_label_stringification 9595--incompatible_use_cc_configure_from_rules_cc 9596--noincompatible_use_cc_configure_from_rules_cc 9597--incompatible_visibility_private_attributes_at_definition 9598--noincompatible_visibility_private_attributes_at_definition 9599--keep_state_after_build 9600--nokeep_state_after_build 9601--legacy_important_outputs 9602--nolegacy_important_outputs 9603--lockfile_mode={off,update,error} 9604--logging= 9605--max_computation_steps= 9606--memory_profile=path 9607--memory_profile_stable_heap_parameters= 9608--nested_set_depth_limit= 9609--override_module= 9610--override_repository= 9611--profile=path 9612--progress_in_terminal_title 9613--noprogress_in_terminal_title 9614--record_full_profiler_data 9615--norecord_full_profiler_data 9616--registry= 9617--remote_accept_cached 9618--noremote_accept_cached 9619--remote_build_event_upload={all,minimal} 9620--remote_bytestream_uri_prefix= 9621--remote_cache= 9622--remote_cache_compression 9623--noremote_cache_compression 9624--remote_cache_header= 9625--remote_default_exec_properties= 9626--remote_default_platform_properties= 9627--remote_download_all 9628--remote_download_minimal 9629--remote_download_outputs={all,minimal,toplevel} 9630--remote_download_regex= 9631--remote_download_symlink_template= 9632--remote_download_toplevel 9633--remote_downloader_header= 9634--remote_exec_header= 9635--remote_execution_priority= 9636--remote_executor= 9637--remote_grpc_log=path 9638--remote_header= 9639--remote_instance_name= 9640--remote_local_fallback 9641--noremote_local_fallback 9642--remote_local_fallback_strategy= 9643--remote_max_connections= 9644--remote_print_execution_messages={failure,success,all} 9645--remote_proxy= 9646--remote_result_cache_priority= 9647--remote_retries= 9648--remote_retry_max_delay= 9649--remote_timeout= 9650--remote_upload_local_results 9651--noremote_upload_local_results 9652--remote_verify_downloads 9653--noremote_verify_downloads 9654--repo_env= 9655--repository_cache=path 9656--repository_cache_urls_as_default_canonical_id 9657--norepository_cache_urls_as_default_canonical_id 9658--repository_disable_download 9659--norepository_disable_download 9660--show_progress 9661--noshow_progress 9662--show_progress_rate_limit= 9663--show_timestamps 9664--noshow_timestamps 9665--skyframe_high_water_mark_full_gc_drops_per_invocation= 9666--skyframe_high_water_mark_minor_gc_drops_per_invocation= 9667--skyframe_high_water_mark_threshold= 9668--slim_profile 9669--noslim_profile 9670--starlark_cpu_profile= 9671--tls_certificate= 9672--tls_client_certificate= 9673--tls_client_key= 9674--tool_tag= 9675--track_incremental_state 9676--notrack_incremental_state 9677--ui_actions_shown= 9678--ui_event_filters= 9679--watchfs 9680--nowatchfs 9681" 9682BAZEL_COMMAND_MOBILE_INSTALL_ARGUMENT="label" 9683BAZEL_COMMAND_MOBILE_INSTALL_FLAGS=" 9684--action_env= 9685--adb= 9686--adb_arg= 9687--allow_analysis_cache_discard 9688--noallow_analysis_cache_discard 9689--allow_analysis_failures 9690--noallow_analysis_failures 9691--allow_yanked_versions= 9692--analysis_testing_deps_limit= 9693--android_compiler= 9694--android_cpu= 9695--android_crosstool_top=label 9696--android_databinding_use_androidx 9697--noandroid_databinding_use_androidx 9698--android_databinding_use_v3_4_args 9699--noandroid_databinding_use_v3_4_args 9700--android_dynamic_mode={off,default,fully} 9701--android_grte_top=label 9702--android_manifest_merger={legacy,android,force_android} 9703--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 9704--android_platforms= 9705--android_resource_shrinking 9706--noandroid_resource_shrinking 9707--android_sdk=label 9708--announce_rc 9709--noannounce_rc 9710--apk_signing_method={v1,v2,v1_v2,v4} 9711--apple_crosstool_top=label 9712--apple_generate_dsym 9713--noapple_generate_dsym 9714--aspects= 9715--aspects_parameters= 9716--attempt_to_print_relative_paths 9717--noattempt_to_print_relative_paths 9718--auto_cpu_environment_group=label 9719--auto_output_filter={none,all,packages,subpackages} 9720--bep_maximum_open_remote_upload_files= 9721--bes_backend= 9722--bes_check_preceding_lifecycle_events 9723--nobes_check_preceding_lifecycle_events 9724--bes_header= 9725--bes_instance_name= 9726--bes_keywords= 9727--bes_lifecycle_events 9728--nobes_lifecycle_events 9729--bes_oom_finish_upload_timeout= 9730--bes_outerr_buffer_size= 9731--bes_outerr_chunk_size= 9732--bes_proxy= 9733--bes_results_url= 9734--bes_system_keywords= 9735--bes_timeout= 9736--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 9737--break_build_on_parallel_dex2oat_failure 9738--nobreak_build_on_parallel_dex2oat_failure 9739--build 9740--nobuild 9741--build_event_binary_file= 9742--build_event_binary_file_path_conversion 9743--nobuild_event_binary_file_path_conversion 9744--build_event_json_file= 9745--build_event_json_file_path_conversion 9746--nobuild_event_json_file_path_conversion 9747--build_event_max_named_set_of_file_entries= 9748--build_event_publish_all_actions 9749--nobuild_event_publish_all_actions 9750--build_event_text_file= 9751--build_event_text_file_path_conversion 9752--nobuild_event_text_file_path_conversion 9753--build_manual_tests 9754--nobuild_manual_tests 9755--build_metadata= 9756--build_python_zip={auto,yes,no} 9757--nobuild_python_zip 9758--build_runfile_links 9759--nobuild_runfile_links 9760--build_runfile_manifests 9761--nobuild_runfile_manifests 9762--build_tag_filters= 9763--build_test_dwp 9764--nobuild_test_dwp 9765--build_tests_only 9766--nobuild_tests_only 9767--cache_test_results={auto,yes,no} 9768--nocache_test_results 9769--catalyst_cpus= 9770--cc_output_directory_tag= 9771--cc_proto_library_header_suffixes= 9772--cc_proto_library_source_suffixes= 9773--check_bazel_compatibility={error,warning,off} 9774--check_bzl_visibility 9775--nocheck_bzl_visibility 9776--check_direct_dependencies={off,warning,error} 9777--check_licenses 9778--nocheck_licenses 9779--check_tests_up_to_date 9780--nocheck_tests_up_to_date 9781--check_up_to_date 9782--nocheck_up_to_date 9783--check_visibility 9784--nocheck_visibility 9785--collect_code_coverage 9786--nocollect_code_coverage 9787--color={yes,no,auto} 9788--combined_report={none,lcov} 9789--compilation_mode={fastbuild,dbg,opt} 9790--compile_one_dependency 9791--nocompile_one_dependency 9792--compiler= 9793--config= 9794--conlyopt= 9795--copt= 9796--coverage_output_generator=label 9797--coverage_report_generator=label 9798--coverage_support=label 9799--cpu= 9800--credential_helper= 9801--credential_helper_cache_duration= 9802--credential_helper_timeout= 9803--crosstool_top=label 9804--cs_fdo_absolute_path= 9805--cs_fdo_instrument= 9806--cs_fdo_profile=label 9807--curses={yes,no,auto} 9808--custom_malloc=label 9809--cxxopt= 9810--debug_app 9811--debug_spawn_scheduler 9812--nodebug_spawn_scheduler 9813--define= 9814--deleted_packages= 9815--desugar_for_android 9816--nodesugar_for_android 9817--desugar_java8_libs 9818--nodesugar_java8_libs 9819--device= 9820--device_debug_entitlements 9821--nodevice_debug_entitlements 9822--discard_analysis_cache 9823--nodiscard_analysis_cache 9824--disk_cache=path 9825--distdir= 9826--dynamic_local_execution_delay= 9827--dynamic_local_strategy= 9828--dynamic_mode={off,default,fully} 9829--dynamic_remote_strategy= 9830--embed_label= 9831--enable_bzlmod 9832--noenable_bzlmod 9833--enable_fdo_profile_absolute_path 9834--noenable_fdo_profile_absolute_path 9835--enable_platform_specific_config 9836--noenable_platform_specific_config 9837--enable_runfiles={auto,yes,no} 9838--noenable_runfiles 9839--enforce_constraints 9840--noenforce_constraints 9841--execution_log_binary_file=path 9842--execution_log_json_file=path 9843--execution_log_sort 9844--noexecution_log_sort 9845--expand_test_suites 9846--noexpand_test_suites 9847--experimental_action_listener= 9848--experimental_action_resource_set 9849--noexperimental_action_resource_set 9850--experimental_add_exec_constraints_to_targets= 9851--experimental_android_compress_java_resources 9852--noexperimental_android_compress_java_resources 9853--experimental_android_databinding_v2 9854--noexperimental_android_databinding_v2 9855--experimental_android_resource_shrinking 9856--noexperimental_android_resource_shrinking 9857--experimental_android_rewrite_dexes_with_rex 9858--noexperimental_android_rewrite_dexes_with_rex 9859--experimental_android_use_parallel_dex2oat 9860--noexperimental_android_use_parallel_dex2oat 9861--experimental_announce_profile_path 9862--noexperimental_announce_profile_path 9863--experimental_bep_target_summary 9864--noexperimental_bep_target_summary 9865--experimental_build_event_expand_filesets 9866--noexperimental_build_event_expand_filesets 9867--experimental_build_event_fully_resolve_fileset_symlinks 9868--noexperimental_build_event_fully_resolve_fileset_symlinks 9869--experimental_build_event_upload_max_retries= 9870--experimental_build_event_upload_retry_minimum_delay= 9871--experimental_build_event_upload_strategy= 9872--experimental_bzl_visibility 9873--noexperimental_bzl_visibility 9874--experimental_cancel_concurrent_tests 9875--noexperimental_cancel_concurrent_tests 9876--experimental_cc_shared_library 9877--noexperimental_cc_shared_library 9878--experimental_check_desugar_deps 9879--noexperimental_check_desugar_deps 9880--experimental_circuit_breaker_strategy={failure} 9881--experimental_collect_code_coverage_for_generated_files 9882--noexperimental_collect_code_coverage_for_generated_files 9883--experimental_collect_load_average_in_profiler 9884--noexperimental_collect_load_average_in_profiler 9885--experimental_collect_local_sandbox_action_metrics 9886--noexperimental_collect_local_sandbox_action_metrics 9887--experimental_collect_pressure_stall_indicators 9888--noexperimental_collect_pressure_stall_indicators 9889--experimental_collect_resource_estimation 9890--noexperimental_collect_resource_estimation 9891--experimental_collect_system_network_usage 9892--noexperimental_collect_system_network_usage 9893--experimental_collect_worker_data_in_profiler 9894--noexperimental_collect_worker_data_in_profiler 9895--experimental_command_profile 9896--noexperimental_command_profile 9897--experimental_convenience_symlinks={normal,clean,ignore,log_only} 9898--experimental_convenience_symlinks_bep_event 9899--noexperimental_convenience_symlinks_bep_event 9900--experimental_disable_external_package 9901--noexperimental_disable_external_package 9902--experimental_docker_image= 9903--experimental_docker_privileged 9904--noexperimental_docker_privileged 9905--experimental_docker_use_customized_images 9906--noexperimental_docker_use_customized_images 9907--experimental_docker_verbose 9908--noexperimental_docker_verbose 9909--experimental_downloader_config= 9910--experimental_dynamic_exclude_tools 9911--noexperimental_dynamic_exclude_tools 9912--experimental_dynamic_ignore_local_signals= 9913--experimental_dynamic_local_load_factor= 9914--experimental_dynamic_slow_remote_time= 9915--experimental_enable_android_migration_apis 9916--noexperimental_enable_android_migration_apis 9917--experimental_enable_docker_sandbox 9918--noexperimental_enable_docker_sandbox 9919--experimental_enable_scl_dialect 9920--noexperimental_enable_scl_dialect 9921--experimental_execution_log_file=path 9922--experimental_extra_action_filter= 9923--experimental_extra_action_top_level_only 9924--noexperimental_extra_action_top_level_only 9925--experimental_fetch_all_coverage_outputs 9926--noexperimental_fetch_all_coverage_outputs 9927--experimental_filter_library_jar_with_program_jar 9928--noexperimental_filter_library_jar_with_program_jar 9929--experimental_generate_llvm_lcov 9930--noexperimental_generate_llvm_lcov 9931--experimental_google_legacy_api 9932--noexperimental_google_legacy_api 9933--experimental_guard_against_concurrent_changes 9934--noexperimental_guard_against_concurrent_changes 9935--experimental_import_deps_checking={off,warning,error} 9936--experimental_include_xcode_execution_requirements 9937--noexperimental_include_xcode_execution_requirements 9938--experimental_inmemory_dotd_files 9939--noexperimental_inmemory_dotd_files 9940--experimental_inmemory_jdeps_files 9941--noexperimental_inmemory_jdeps_files 9942--experimental_inprocess_symlink_creation 9943--noexperimental_inprocess_symlink_creation 9944--experimental_isolated_extension_usages 9945--noexperimental_isolated_extension_usages 9946--experimental_j2objc_header_map 9947--noexperimental_j2objc_header_map 9948--experimental_j2objc_shorter_header_path 9949--noexperimental_j2objc_shorter_header_path 9950--experimental_java_classpath={off,javabuilder,bazel} 9951--experimental_java_library_export 9952--noexperimental_java_library_export 9953--experimental_limit_android_lint_to_android_constrained_java 9954--noexperimental_limit_android_lint_to_android_constrained_java 9955--experimental_materialize_param_files_directly 9956--noexperimental_materialize_param_files_directly 9957--experimental_objc_fastbuild_options= 9958--experimental_objc_include_scanning 9959--noexperimental_objc_include_scanning 9960--experimental_omitfp 9961--noexperimental_omitfp 9962--experimental_parallel_aquery_output 9963--noexperimental_parallel_aquery_output 9964--experimental_persistent_aar_extractor 9965--noexperimental_persistent_aar_extractor 9966--experimental_platform_in_output_dir 9967--noexperimental_platform_in_output_dir 9968--experimental_platforms_api 9969--noexperimental_platforms_api 9970--experimental_prefer_mutual_xcode 9971--noexperimental_prefer_mutual_xcode 9972--experimental_profile_additional_tasks= 9973--experimental_profile_include_primary_output 9974--noexperimental_profile_include_primary_output 9975--experimental_profile_include_target_label 9976--noexperimental_profile_include_target_label 9977--experimental_proto_descriptor_sets_include_source_info 9978--noexperimental_proto_descriptor_sets_include_source_info 9979--experimental_proto_extra_actions 9980--noexperimental_proto_extra_actions 9981--experimental_record_metrics_for_all_mnemonics 9982--noexperimental_record_metrics_for_all_mnemonics 9983--experimental_remotable_source_manifests 9984--noexperimental_remotable_source_manifests 9985--experimental_remote_cache_async 9986--noexperimental_remote_cache_async 9987--experimental_remote_cache_eviction_retries= 9988--experimental_remote_cache_lease_extension 9989--noexperimental_remote_cache_lease_extension 9990--experimental_remote_cache_ttl= 9991--experimental_remote_capture_corrupted_outputs=path 9992--experimental_remote_discard_merkle_trees 9993--noexperimental_remote_discard_merkle_trees 9994--experimental_remote_downloader= 9995--experimental_remote_downloader_local_fallback 9996--noexperimental_remote_downloader_local_fallback 9997--experimental_remote_execution_keepalive 9998--noexperimental_remote_execution_keepalive 9999--experimental_remote_failure_rate_threshold= 10000--experimental_remote_failure_window_interval= 10001--experimental_remote_mark_tool_inputs 10002--noexperimental_remote_mark_tool_inputs 10003--experimental_remote_merkle_tree_cache 10004--noexperimental_remote_merkle_tree_cache 10005--experimental_remote_merkle_tree_cache_size= 10006--experimental_remote_require_cached 10007--noexperimental_remote_require_cached 10008--experimental_repo_remote_exec 10009--noexperimental_repo_remote_exec 10010--experimental_repository_cache_hardlinks 10011--noexperimental_repository_cache_hardlinks 10012--experimental_repository_downloader_retries= 10013--experimental_repository_resolved_file= 10014--experimental_resolved_file_instead_of_workspace= 10015--experimental_retain_test_configuration_across_testonly 10016--noexperimental_retain_test_configuration_across_testonly 10017--experimental_run_android_lint_on_java_rules 10018--noexperimental_run_android_lint_on_java_rules 10019--experimental_run_bep_event_include_residue 10020--noexperimental_run_bep_event_include_residue 10021--experimental_sandbox_async_tree_delete_idle_threads= 10022--experimental_sandbox_memory_limit_mb= 10023--experimental_sandboxfs_map_symlink_targets 10024--noexperimental_sandboxfs_map_symlink_targets 10025--experimental_sandboxfs_path= 10026--experimental_save_feature_state 10027--noexperimental_save_feature_state 10028--experimental_scale_timeouts= 10029--experimental_shrink_worker_pool 10030--noexperimental_shrink_worker_pool 10031--experimental_sibling_repository_layout 10032--noexperimental_sibling_repository_layout 10033--experimental_spawn_scheduler 10034--experimental_split_coverage_postprocessing 10035--noexperimental_split_coverage_postprocessing 10036--experimental_split_xml_generation 10037--noexperimental_split_xml_generation 10038--experimental_starlark_cc_import 10039--noexperimental_starlark_cc_import 10040--experimental_stream_log_file_uploads 10041--noexperimental_stream_log_file_uploads 10042--experimental_strict_fileset_output 10043--noexperimental_strict_fileset_output 10044--experimental_strict_java_deps={off,warn,error,strict,default} 10045--experimental_total_worker_memory_limit_mb= 10046--experimental_ui_max_stdouterr_bytes= 10047--experimental_unsupported_and_brittle_include_scanning 10048--noexperimental_unsupported_and_brittle_include_scanning 10049--experimental_use_hermetic_linux_sandbox 10050--noexperimental_use_hermetic_linux_sandbox 10051--experimental_use_llvm_covmap 10052--noexperimental_use_llvm_covmap 10053--experimental_use_sandboxfs={auto,yes,no} 10054--noexperimental_use_sandboxfs 10055--experimental_use_semaphore_for_jobs 10056--noexperimental_use_semaphore_for_jobs 10057--experimental_use_validation_aspect 10058--noexperimental_use_validation_aspect 10059--experimental_use_windows_sandbox={auto,yes,no} 10060--noexperimental_use_windows_sandbox 10061--experimental_windows_sandbox_path= 10062--experimental_windows_watchfs 10063--noexperimental_windows_watchfs 10064--experimental_worker_allowlist= 10065--experimental_worker_as_resource 10066--noexperimental_worker_as_resource 10067--experimental_worker_cancellation 10068--noexperimental_worker_cancellation 10069--experimental_worker_for_repo_fetching={off,platform,virtual} 10070--experimental_worker_memory_limit_mb= 10071--experimental_worker_metrics_poll_interval= 10072--experimental_worker_multiplex_sandboxing 10073--noexperimental_worker_multiplex_sandboxing 10074--experimental_worker_sandbox_hardening 10075--noexperimental_worker_sandbox_hardening 10076--experimental_worker_strict_flagfiles 10077--noexperimental_worker_strict_flagfiles 10078--experimental_workspace_rules_log_file=path 10079--explain=path 10080--explicit_java_test_deps 10081--noexplicit_java_test_deps 10082--extra_execution_platforms= 10083--extra_toolchains= 10084--fat_apk_cpu= 10085--fat_apk_hwasan 10086--nofat_apk_hwasan 10087--fdo_instrument= 10088--fdo_optimize= 10089--fdo_prefetch_hints=label 10090--fdo_profile=label 10091--features= 10092--fission= 10093--flag_alias= 10094--flaky_test_attempts= 10095--force_pic 10096--noforce_pic 10097--gc_thrashing_limits= 10098--gc_thrashing_threshold= 10099--generate_json_trace_profile={auto,yes,no} 10100--nogenerate_json_trace_profile 10101--genrule_strategy= 10102--google_auth_scopes= 10103--google_credentials= 10104--google_default_credentials 10105--nogoogle_default_credentials 10106--grpc_keepalive_time= 10107--grpc_keepalive_timeout= 10108--grte_top=label 10109--heap_dump_on_oom 10110--noheap_dump_on_oom 10111--heuristically_drop_nodes 10112--noheuristically_drop_nodes 10113--high_priority_workers= 10114--host_action_env= 10115--host_compilation_mode={fastbuild,dbg,opt} 10116--host_compiler= 10117--host_conlyopt= 10118--host_copt= 10119--host_cpu= 10120--host_crosstool_top=label 10121--host_cxxopt= 10122--host_features= 10123--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 10124--host_grte_top=label 10125--host_java_launcher=label 10126--host_javacopt= 10127--host_jvmopt= 10128--host_linkopt= 10129--host_macos_minimum_os= 10130--host_per_file_copt= 10131--host_platform=label 10132--host_swiftcopt= 10133--http_connector_attempts= 10134--http_connector_retry_max_timeout= 10135--http_timeout_scaling= 10136--ignore_dev_dependency 10137--noignore_dev_dependency 10138--ignore_unsupported_sandboxing 10139--noignore_unsupported_sandboxing 10140--incompatible_allow_tags_propagation 10141--noincompatible_allow_tags_propagation 10142--incompatible_always_check_depset_elements 10143--noincompatible_always_check_depset_elements 10144--incompatible_always_include_files_in_data 10145--noincompatible_always_include_files_in_data 10146--incompatible_auto_exec_groups 10147--noincompatible_auto_exec_groups 10148--incompatible_check_sharding_support 10149--noincompatible_check_sharding_support 10150--incompatible_check_testonly_for_output_files 10151--noincompatible_check_testonly_for_output_files 10152--incompatible_check_visibility_for_toolchains 10153--noincompatible_check_visibility_for_toolchains 10154--incompatible_config_setting_private_default_visibility 10155--noincompatible_config_setting_private_default_visibility 10156--incompatible_default_to_explicit_init_py 10157--noincompatible_default_to_explicit_init_py 10158--incompatible_depset_for_java_output_source_jars 10159--noincompatible_depset_for_java_output_source_jars 10160--incompatible_depset_for_libraries_to_link_getter 10161--noincompatible_depset_for_libraries_to_link_getter 10162--incompatible_disable_native_android_rules 10163--noincompatible_disable_native_android_rules 10164--incompatible_disable_native_apple_binary_rule 10165--noincompatible_disable_native_apple_binary_rule 10166--incompatible_disable_non_executable_java_binary 10167--noincompatible_disable_non_executable_java_binary 10168--incompatible_disable_objc_library_transition 10169--noincompatible_disable_objc_library_transition 10170--incompatible_disable_starlark_host_transitions 10171--noincompatible_disable_starlark_host_transitions 10172--incompatible_disable_target_provider_fields 10173--noincompatible_disable_target_provider_fields 10174--incompatible_disallow_empty_glob 10175--noincompatible_disallow_empty_glob 10176--incompatible_disallow_legacy_py_provider 10177--noincompatible_disallow_legacy_py_provider 10178--incompatible_disallow_sdk_frameworks_attributes 10179--noincompatible_disallow_sdk_frameworks_attributes 10180--incompatible_disallow_struct_provider_syntax 10181--noincompatible_disallow_struct_provider_syntax 10182--incompatible_disallow_symlink_file_to_dir 10183--noincompatible_disallow_symlink_file_to_dir 10184--incompatible_do_not_split_linking_cmdline 10185--noincompatible_do_not_split_linking_cmdline 10186--incompatible_dont_enable_host_nonhost_crosstool_features 10187--noincompatible_dont_enable_host_nonhost_crosstool_features 10188--incompatible_dont_use_javasourceinfoprovider 10189--noincompatible_dont_use_javasourceinfoprovider 10190--incompatible_enable_android_toolchain_resolution 10191--noincompatible_enable_android_toolchain_resolution 10192--incompatible_enable_apple_toolchain_resolution 10193--noincompatible_enable_apple_toolchain_resolution 10194--incompatible_enable_proto_toolchain_resolution 10195--noincompatible_enable_proto_toolchain_resolution 10196--incompatible_enforce_config_setting_visibility 10197--noincompatible_enforce_config_setting_visibility 10198--incompatible_exclusive_test_sandboxed 10199--noincompatible_exclusive_test_sandboxed 10200--incompatible_existing_rules_immutable_view 10201--noincompatible_existing_rules_immutable_view 10202--incompatible_fail_on_unknown_attributes 10203--noincompatible_fail_on_unknown_attributes 10204--incompatible_fix_package_group_reporoot_syntax 10205--noincompatible_fix_package_group_reporoot_syntax 10206--incompatible_java_common_parameters 10207--noincompatible_java_common_parameters 10208--incompatible_legacy_local_fallback 10209--noincompatible_legacy_local_fallback 10210--incompatible_make_thinlto_command_lines_standalone 10211--noincompatible_make_thinlto_command_lines_standalone 10212--incompatible_merge_fixed_and_default_shell_env 10213--noincompatible_merge_fixed_and_default_shell_env 10214--incompatible_merge_genfiles_directory 10215--noincompatible_merge_genfiles_directory 10216--incompatible_new_actions_api 10217--noincompatible_new_actions_api 10218--incompatible_no_attr_license 10219--noincompatible_no_attr_license 10220--incompatible_no_implicit_file_export 10221--noincompatible_no_implicit_file_export 10222--incompatible_no_rule_outputs_param 10223--noincompatible_no_rule_outputs_param 10224--incompatible_objc_alwayslink_by_default 10225--noincompatible_objc_alwayslink_by_default 10226--incompatible_objc_provider_remove_linking_info 10227--noincompatible_objc_provider_remove_linking_info 10228--incompatible_package_group_has_public_syntax 10229--noincompatible_package_group_has_public_syntax 10230--incompatible_py2_outputs_are_suffixed 10231--noincompatible_py2_outputs_are_suffixed 10232--incompatible_py3_is_default 10233--noincompatible_py3_is_default 10234--incompatible_python_disable_py2 10235--noincompatible_python_disable_py2 10236--incompatible_python_disallow_native_rules 10237--noincompatible_python_disallow_native_rules 10238--incompatible_remote_build_event_upload_respect_no_cache 10239--noincompatible_remote_build_event_upload_respect_no_cache 10240--incompatible_remote_dangling_symlinks 10241--noincompatible_remote_dangling_symlinks 10242--incompatible_remote_disallow_symlink_in_tree_artifact 10243--noincompatible_remote_disallow_symlink_in_tree_artifact 10244--incompatible_remote_downloader_send_all_headers 10245--noincompatible_remote_downloader_send_all_headers 10246--incompatible_remote_output_paths_relative_to_input_root 10247--noincompatible_remote_output_paths_relative_to_input_root 10248--incompatible_remote_results_ignore_disk 10249--noincompatible_remote_results_ignore_disk 10250--incompatible_remote_symlinks 10251--noincompatible_remote_symlinks 10252--incompatible_remote_use_new_exit_code_for_lost_inputs 10253--noincompatible_remote_use_new_exit_code_for_lost_inputs 10254--incompatible_remove_legacy_whole_archive 10255--noincompatible_remove_legacy_whole_archive 10256--incompatible_require_ctx_in_configure_features 10257--noincompatible_require_ctx_in_configure_features 10258--incompatible_require_linker_input_cc_api 10259--noincompatible_require_linker_input_cc_api 10260--incompatible_run_shell_command_string 10261--noincompatible_run_shell_command_string 10262--incompatible_sandbox_hermetic_tmp 10263--noincompatible_sandbox_hermetic_tmp 10264--incompatible_stop_exporting_language_modules 10265--noincompatible_stop_exporting_language_modules 10266--incompatible_strict_action_env 10267--noincompatible_strict_action_env 10268--incompatible_struct_has_no_methods 10269--noincompatible_struct_has_no_methods 10270--incompatible_top_level_aspects_require_providers 10271--noincompatible_top_level_aspects_require_providers 10272--incompatible_unambiguous_label_stringification 10273--noincompatible_unambiguous_label_stringification 10274--incompatible_use_cc_configure_from_rules_cc 10275--noincompatible_use_cc_configure_from_rules_cc 10276--incompatible_use_host_features 10277--noincompatible_use_host_features 10278--incompatible_use_python_toolchains 10279--noincompatible_use_python_toolchains 10280--incompatible_validate_top_level_header_inclusions 10281--noincompatible_validate_top_level_header_inclusions 10282--incompatible_visibility_private_attributes_at_definition 10283--noincompatible_visibility_private_attributes_at_definition 10284--incremental 10285--noincremental 10286--incremental_dexing 10287--noincremental_dexing 10288--incremental_install_verbosity= 10289--instrument_test_targets 10290--noinstrument_test_targets 10291--instrumentation_filter= 10292--interface_shared_objects 10293--nointerface_shared_objects 10294--internal_spawn_scheduler 10295--nointernal_spawn_scheduler 10296--ios_memleaks 10297--noios_memleaks 10298--ios_minimum_os= 10299--ios_multi_cpus= 10300--ios_sdk_version= 10301--ios_signing_cert_name= 10302--ios_simulator_device= 10303--ios_simulator_version= 10304--j2objc_translation_flags= 10305--java_debug 10306--java_deps 10307--nojava_deps 10308--java_header_compilation 10309--nojava_header_compilation 10310--java_language_version= 10311--java_launcher=label 10312--java_runtime_version= 10313--javacopt= 10314--jobs= 10315--jvmopt= 10316--keep_going 10317--nokeep_going 10318--keep_state_after_build 10319--nokeep_state_after_build 10320--legacy_external_runfiles 10321--nolegacy_external_runfiles 10322--legacy_important_outputs 10323--nolegacy_important_outputs 10324--legacy_main_dex_list_generator=label 10325--legacy_whole_archive 10326--nolegacy_whole_archive 10327--linkopt= 10328--loading_phase_threads= 10329--local_cpu_resources= 10330--local_extra_resources= 10331--local_ram_resources= 10332--local_termination_grace_seconds= 10333--local_test_jobs= 10334--lockfile_mode={off,update,error} 10335--logging= 10336--ltobackendopt= 10337--ltoindexopt= 10338--macos_cpus= 10339--macos_minimum_os= 10340--macos_sdk_version= 10341--materialize_param_files 10342--nomaterialize_param_files 10343--max_computation_steps= 10344--max_config_changes_to_show= 10345--max_test_output_bytes= 10346--memory_profile=path 10347--memory_profile_stable_heap_parameters= 10348--memprof_profile=label 10349--minimum_os_version= 10350--mode={classic,classic_internal_test_do_not_use,skylark} 10351--modify_execution_info= 10352--nested_set_depth_limit= 10353--objc_debug_with_GLIBCXX 10354--noobjc_debug_with_GLIBCXX 10355--objc_enable_binary_stripping 10356--noobjc_enable_binary_stripping 10357--objc_generate_linkmap 10358--noobjc_generate_linkmap 10359--objc_use_dotd_pruning 10360--noobjc_use_dotd_pruning 10361--objccopt= 10362--optimizing_dexer=label 10363--output_filter= 10364--output_groups= 10365--override_module= 10366--override_repository= 10367--package_path= 10368--per_file_copt= 10369--per_file_ltobackendopt= 10370--persistent_android_dex_desugar 10371--persistent_android_resource_processor 10372--persistent_multiplex_android_dex_desugar 10373--persistent_multiplex_android_resource_processor 10374--persistent_multiplex_android_tools 10375--platform_mappings=path 10376--platform_suffix= 10377--platforms= 10378--plugin= 10379--process_headers_in_dependencies 10380--noprocess_headers_in_dependencies 10381--profile=path 10382--progress_in_terminal_title 10383--noprogress_in_terminal_title 10384--progress_report_interval= 10385--proguard_top=label 10386--propeller_optimize=label 10387--propeller_optimize_absolute_cc_profile= 10388--propeller_optimize_absolute_ld_profile= 10389--proto_compiler=label 10390--proto_toolchain_for_cc=label 10391--proto_toolchain_for_j2objc=label 10392--proto_toolchain_for_java=label 10393--proto_toolchain_for_javalite=label 10394--protocopt= 10395--python2_path= 10396--python3_path= 10397--python_native_rules_allowlist=label 10398--python_path= 10399--python_top=label 10400--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 10401--record_full_profiler_data 10402--norecord_full_profiler_data 10403--registry= 10404--remote_accept_cached 10405--noremote_accept_cached 10406--remote_build_event_upload={all,minimal} 10407--remote_bytestream_uri_prefix= 10408--remote_cache= 10409--remote_cache_compression 10410--noremote_cache_compression 10411--remote_cache_header= 10412--remote_default_exec_properties= 10413--remote_default_platform_properties= 10414--remote_download_all 10415--remote_download_minimal 10416--remote_download_outputs={all,minimal,toplevel} 10417--remote_download_regex= 10418--remote_download_symlink_template= 10419--remote_download_toplevel 10420--remote_downloader_header= 10421--remote_exec_header= 10422--remote_execution_priority= 10423--remote_executor= 10424--remote_grpc_log=path 10425--remote_header= 10426--remote_instance_name= 10427--remote_local_fallback 10428--noremote_local_fallback 10429--remote_local_fallback_strategy= 10430--remote_max_connections= 10431--remote_print_execution_messages={failure,success,all} 10432--remote_proxy= 10433--remote_result_cache_priority= 10434--remote_retries= 10435--remote_retry_max_delay= 10436--remote_timeout= 10437--remote_upload_local_results 10438--noremote_upload_local_results 10439--remote_verify_downloads 10440--noremote_verify_downloads 10441--repo_env= 10442--repository_cache=path 10443--repository_cache_urls_as_default_canonical_id 10444--norepository_cache_urls_as_default_canonical_id 10445--repository_disable_download 10446--norepository_disable_download 10447--reuse_sandbox_directories 10448--noreuse_sandbox_directories 10449--run_under= 10450--run_validations 10451--norun_validations 10452--runs_per_test= 10453--runs_per_test_detects_flakes 10454--noruns_per_test_detects_flakes 10455--sandbox_add_mount_pair= 10456--sandbox_base= 10457--sandbox_block_path= 10458--sandbox_debug 10459--nosandbox_debug 10460--sandbox_default_allow_network 10461--nosandbox_default_allow_network 10462--sandbox_explicit_pseudoterminal 10463--nosandbox_explicit_pseudoterminal 10464--sandbox_fake_hostname 10465--nosandbox_fake_hostname 10466--sandbox_fake_username 10467--nosandbox_fake_username 10468--sandbox_tmpfs_path= 10469--sandbox_writable_path= 10470--save_temps 10471--nosave_temps 10472--share_native_deps 10473--noshare_native_deps 10474--shell_executable=path 10475--show_loading_progress 10476--noshow_loading_progress 10477--show_progress 10478--noshow_progress 10479--show_progress_rate_limit= 10480--show_result= 10481--show_timestamps 10482--noshow_timestamps 10483--skip_incompatible_explicit_targets 10484--noskip_incompatible_explicit_targets 10485--skyframe_high_water_mark_full_gc_drops_per_invocation= 10486--skyframe_high_water_mark_minor_gc_drops_per_invocation= 10487--skyframe_high_water_mark_threshold= 10488--slim_profile 10489--noslim_profile 10490--spawn_strategy= 10491--split_apks 10492--nosplit_apks 10493--stamp 10494--nostamp 10495--starlark_cpu_profile= 10496--start={no,cold,warm,debug} 10497--start_app 10498--strategy= 10499--strategy_regexp= 10500--strict_filesets 10501--nostrict_filesets 10502--strict_proto_deps={off,warn,error,strict,default} 10503--strict_public_imports={off,warn,error,strict,default} 10504--strict_system_includes 10505--nostrict_system_includes 10506--strip={always,sometimes,never} 10507--stripopt= 10508--subcommands={true,pretty_print,false} 10509--swiftcopt= 10510--symlink_prefix= 10511--target_environment= 10512--target_pattern_file= 10513--target_platform_fallback= 10514--test_arg= 10515--test_env= 10516--test_filter= 10517--test_keep_going 10518--notest_keep_going 10519--test_lang_filters= 10520--test_output={summary,errors,all,streamed} 10521--test_result_expiration= 10522--test_runner_fail_fast 10523--notest_runner_fail_fast 10524--test_sharding_strategy= 10525--test_size_filters= 10526--test_strategy= 10527--test_summary={short,terse,detailed,none,testcase} 10528--test_tag_filters= 10529--test_timeout= 10530--test_timeout_filters= 10531--test_tmpdir=path 10532--tls_certificate= 10533--tls_client_certificate= 10534--tls_client_key= 10535--tool_java_language_version= 10536--tool_java_runtime_version= 10537--tool_tag= 10538--toolchain_resolution_debug= 10539--track_incremental_state 10540--notrack_incremental_state 10541--trim_test_configuration 10542--notrim_test_configuration 10543--tvos_cpus= 10544--tvos_minimum_os= 10545--tvos_sdk_version= 10546--ui_actions_shown= 10547--ui_event_filters= 10548--use_ijars 10549--nouse_ijars 10550--use_target_platform_for_tests 10551--nouse_target_platform_for_tests 10552--verbose_explanations 10553--noverbose_explanations 10554--verbose_failures 10555--noverbose_failures 10556--visionos_cpus= 10557--watchfs 10558--nowatchfs 10559--watchos_cpus= 10560--watchos_minimum_os= 10561--watchos_sdk_version= 10562--worker_extra_flag= 10563--worker_max_instances= 10564--worker_max_multiplex_instances= 10565--worker_multiplex 10566--noworker_multiplex 10567--worker_quit_after_build 10568--noworker_quit_after_build 10569--worker_sandboxing 10570--noworker_sandboxing 10571--worker_verbose 10572--noworker_verbose 10573--workspace_status_command=path 10574--xbinary_fdo=label 10575--xcode_version= 10576--xcode_version_config=label 10577--zip_undeclared_test_outputs 10578--nozip_undeclared_test_outputs 10579" 10580BAZEL_COMMAND_MOD_FLAGS=" 10581--allow_yanked_versions= 10582--announce_rc 10583--noannounce_rc 10584--attempt_to_print_relative_paths 10585--noattempt_to_print_relative_paths 10586--base_module= 10587--bep_maximum_open_remote_upload_files= 10588--bes_backend= 10589--bes_check_preceding_lifecycle_events 10590--nobes_check_preceding_lifecycle_events 10591--bes_header= 10592--bes_instance_name= 10593--bes_keywords= 10594--bes_lifecycle_events 10595--nobes_lifecycle_events 10596--bes_oom_finish_upload_timeout= 10597--bes_outerr_buffer_size= 10598--bes_outerr_chunk_size= 10599--bes_proxy= 10600--bes_results_url= 10601--bes_system_keywords= 10602--bes_timeout= 10603--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 10604--build_event_binary_file= 10605--build_event_binary_file_path_conversion 10606--nobuild_event_binary_file_path_conversion 10607--build_event_json_file= 10608--build_event_json_file_path_conversion 10609--nobuild_event_json_file_path_conversion 10610--build_event_max_named_set_of_file_entries= 10611--build_event_publish_all_actions 10612--nobuild_event_publish_all_actions 10613--build_event_text_file= 10614--build_event_text_file_path_conversion 10615--nobuild_event_text_file_path_conversion 10616--build_metadata= 10617--charset={utf8,ascii} 10618--check_bazel_compatibility={error,warning,off} 10619--check_bzl_visibility 10620--nocheck_bzl_visibility 10621--check_direct_dependencies={off,warning,error} 10622--color={yes,no,auto} 10623--config= 10624--credential_helper= 10625--credential_helper_cache_duration= 10626--credential_helper_timeout= 10627--curses={yes,no,auto} 10628--cycles 10629--nocycles 10630--deleted_packages= 10631--depth= 10632--disk_cache=path 10633--distdir= 10634--enable_bzlmod 10635--noenable_bzlmod 10636--enable_platform_specific_config 10637--noenable_platform_specific_config 10638--experimental_action_resource_set 10639--noexperimental_action_resource_set 10640--experimental_announce_profile_path 10641--noexperimental_announce_profile_path 10642--experimental_bep_target_summary 10643--noexperimental_bep_target_summary 10644--experimental_build_event_expand_filesets 10645--noexperimental_build_event_expand_filesets 10646--experimental_build_event_fully_resolve_fileset_symlinks 10647--noexperimental_build_event_fully_resolve_fileset_symlinks 10648--experimental_build_event_upload_max_retries= 10649--experimental_build_event_upload_retry_minimum_delay= 10650--experimental_build_event_upload_strategy= 10651--experimental_bzl_visibility 10652--noexperimental_bzl_visibility 10653--experimental_cc_shared_library 10654--noexperimental_cc_shared_library 10655--experimental_circuit_breaker_strategy={failure} 10656--experimental_collect_load_average_in_profiler 10657--noexperimental_collect_load_average_in_profiler 10658--experimental_collect_pressure_stall_indicators 10659--noexperimental_collect_pressure_stall_indicators 10660--experimental_collect_resource_estimation 10661--noexperimental_collect_resource_estimation 10662--experimental_collect_system_network_usage 10663--noexperimental_collect_system_network_usage 10664--experimental_collect_worker_data_in_profiler 10665--noexperimental_collect_worker_data_in_profiler 10666--experimental_command_profile 10667--noexperimental_command_profile 10668--experimental_disable_external_package 10669--noexperimental_disable_external_package 10670--experimental_downloader_config= 10671--experimental_enable_android_migration_apis 10672--noexperimental_enable_android_migration_apis 10673--experimental_enable_scl_dialect 10674--noexperimental_enable_scl_dialect 10675--experimental_google_legacy_api 10676--noexperimental_google_legacy_api 10677--experimental_guard_against_concurrent_changes 10678--noexperimental_guard_against_concurrent_changes 10679--experimental_isolated_extension_usages 10680--noexperimental_isolated_extension_usages 10681--experimental_java_library_export 10682--noexperimental_java_library_export 10683--experimental_platforms_api 10684--noexperimental_platforms_api 10685--experimental_profile_additional_tasks= 10686--experimental_profile_include_primary_output 10687--noexperimental_profile_include_primary_output 10688--experimental_profile_include_target_label 10689--noexperimental_profile_include_target_label 10690--experimental_record_metrics_for_all_mnemonics 10691--noexperimental_record_metrics_for_all_mnemonics 10692--experimental_remote_cache_async 10693--noexperimental_remote_cache_async 10694--experimental_remote_cache_lease_extension 10695--noexperimental_remote_cache_lease_extension 10696--experimental_remote_cache_ttl= 10697--experimental_remote_capture_corrupted_outputs=path 10698--experimental_remote_discard_merkle_trees 10699--noexperimental_remote_discard_merkle_trees 10700--experimental_remote_downloader= 10701--experimental_remote_downloader_local_fallback 10702--noexperimental_remote_downloader_local_fallback 10703--experimental_remote_execution_keepalive 10704--noexperimental_remote_execution_keepalive 10705--experimental_remote_failure_rate_threshold= 10706--experimental_remote_failure_window_interval= 10707--experimental_remote_mark_tool_inputs 10708--noexperimental_remote_mark_tool_inputs 10709--experimental_remote_merkle_tree_cache 10710--noexperimental_remote_merkle_tree_cache 10711--experimental_remote_merkle_tree_cache_size= 10712--experimental_remote_require_cached 10713--noexperimental_remote_require_cached 10714--experimental_repo_remote_exec 10715--noexperimental_repo_remote_exec 10716--experimental_repository_cache_hardlinks 10717--noexperimental_repository_cache_hardlinks 10718--experimental_repository_downloader_retries= 10719--experimental_resolved_file_instead_of_workspace= 10720--experimental_run_bep_event_include_residue 10721--noexperimental_run_bep_event_include_residue 10722--experimental_scale_timeouts= 10723--experimental_sibling_repository_layout 10724--noexperimental_sibling_repository_layout 10725--experimental_stream_log_file_uploads 10726--noexperimental_stream_log_file_uploads 10727--experimental_ui_max_stdouterr_bytes= 10728--experimental_windows_watchfs 10729--noexperimental_windows_watchfs 10730--experimental_worker_for_repo_fetching={off,platform,virtual} 10731--experimental_workspace_rules_log_file=path 10732--extension_filter= 10733--extension_info={hidden,usages,repos,all} 10734--extension_usages= 10735--from= 10736--gc_thrashing_limits= 10737--gc_thrashing_threshold= 10738--generate_json_trace_profile={auto,yes,no} 10739--nogenerate_json_trace_profile 10740--google_auth_scopes= 10741--google_credentials= 10742--google_default_credentials 10743--nogoogle_default_credentials 10744--grpc_keepalive_time= 10745--grpc_keepalive_timeout= 10746--heap_dump_on_oom 10747--noheap_dump_on_oom 10748--heuristically_drop_nodes 10749--noheuristically_drop_nodes 10750--http_connector_attempts= 10751--http_connector_retry_max_timeout= 10752--http_timeout_scaling= 10753--ignore_dev_dependency 10754--noignore_dev_dependency 10755--include_builtin 10756--noinclude_builtin 10757--include_unused 10758--noinclude_unused 10759--incompatible_allow_tags_propagation 10760--noincompatible_allow_tags_propagation 10761--incompatible_always_check_depset_elements 10762--noincompatible_always_check_depset_elements 10763--incompatible_config_setting_private_default_visibility 10764--noincompatible_config_setting_private_default_visibility 10765--incompatible_depset_for_java_output_source_jars 10766--noincompatible_depset_for_java_output_source_jars 10767--incompatible_depset_for_libraries_to_link_getter 10768--noincompatible_depset_for_libraries_to_link_getter 10769--incompatible_disable_non_executable_java_binary 10770--noincompatible_disable_non_executable_java_binary 10771--incompatible_disable_objc_library_transition 10772--noincompatible_disable_objc_library_transition 10773--incompatible_disable_starlark_host_transitions 10774--noincompatible_disable_starlark_host_transitions 10775--incompatible_disable_target_provider_fields 10776--noincompatible_disable_target_provider_fields 10777--incompatible_disallow_empty_glob 10778--noincompatible_disallow_empty_glob 10779--incompatible_disallow_struct_provider_syntax 10780--noincompatible_disallow_struct_provider_syntax 10781--incompatible_disallow_symlink_file_to_dir 10782--noincompatible_disallow_symlink_file_to_dir 10783--incompatible_do_not_split_linking_cmdline 10784--noincompatible_do_not_split_linking_cmdline 10785--incompatible_enable_proto_toolchain_resolution 10786--noincompatible_enable_proto_toolchain_resolution 10787--incompatible_enforce_config_setting_visibility 10788--noincompatible_enforce_config_setting_visibility 10789--incompatible_existing_rules_immutable_view 10790--noincompatible_existing_rules_immutable_view 10791--incompatible_fail_on_unknown_attributes 10792--noincompatible_fail_on_unknown_attributes 10793--incompatible_fix_package_group_reporoot_syntax 10794--noincompatible_fix_package_group_reporoot_syntax 10795--incompatible_java_common_parameters 10796--noincompatible_java_common_parameters 10797--incompatible_merge_fixed_and_default_shell_env 10798--noincompatible_merge_fixed_and_default_shell_env 10799--incompatible_new_actions_api 10800--noincompatible_new_actions_api 10801--incompatible_no_attr_license 10802--noincompatible_no_attr_license 10803--incompatible_no_implicit_file_export 10804--noincompatible_no_implicit_file_export 10805--incompatible_no_rule_outputs_param 10806--noincompatible_no_rule_outputs_param 10807--incompatible_objc_provider_remove_linking_info 10808--noincompatible_objc_provider_remove_linking_info 10809--incompatible_package_group_has_public_syntax 10810--noincompatible_package_group_has_public_syntax 10811--incompatible_remote_build_event_upload_respect_no_cache 10812--noincompatible_remote_build_event_upload_respect_no_cache 10813--incompatible_remote_dangling_symlinks 10814--noincompatible_remote_dangling_symlinks 10815--incompatible_remote_disallow_symlink_in_tree_artifact 10816--noincompatible_remote_disallow_symlink_in_tree_artifact 10817--incompatible_remote_downloader_send_all_headers 10818--noincompatible_remote_downloader_send_all_headers 10819--incompatible_remote_output_paths_relative_to_input_root 10820--noincompatible_remote_output_paths_relative_to_input_root 10821--incompatible_remote_results_ignore_disk 10822--noincompatible_remote_results_ignore_disk 10823--incompatible_remote_symlinks 10824--noincompatible_remote_symlinks 10825--incompatible_require_linker_input_cc_api 10826--noincompatible_require_linker_input_cc_api 10827--incompatible_run_shell_command_string 10828--noincompatible_run_shell_command_string 10829--incompatible_stop_exporting_language_modules 10830--noincompatible_stop_exporting_language_modules 10831--incompatible_struct_has_no_methods 10832--noincompatible_struct_has_no_methods 10833--incompatible_top_level_aspects_require_providers 10834--noincompatible_top_level_aspects_require_providers 10835--incompatible_unambiguous_label_stringification 10836--noincompatible_unambiguous_label_stringification 10837--incompatible_use_cc_configure_from_rules_cc 10838--noincompatible_use_cc_configure_from_rules_cc 10839--incompatible_visibility_private_attributes_at_definition 10840--noincompatible_visibility_private_attributes_at_definition 10841--keep_going 10842--nokeep_going 10843--keep_state_after_build 10844--nokeep_state_after_build 10845--legacy_important_outputs 10846--nolegacy_important_outputs 10847--loading_phase_threads= 10848--lockfile_mode={off,update,error} 10849--logging= 10850--max_computation_steps= 10851--memory_profile=path 10852--memory_profile_stable_heap_parameters= 10853--nested_set_depth_limit= 10854--output={text,json,graph} 10855--override_module= 10856--override_repository= 10857--package_path= 10858--profile=path 10859--progress_in_terminal_title 10860--noprogress_in_terminal_title 10861--record_full_profiler_data 10862--norecord_full_profiler_data 10863--registry= 10864--remote_accept_cached 10865--noremote_accept_cached 10866--remote_build_event_upload={all,minimal} 10867--remote_bytestream_uri_prefix= 10868--remote_cache= 10869--remote_cache_compression 10870--noremote_cache_compression 10871--remote_cache_header= 10872--remote_default_exec_properties= 10873--remote_default_platform_properties= 10874--remote_download_all 10875--remote_download_minimal 10876--remote_download_outputs={all,minimal,toplevel} 10877--remote_download_regex= 10878--remote_download_symlink_template= 10879--remote_download_toplevel 10880--remote_downloader_header= 10881--remote_exec_header= 10882--remote_execution_priority= 10883--remote_executor= 10884--remote_grpc_log=path 10885--remote_header= 10886--remote_instance_name= 10887--remote_local_fallback 10888--noremote_local_fallback 10889--remote_local_fallback_strategy= 10890--remote_max_connections= 10891--remote_print_execution_messages={failure,success,all} 10892--remote_proxy= 10893--remote_result_cache_priority= 10894--remote_retries= 10895--remote_retry_max_delay= 10896--remote_timeout= 10897--remote_upload_local_results 10898--noremote_upload_local_results 10899--remote_verify_downloads 10900--noremote_verify_downloads 10901--repo_env= 10902--repository_cache=path 10903--repository_cache_urls_as_default_canonical_id 10904--norepository_cache_urls_as_default_canonical_id 10905--repository_disable_download 10906--norepository_disable_download 10907--show_loading_progress 10908--noshow_loading_progress 10909--show_progress 10910--noshow_progress 10911--show_progress_rate_limit= 10912--show_timestamps 10913--noshow_timestamps 10914--skyframe_high_water_mark_full_gc_drops_per_invocation= 10915--skyframe_high_water_mark_minor_gc_drops_per_invocation= 10916--skyframe_high_water_mark_threshold= 10917--slim_profile 10918--noslim_profile 10919--starlark_cpu_profile= 10920--tls_certificate= 10921--tls_client_certificate= 10922--tls_client_key= 10923--tool_tag= 10924--track_incremental_state 10925--notrack_incremental_state 10926--ui_actions_shown= 10927--ui_event_filters= 10928--verbose 10929--noverbose 10930--watchfs 10931--nowatchfs 10932" 10933BAZEL_COMMAND_PRINT_ACTION_ARGUMENT="label" 10934BAZEL_COMMAND_PRINT_ACTION_FLAGS=" 10935--action_env= 10936--allow_analysis_cache_discard 10937--noallow_analysis_cache_discard 10938--allow_analysis_failures 10939--noallow_analysis_failures 10940--allow_yanked_versions= 10941--analysis_testing_deps_limit= 10942--android_compiler= 10943--android_cpu= 10944--android_crosstool_top=label 10945--android_databinding_use_androidx 10946--noandroid_databinding_use_androidx 10947--android_databinding_use_v3_4_args 10948--noandroid_databinding_use_v3_4_args 10949--android_dynamic_mode={off,default,fully} 10950--android_grte_top=label 10951--android_manifest_merger={legacy,android,force_android} 10952--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 10953--android_platforms= 10954--android_resource_shrinking 10955--noandroid_resource_shrinking 10956--android_sdk=label 10957--announce_rc 10958--noannounce_rc 10959--apk_signing_method={v1,v2,v1_v2,v4} 10960--apple_crosstool_top=label 10961--apple_generate_dsym 10962--noapple_generate_dsym 10963--aspects= 10964--aspects_parameters= 10965--attempt_to_print_relative_paths 10966--noattempt_to_print_relative_paths 10967--auto_cpu_environment_group=label 10968--auto_output_filter={none,all,packages,subpackages} 10969--bep_maximum_open_remote_upload_files= 10970--bes_backend= 10971--bes_check_preceding_lifecycle_events 10972--nobes_check_preceding_lifecycle_events 10973--bes_header= 10974--bes_instance_name= 10975--bes_keywords= 10976--bes_lifecycle_events 10977--nobes_lifecycle_events 10978--bes_oom_finish_upload_timeout= 10979--bes_outerr_buffer_size= 10980--bes_outerr_chunk_size= 10981--bes_proxy= 10982--bes_results_url= 10983--bes_system_keywords= 10984--bes_timeout= 10985--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 10986--break_build_on_parallel_dex2oat_failure 10987--nobreak_build_on_parallel_dex2oat_failure 10988--build 10989--nobuild 10990--build_event_binary_file= 10991--build_event_binary_file_path_conversion 10992--nobuild_event_binary_file_path_conversion 10993--build_event_json_file= 10994--build_event_json_file_path_conversion 10995--nobuild_event_json_file_path_conversion 10996--build_event_max_named_set_of_file_entries= 10997--build_event_publish_all_actions 10998--nobuild_event_publish_all_actions 10999--build_event_text_file= 11000--build_event_text_file_path_conversion 11001--nobuild_event_text_file_path_conversion 11002--build_manual_tests 11003--nobuild_manual_tests 11004--build_metadata= 11005--build_python_zip={auto,yes,no} 11006--nobuild_python_zip 11007--build_runfile_links 11008--nobuild_runfile_links 11009--build_runfile_manifests 11010--nobuild_runfile_manifests 11011--build_tag_filters= 11012--build_test_dwp 11013--nobuild_test_dwp 11014--build_tests_only 11015--nobuild_tests_only 11016--cache_test_results={auto,yes,no} 11017--nocache_test_results 11018--catalyst_cpus= 11019--cc_output_directory_tag= 11020--cc_proto_library_header_suffixes= 11021--cc_proto_library_source_suffixes= 11022--check_bazel_compatibility={error,warning,off} 11023--check_bzl_visibility 11024--nocheck_bzl_visibility 11025--check_direct_dependencies={off,warning,error} 11026--check_licenses 11027--nocheck_licenses 11028--check_tests_up_to_date 11029--nocheck_tests_up_to_date 11030--check_up_to_date 11031--nocheck_up_to_date 11032--check_visibility 11033--nocheck_visibility 11034--collect_code_coverage 11035--nocollect_code_coverage 11036--color={yes,no,auto} 11037--combined_report={none,lcov} 11038--compilation_mode={fastbuild,dbg,opt} 11039--compile_one_dependency 11040--nocompile_one_dependency 11041--compiler= 11042--config= 11043--conlyopt= 11044--copt= 11045--coverage_output_generator=label 11046--coverage_report_generator=label 11047--coverage_support=label 11048--cpu= 11049--credential_helper= 11050--credential_helper_cache_duration= 11051--credential_helper_timeout= 11052--crosstool_top=label 11053--cs_fdo_absolute_path= 11054--cs_fdo_instrument= 11055--cs_fdo_profile=label 11056--curses={yes,no,auto} 11057--custom_malloc=label 11058--cxxopt= 11059--debug_spawn_scheduler 11060--nodebug_spawn_scheduler 11061--define= 11062--deleted_packages= 11063--desugar_for_android 11064--nodesugar_for_android 11065--desugar_java8_libs 11066--nodesugar_java8_libs 11067--device_debug_entitlements 11068--nodevice_debug_entitlements 11069--discard_analysis_cache 11070--nodiscard_analysis_cache 11071--disk_cache=path 11072--distdir= 11073--dynamic_local_execution_delay= 11074--dynamic_local_strategy= 11075--dynamic_mode={off,default,fully} 11076--dynamic_remote_strategy= 11077--embed_label= 11078--enable_bzlmod 11079--noenable_bzlmod 11080--enable_fdo_profile_absolute_path 11081--noenable_fdo_profile_absolute_path 11082--enable_platform_specific_config 11083--noenable_platform_specific_config 11084--enable_runfiles={auto,yes,no} 11085--noenable_runfiles 11086--enforce_constraints 11087--noenforce_constraints 11088--execution_log_binary_file=path 11089--execution_log_json_file=path 11090--execution_log_sort 11091--noexecution_log_sort 11092--expand_test_suites 11093--noexpand_test_suites 11094--experimental_action_listener= 11095--experimental_action_resource_set 11096--noexperimental_action_resource_set 11097--experimental_add_exec_constraints_to_targets= 11098--experimental_android_compress_java_resources 11099--noexperimental_android_compress_java_resources 11100--experimental_android_databinding_v2 11101--noexperimental_android_databinding_v2 11102--experimental_android_resource_shrinking 11103--noexperimental_android_resource_shrinking 11104--experimental_android_rewrite_dexes_with_rex 11105--noexperimental_android_rewrite_dexes_with_rex 11106--experimental_android_use_parallel_dex2oat 11107--noexperimental_android_use_parallel_dex2oat 11108--experimental_announce_profile_path 11109--noexperimental_announce_profile_path 11110--experimental_bep_target_summary 11111--noexperimental_bep_target_summary 11112--experimental_build_event_expand_filesets 11113--noexperimental_build_event_expand_filesets 11114--experimental_build_event_fully_resolve_fileset_symlinks 11115--noexperimental_build_event_fully_resolve_fileset_symlinks 11116--experimental_build_event_upload_max_retries= 11117--experimental_build_event_upload_retry_minimum_delay= 11118--experimental_build_event_upload_strategy= 11119--experimental_bzl_visibility 11120--noexperimental_bzl_visibility 11121--experimental_cancel_concurrent_tests 11122--noexperimental_cancel_concurrent_tests 11123--experimental_cc_shared_library 11124--noexperimental_cc_shared_library 11125--experimental_check_desugar_deps 11126--noexperimental_check_desugar_deps 11127--experimental_circuit_breaker_strategy={failure} 11128--experimental_collect_code_coverage_for_generated_files 11129--noexperimental_collect_code_coverage_for_generated_files 11130--experimental_collect_load_average_in_profiler 11131--noexperimental_collect_load_average_in_profiler 11132--experimental_collect_local_sandbox_action_metrics 11133--noexperimental_collect_local_sandbox_action_metrics 11134--experimental_collect_pressure_stall_indicators 11135--noexperimental_collect_pressure_stall_indicators 11136--experimental_collect_resource_estimation 11137--noexperimental_collect_resource_estimation 11138--experimental_collect_system_network_usage 11139--noexperimental_collect_system_network_usage 11140--experimental_collect_worker_data_in_profiler 11141--noexperimental_collect_worker_data_in_profiler 11142--experimental_command_profile 11143--noexperimental_command_profile 11144--experimental_convenience_symlinks={normal,clean,ignore,log_only} 11145--experimental_convenience_symlinks_bep_event 11146--noexperimental_convenience_symlinks_bep_event 11147--experimental_disable_external_package 11148--noexperimental_disable_external_package 11149--experimental_docker_image= 11150--experimental_docker_privileged 11151--noexperimental_docker_privileged 11152--experimental_docker_use_customized_images 11153--noexperimental_docker_use_customized_images 11154--experimental_docker_verbose 11155--noexperimental_docker_verbose 11156--experimental_downloader_config= 11157--experimental_dynamic_exclude_tools 11158--noexperimental_dynamic_exclude_tools 11159--experimental_dynamic_ignore_local_signals= 11160--experimental_dynamic_local_load_factor= 11161--experimental_dynamic_slow_remote_time= 11162--experimental_enable_android_migration_apis 11163--noexperimental_enable_android_migration_apis 11164--experimental_enable_docker_sandbox 11165--noexperimental_enable_docker_sandbox 11166--experimental_enable_scl_dialect 11167--noexperimental_enable_scl_dialect 11168--experimental_execution_log_file=path 11169--experimental_extra_action_filter= 11170--experimental_extra_action_top_level_only 11171--noexperimental_extra_action_top_level_only 11172--experimental_fetch_all_coverage_outputs 11173--noexperimental_fetch_all_coverage_outputs 11174--experimental_filter_library_jar_with_program_jar 11175--noexperimental_filter_library_jar_with_program_jar 11176--experimental_generate_llvm_lcov 11177--noexperimental_generate_llvm_lcov 11178--experimental_google_legacy_api 11179--noexperimental_google_legacy_api 11180--experimental_guard_against_concurrent_changes 11181--noexperimental_guard_against_concurrent_changes 11182--experimental_import_deps_checking={off,warning,error} 11183--experimental_include_xcode_execution_requirements 11184--noexperimental_include_xcode_execution_requirements 11185--experimental_inmemory_dotd_files 11186--noexperimental_inmemory_dotd_files 11187--experimental_inmemory_jdeps_files 11188--noexperimental_inmemory_jdeps_files 11189--experimental_inprocess_symlink_creation 11190--noexperimental_inprocess_symlink_creation 11191--experimental_isolated_extension_usages 11192--noexperimental_isolated_extension_usages 11193--experimental_j2objc_header_map 11194--noexperimental_j2objc_header_map 11195--experimental_j2objc_shorter_header_path 11196--noexperimental_j2objc_shorter_header_path 11197--experimental_java_classpath={off,javabuilder,bazel} 11198--experimental_java_library_export 11199--noexperimental_java_library_export 11200--experimental_limit_android_lint_to_android_constrained_java 11201--noexperimental_limit_android_lint_to_android_constrained_java 11202--experimental_materialize_param_files_directly 11203--noexperimental_materialize_param_files_directly 11204--experimental_objc_fastbuild_options= 11205--experimental_objc_include_scanning 11206--noexperimental_objc_include_scanning 11207--experimental_omitfp 11208--noexperimental_omitfp 11209--experimental_parallel_aquery_output 11210--noexperimental_parallel_aquery_output 11211--experimental_persistent_aar_extractor 11212--noexperimental_persistent_aar_extractor 11213--experimental_platform_in_output_dir 11214--noexperimental_platform_in_output_dir 11215--experimental_platforms_api 11216--noexperimental_platforms_api 11217--experimental_prefer_mutual_xcode 11218--noexperimental_prefer_mutual_xcode 11219--experimental_profile_additional_tasks= 11220--experimental_profile_include_primary_output 11221--noexperimental_profile_include_primary_output 11222--experimental_profile_include_target_label 11223--noexperimental_profile_include_target_label 11224--experimental_proto_descriptor_sets_include_source_info 11225--noexperimental_proto_descriptor_sets_include_source_info 11226--experimental_proto_extra_actions 11227--noexperimental_proto_extra_actions 11228--experimental_record_metrics_for_all_mnemonics 11229--noexperimental_record_metrics_for_all_mnemonics 11230--experimental_remotable_source_manifests 11231--noexperimental_remotable_source_manifests 11232--experimental_remote_cache_async 11233--noexperimental_remote_cache_async 11234--experimental_remote_cache_eviction_retries= 11235--experimental_remote_cache_lease_extension 11236--noexperimental_remote_cache_lease_extension 11237--experimental_remote_cache_ttl= 11238--experimental_remote_capture_corrupted_outputs=path 11239--experimental_remote_discard_merkle_trees 11240--noexperimental_remote_discard_merkle_trees 11241--experimental_remote_downloader= 11242--experimental_remote_downloader_local_fallback 11243--noexperimental_remote_downloader_local_fallback 11244--experimental_remote_execution_keepalive 11245--noexperimental_remote_execution_keepalive 11246--experimental_remote_failure_rate_threshold= 11247--experimental_remote_failure_window_interval= 11248--experimental_remote_mark_tool_inputs 11249--noexperimental_remote_mark_tool_inputs 11250--experimental_remote_merkle_tree_cache 11251--noexperimental_remote_merkle_tree_cache 11252--experimental_remote_merkle_tree_cache_size= 11253--experimental_remote_require_cached 11254--noexperimental_remote_require_cached 11255--experimental_repo_remote_exec 11256--noexperimental_repo_remote_exec 11257--experimental_repository_cache_hardlinks 11258--noexperimental_repository_cache_hardlinks 11259--experimental_repository_downloader_retries= 11260--experimental_repository_resolved_file= 11261--experimental_resolved_file_instead_of_workspace= 11262--experimental_retain_test_configuration_across_testonly 11263--noexperimental_retain_test_configuration_across_testonly 11264--experimental_run_android_lint_on_java_rules 11265--noexperimental_run_android_lint_on_java_rules 11266--experimental_run_bep_event_include_residue 11267--noexperimental_run_bep_event_include_residue 11268--experimental_sandbox_async_tree_delete_idle_threads= 11269--experimental_sandbox_memory_limit_mb= 11270--experimental_sandboxfs_map_symlink_targets 11271--noexperimental_sandboxfs_map_symlink_targets 11272--experimental_sandboxfs_path= 11273--experimental_save_feature_state 11274--noexperimental_save_feature_state 11275--experimental_scale_timeouts= 11276--experimental_shrink_worker_pool 11277--noexperimental_shrink_worker_pool 11278--experimental_sibling_repository_layout 11279--noexperimental_sibling_repository_layout 11280--experimental_spawn_scheduler 11281--experimental_split_coverage_postprocessing 11282--noexperimental_split_coverage_postprocessing 11283--experimental_split_xml_generation 11284--noexperimental_split_xml_generation 11285--experimental_starlark_cc_import 11286--noexperimental_starlark_cc_import 11287--experimental_stream_log_file_uploads 11288--noexperimental_stream_log_file_uploads 11289--experimental_strict_fileset_output 11290--noexperimental_strict_fileset_output 11291--experimental_strict_java_deps={off,warn,error,strict,default} 11292--experimental_total_worker_memory_limit_mb= 11293--experimental_ui_max_stdouterr_bytes= 11294--experimental_unsupported_and_brittle_include_scanning 11295--noexperimental_unsupported_and_brittle_include_scanning 11296--experimental_use_hermetic_linux_sandbox 11297--noexperimental_use_hermetic_linux_sandbox 11298--experimental_use_llvm_covmap 11299--noexperimental_use_llvm_covmap 11300--experimental_use_sandboxfs={auto,yes,no} 11301--noexperimental_use_sandboxfs 11302--experimental_use_semaphore_for_jobs 11303--noexperimental_use_semaphore_for_jobs 11304--experimental_use_validation_aspect 11305--noexperimental_use_validation_aspect 11306--experimental_use_windows_sandbox={auto,yes,no} 11307--noexperimental_use_windows_sandbox 11308--experimental_windows_sandbox_path= 11309--experimental_windows_watchfs 11310--noexperimental_windows_watchfs 11311--experimental_worker_allowlist= 11312--experimental_worker_as_resource 11313--noexperimental_worker_as_resource 11314--experimental_worker_cancellation 11315--noexperimental_worker_cancellation 11316--experimental_worker_for_repo_fetching={off,platform,virtual} 11317--experimental_worker_memory_limit_mb= 11318--experimental_worker_metrics_poll_interval= 11319--experimental_worker_multiplex_sandboxing 11320--noexperimental_worker_multiplex_sandboxing 11321--experimental_worker_sandbox_hardening 11322--noexperimental_worker_sandbox_hardening 11323--experimental_worker_strict_flagfiles 11324--noexperimental_worker_strict_flagfiles 11325--experimental_workspace_rules_log_file=path 11326--explain=path 11327--explicit_java_test_deps 11328--noexplicit_java_test_deps 11329--extra_execution_platforms= 11330--extra_toolchains= 11331--fat_apk_cpu= 11332--fat_apk_hwasan 11333--nofat_apk_hwasan 11334--fdo_instrument= 11335--fdo_optimize= 11336--fdo_prefetch_hints=label 11337--fdo_profile=label 11338--features= 11339--fission= 11340--flag_alias= 11341--flaky_test_attempts= 11342--force_pic 11343--noforce_pic 11344--gc_thrashing_limits= 11345--gc_thrashing_threshold= 11346--generate_json_trace_profile={auto,yes,no} 11347--nogenerate_json_trace_profile 11348--genrule_strategy= 11349--google_auth_scopes= 11350--google_credentials= 11351--google_default_credentials 11352--nogoogle_default_credentials 11353--grpc_keepalive_time= 11354--grpc_keepalive_timeout= 11355--grte_top=label 11356--heap_dump_on_oom 11357--noheap_dump_on_oom 11358--heuristically_drop_nodes 11359--noheuristically_drop_nodes 11360--high_priority_workers= 11361--host_action_env= 11362--host_compilation_mode={fastbuild,dbg,opt} 11363--host_compiler= 11364--host_conlyopt= 11365--host_copt= 11366--host_cpu= 11367--host_crosstool_top=label 11368--host_cxxopt= 11369--host_features= 11370--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 11371--host_grte_top=label 11372--host_java_launcher=label 11373--host_javacopt= 11374--host_jvmopt= 11375--host_linkopt= 11376--host_macos_minimum_os= 11377--host_per_file_copt= 11378--host_platform=label 11379--host_swiftcopt= 11380--http_connector_attempts= 11381--http_connector_retry_max_timeout= 11382--http_timeout_scaling= 11383--ignore_dev_dependency 11384--noignore_dev_dependency 11385--ignore_unsupported_sandboxing 11386--noignore_unsupported_sandboxing 11387--incompatible_allow_tags_propagation 11388--noincompatible_allow_tags_propagation 11389--incompatible_always_check_depset_elements 11390--noincompatible_always_check_depset_elements 11391--incompatible_always_include_files_in_data 11392--noincompatible_always_include_files_in_data 11393--incompatible_auto_exec_groups 11394--noincompatible_auto_exec_groups 11395--incompatible_check_sharding_support 11396--noincompatible_check_sharding_support 11397--incompatible_check_testonly_for_output_files 11398--noincompatible_check_testonly_for_output_files 11399--incompatible_check_visibility_for_toolchains 11400--noincompatible_check_visibility_for_toolchains 11401--incompatible_config_setting_private_default_visibility 11402--noincompatible_config_setting_private_default_visibility 11403--incompatible_default_to_explicit_init_py 11404--noincompatible_default_to_explicit_init_py 11405--incompatible_depset_for_java_output_source_jars 11406--noincompatible_depset_for_java_output_source_jars 11407--incompatible_depset_for_libraries_to_link_getter 11408--noincompatible_depset_for_libraries_to_link_getter 11409--incompatible_disable_native_android_rules 11410--noincompatible_disable_native_android_rules 11411--incompatible_disable_native_apple_binary_rule 11412--noincompatible_disable_native_apple_binary_rule 11413--incompatible_disable_non_executable_java_binary 11414--noincompatible_disable_non_executable_java_binary 11415--incompatible_disable_objc_library_transition 11416--noincompatible_disable_objc_library_transition 11417--incompatible_disable_starlark_host_transitions 11418--noincompatible_disable_starlark_host_transitions 11419--incompatible_disable_target_provider_fields 11420--noincompatible_disable_target_provider_fields 11421--incompatible_disallow_empty_glob 11422--noincompatible_disallow_empty_glob 11423--incompatible_disallow_legacy_py_provider 11424--noincompatible_disallow_legacy_py_provider 11425--incompatible_disallow_sdk_frameworks_attributes 11426--noincompatible_disallow_sdk_frameworks_attributes 11427--incompatible_disallow_struct_provider_syntax 11428--noincompatible_disallow_struct_provider_syntax 11429--incompatible_disallow_symlink_file_to_dir 11430--noincompatible_disallow_symlink_file_to_dir 11431--incompatible_do_not_split_linking_cmdline 11432--noincompatible_do_not_split_linking_cmdline 11433--incompatible_dont_enable_host_nonhost_crosstool_features 11434--noincompatible_dont_enable_host_nonhost_crosstool_features 11435--incompatible_dont_use_javasourceinfoprovider 11436--noincompatible_dont_use_javasourceinfoprovider 11437--incompatible_enable_android_toolchain_resolution 11438--noincompatible_enable_android_toolchain_resolution 11439--incompatible_enable_apple_toolchain_resolution 11440--noincompatible_enable_apple_toolchain_resolution 11441--incompatible_enable_proto_toolchain_resolution 11442--noincompatible_enable_proto_toolchain_resolution 11443--incompatible_enforce_config_setting_visibility 11444--noincompatible_enforce_config_setting_visibility 11445--incompatible_exclusive_test_sandboxed 11446--noincompatible_exclusive_test_sandboxed 11447--incompatible_existing_rules_immutable_view 11448--noincompatible_existing_rules_immutable_view 11449--incompatible_fail_on_unknown_attributes 11450--noincompatible_fail_on_unknown_attributes 11451--incompatible_fix_package_group_reporoot_syntax 11452--noincompatible_fix_package_group_reporoot_syntax 11453--incompatible_java_common_parameters 11454--noincompatible_java_common_parameters 11455--incompatible_legacy_local_fallback 11456--noincompatible_legacy_local_fallback 11457--incompatible_make_thinlto_command_lines_standalone 11458--noincompatible_make_thinlto_command_lines_standalone 11459--incompatible_merge_fixed_and_default_shell_env 11460--noincompatible_merge_fixed_and_default_shell_env 11461--incompatible_merge_genfiles_directory 11462--noincompatible_merge_genfiles_directory 11463--incompatible_new_actions_api 11464--noincompatible_new_actions_api 11465--incompatible_no_attr_license 11466--noincompatible_no_attr_license 11467--incompatible_no_implicit_file_export 11468--noincompatible_no_implicit_file_export 11469--incompatible_no_rule_outputs_param 11470--noincompatible_no_rule_outputs_param 11471--incompatible_objc_alwayslink_by_default 11472--noincompatible_objc_alwayslink_by_default 11473--incompatible_objc_provider_remove_linking_info 11474--noincompatible_objc_provider_remove_linking_info 11475--incompatible_package_group_has_public_syntax 11476--noincompatible_package_group_has_public_syntax 11477--incompatible_py2_outputs_are_suffixed 11478--noincompatible_py2_outputs_are_suffixed 11479--incompatible_py3_is_default 11480--noincompatible_py3_is_default 11481--incompatible_python_disable_py2 11482--noincompatible_python_disable_py2 11483--incompatible_python_disallow_native_rules 11484--noincompatible_python_disallow_native_rules 11485--incompatible_remote_build_event_upload_respect_no_cache 11486--noincompatible_remote_build_event_upload_respect_no_cache 11487--incompatible_remote_dangling_symlinks 11488--noincompatible_remote_dangling_symlinks 11489--incompatible_remote_disallow_symlink_in_tree_artifact 11490--noincompatible_remote_disallow_symlink_in_tree_artifact 11491--incompatible_remote_downloader_send_all_headers 11492--noincompatible_remote_downloader_send_all_headers 11493--incompatible_remote_output_paths_relative_to_input_root 11494--noincompatible_remote_output_paths_relative_to_input_root 11495--incompatible_remote_results_ignore_disk 11496--noincompatible_remote_results_ignore_disk 11497--incompatible_remote_symlinks 11498--noincompatible_remote_symlinks 11499--incompatible_remote_use_new_exit_code_for_lost_inputs 11500--noincompatible_remote_use_new_exit_code_for_lost_inputs 11501--incompatible_remove_legacy_whole_archive 11502--noincompatible_remove_legacy_whole_archive 11503--incompatible_require_ctx_in_configure_features 11504--noincompatible_require_ctx_in_configure_features 11505--incompatible_require_linker_input_cc_api 11506--noincompatible_require_linker_input_cc_api 11507--incompatible_run_shell_command_string 11508--noincompatible_run_shell_command_string 11509--incompatible_sandbox_hermetic_tmp 11510--noincompatible_sandbox_hermetic_tmp 11511--incompatible_stop_exporting_language_modules 11512--noincompatible_stop_exporting_language_modules 11513--incompatible_strict_action_env 11514--noincompatible_strict_action_env 11515--incompatible_struct_has_no_methods 11516--noincompatible_struct_has_no_methods 11517--incompatible_top_level_aspects_require_providers 11518--noincompatible_top_level_aspects_require_providers 11519--incompatible_unambiguous_label_stringification 11520--noincompatible_unambiguous_label_stringification 11521--incompatible_use_cc_configure_from_rules_cc 11522--noincompatible_use_cc_configure_from_rules_cc 11523--incompatible_use_host_features 11524--noincompatible_use_host_features 11525--incompatible_use_python_toolchains 11526--noincompatible_use_python_toolchains 11527--incompatible_validate_top_level_header_inclusions 11528--noincompatible_validate_top_level_header_inclusions 11529--incompatible_visibility_private_attributes_at_definition 11530--noincompatible_visibility_private_attributes_at_definition 11531--incremental_dexing 11532--noincremental_dexing 11533--instrument_test_targets 11534--noinstrument_test_targets 11535--instrumentation_filter= 11536--interface_shared_objects 11537--nointerface_shared_objects 11538--internal_spawn_scheduler 11539--nointernal_spawn_scheduler 11540--ios_memleaks 11541--noios_memleaks 11542--ios_minimum_os= 11543--ios_multi_cpus= 11544--ios_sdk_version= 11545--ios_signing_cert_name= 11546--ios_simulator_device= 11547--ios_simulator_version= 11548--j2objc_translation_flags= 11549--java_debug 11550--java_deps 11551--nojava_deps 11552--java_header_compilation 11553--nojava_header_compilation 11554--java_language_version= 11555--java_launcher=label 11556--java_runtime_version= 11557--javacopt= 11558--jobs= 11559--jvmopt= 11560--keep_going 11561--nokeep_going 11562--keep_state_after_build 11563--nokeep_state_after_build 11564--legacy_external_runfiles 11565--nolegacy_external_runfiles 11566--legacy_important_outputs 11567--nolegacy_important_outputs 11568--legacy_main_dex_list_generator=label 11569--legacy_whole_archive 11570--nolegacy_whole_archive 11571--linkopt= 11572--loading_phase_threads= 11573--local_cpu_resources= 11574--local_extra_resources= 11575--local_ram_resources= 11576--local_termination_grace_seconds= 11577--local_test_jobs= 11578--lockfile_mode={off,update,error} 11579--logging= 11580--ltobackendopt= 11581--ltoindexopt= 11582--macos_cpus= 11583--macos_minimum_os= 11584--macos_sdk_version= 11585--materialize_param_files 11586--nomaterialize_param_files 11587--max_computation_steps= 11588--max_config_changes_to_show= 11589--max_test_output_bytes= 11590--memory_profile=path 11591--memory_profile_stable_heap_parameters= 11592--memprof_profile=label 11593--minimum_os_version= 11594--modify_execution_info= 11595--nested_set_depth_limit= 11596--objc_debug_with_GLIBCXX 11597--noobjc_debug_with_GLIBCXX 11598--objc_enable_binary_stripping 11599--noobjc_enable_binary_stripping 11600--objc_generate_linkmap 11601--noobjc_generate_linkmap 11602--objc_use_dotd_pruning 11603--noobjc_use_dotd_pruning 11604--objccopt= 11605--optimizing_dexer=label 11606--output_filter= 11607--output_groups= 11608--override_module= 11609--override_repository= 11610--package_path= 11611--per_file_copt= 11612--per_file_ltobackendopt= 11613--persistent_android_dex_desugar 11614--persistent_android_resource_processor 11615--persistent_multiplex_android_dex_desugar 11616--persistent_multiplex_android_resource_processor 11617--persistent_multiplex_android_tools 11618--platform_mappings=path 11619--platform_suffix= 11620--platforms= 11621--plugin= 11622--print_action_mnemonics= 11623--process_headers_in_dependencies 11624--noprocess_headers_in_dependencies 11625--profile=path 11626--progress_in_terminal_title 11627--noprogress_in_terminal_title 11628--progress_report_interval= 11629--proguard_top=label 11630--propeller_optimize=label 11631--propeller_optimize_absolute_cc_profile= 11632--propeller_optimize_absolute_ld_profile= 11633--proto_compiler=label 11634--proto_toolchain_for_cc=label 11635--proto_toolchain_for_j2objc=label 11636--proto_toolchain_for_java=label 11637--proto_toolchain_for_javalite=label 11638--protocopt= 11639--python2_path= 11640--python3_path= 11641--python_native_rules_allowlist=label 11642--python_path= 11643--python_top=label 11644--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 11645--record_full_profiler_data 11646--norecord_full_profiler_data 11647--registry= 11648--remote_accept_cached 11649--noremote_accept_cached 11650--remote_build_event_upload={all,minimal} 11651--remote_bytestream_uri_prefix= 11652--remote_cache= 11653--remote_cache_compression 11654--noremote_cache_compression 11655--remote_cache_header= 11656--remote_default_exec_properties= 11657--remote_default_platform_properties= 11658--remote_download_all 11659--remote_download_minimal 11660--remote_download_outputs={all,minimal,toplevel} 11661--remote_download_regex= 11662--remote_download_symlink_template= 11663--remote_download_toplevel 11664--remote_downloader_header= 11665--remote_exec_header= 11666--remote_execution_priority= 11667--remote_executor= 11668--remote_grpc_log=path 11669--remote_header= 11670--remote_instance_name= 11671--remote_local_fallback 11672--noremote_local_fallback 11673--remote_local_fallback_strategy= 11674--remote_max_connections= 11675--remote_print_execution_messages={failure,success,all} 11676--remote_proxy= 11677--remote_result_cache_priority= 11678--remote_retries= 11679--remote_retry_max_delay= 11680--remote_timeout= 11681--remote_upload_local_results 11682--noremote_upload_local_results 11683--remote_verify_downloads 11684--noremote_verify_downloads 11685--repo_env= 11686--repository_cache=path 11687--repository_cache_urls_as_default_canonical_id 11688--norepository_cache_urls_as_default_canonical_id 11689--repository_disable_download 11690--norepository_disable_download 11691--reuse_sandbox_directories 11692--noreuse_sandbox_directories 11693--run_under= 11694--run_validations 11695--norun_validations 11696--runs_per_test= 11697--runs_per_test_detects_flakes 11698--noruns_per_test_detects_flakes 11699--sandbox_add_mount_pair= 11700--sandbox_base= 11701--sandbox_block_path= 11702--sandbox_debug 11703--nosandbox_debug 11704--sandbox_default_allow_network 11705--nosandbox_default_allow_network 11706--sandbox_explicit_pseudoterminal 11707--nosandbox_explicit_pseudoterminal 11708--sandbox_fake_hostname 11709--nosandbox_fake_hostname 11710--sandbox_fake_username 11711--nosandbox_fake_username 11712--sandbox_tmpfs_path= 11713--sandbox_writable_path= 11714--save_temps 11715--nosave_temps 11716--share_native_deps 11717--noshare_native_deps 11718--shell_executable=path 11719--show_loading_progress 11720--noshow_loading_progress 11721--show_progress 11722--noshow_progress 11723--show_progress_rate_limit= 11724--show_result= 11725--show_timestamps 11726--noshow_timestamps 11727--skip_incompatible_explicit_targets 11728--noskip_incompatible_explicit_targets 11729--skyframe_high_water_mark_full_gc_drops_per_invocation= 11730--skyframe_high_water_mark_minor_gc_drops_per_invocation= 11731--skyframe_high_water_mark_threshold= 11732--slim_profile 11733--noslim_profile 11734--spawn_strategy= 11735--stamp 11736--nostamp 11737--starlark_cpu_profile= 11738--strategy= 11739--strategy_regexp= 11740--strict_filesets 11741--nostrict_filesets 11742--strict_proto_deps={off,warn,error,strict,default} 11743--strict_public_imports={off,warn,error,strict,default} 11744--strict_system_includes 11745--nostrict_system_includes 11746--strip={always,sometimes,never} 11747--stripopt= 11748--subcommands={true,pretty_print,false} 11749--swiftcopt= 11750--symlink_prefix= 11751--target_environment= 11752--target_pattern_file= 11753--target_platform_fallback= 11754--test_arg= 11755--test_env= 11756--test_filter= 11757--test_keep_going 11758--notest_keep_going 11759--test_lang_filters= 11760--test_output={summary,errors,all,streamed} 11761--test_result_expiration= 11762--test_runner_fail_fast 11763--notest_runner_fail_fast 11764--test_sharding_strategy= 11765--test_size_filters= 11766--test_strategy= 11767--test_summary={short,terse,detailed,none,testcase} 11768--test_tag_filters= 11769--test_timeout= 11770--test_timeout_filters= 11771--test_tmpdir=path 11772--tls_certificate= 11773--tls_client_certificate= 11774--tls_client_key= 11775--tool_java_language_version= 11776--tool_java_runtime_version= 11777--tool_tag= 11778--toolchain_resolution_debug= 11779--track_incremental_state 11780--notrack_incremental_state 11781--trim_test_configuration 11782--notrim_test_configuration 11783--tvos_cpus= 11784--tvos_minimum_os= 11785--tvos_sdk_version= 11786--ui_actions_shown= 11787--ui_event_filters= 11788--use_ijars 11789--nouse_ijars 11790--use_target_platform_for_tests 11791--nouse_target_platform_for_tests 11792--verbose_explanations 11793--noverbose_explanations 11794--verbose_failures 11795--noverbose_failures 11796--visionos_cpus= 11797--watchfs 11798--nowatchfs 11799--watchos_cpus= 11800--watchos_minimum_os= 11801--watchos_sdk_version= 11802--worker_extra_flag= 11803--worker_max_instances= 11804--worker_max_multiplex_instances= 11805--worker_multiplex 11806--noworker_multiplex 11807--worker_quit_after_build 11808--noworker_quit_after_build 11809--worker_sandboxing 11810--noworker_sandboxing 11811--worker_verbose 11812--noworker_verbose 11813--workspace_status_command=path 11814--xbinary_fdo=label 11815--xcode_version= 11816--xcode_version_config=label 11817--zip_undeclared_test_outputs 11818--nozip_undeclared_test_outputs 11819" 11820BAZEL_COMMAND_QUERY_ARGUMENT="label" 11821BAZEL_COMMAND_QUERY_FLAGS=" 11822--allow_yanked_versions= 11823--announce_rc 11824--noannounce_rc 11825--aspect_deps={off,conservative,precise} 11826--attempt_to_print_relative_paths 11827--noattempt_to_print_relative_paths 11828--bep_maximum_open_remote_upload_files= 11829--bes_backend= 11830--bes_check_preceding_lifecycle_events 11831--nobes_check_preceding_lifecycle_events 11832--bes_header= 11833--bes_instance_name= 11834--bes_keywords= 11835--bes_lifecycle_events 11836--nobes_lifecycle_events 11837--bes_oom_finish_upload_timeout= 11838--bes_outerr_buffer_size= 11839--bes_outerr_chunk_size= 11840--bes_proxy= 11841--bes_results_url= 11842--bes_system_keywords= 11843--bes_timeout= 11844--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 11845--build_event_binary_file= 11846--build_event_binary_file_path_conversion 11847--nobuild_event_binary_file_path_conversion 11848--build_event_json_file= 11849--build_event_json_file_path_conversion 11850--nobuild_event_json_file_path_conversion 11851--build_event_max_named_set_of_file_entries= 11852--build_event_publish_all_actions 11853--nobuild_event_publish_all_actions 11854--build_event_text_file= 11855--build_event_text_file_path_conversion 11856--nobuild_event_text_file_path_conversion 11857--build_metadata= 11858--check_bazel_compatibility={error,warning,off} 11859--check_bzl_visibility 11860--nocheck_bzl_visibility 11861--check_direct_dependencies={off,warning,error} 11862--color={yes,no,auto} 11863--config= 11864--consistent_labels 11865--noconsistent_labels 11866--credential_helper= 11867--credential_helper_cache_duration= 11868--credential_helper_timeout= 11869--curses={yes,no,auto} 11870--deleted_packages= 11871--disk_cache=path 11872--distdir= 11873--enable_bzlmod 11874--noenable_bzlmod 11875--enable_platform_specific_config 11876--noenable_platform_specific_config 11877--experimental_action_resource_set 11878--noexperimental_action_resource_set 11879--experimental_announce_profile_path 11880--noexperimental_announce_profile_path 11881--experimental_bep_target_summary 11882--noexperimental_bep_target_summary 11883--experimental_build_event_expand_filesets 11884--noexperimental_build_event_expand_filesets 11885--experimental_build_event_fully_resolve_fileset_symlinks 11886--noexperimental_build_event_fully_resolve_fileset_symlinks 11887--experimental_build_event_upload_max_retries= 11888--experimental_build_event_upload_retry_minimum_delay= 11889--experimental_build_event_upload_strategy= 11890--experimental_bzl_visibility 11891--noexperimental_bzl_visibility 11892--experimental_cc_shared_library 11893--noexperimental_cc_shared_library 11894--experimental_circuit_breaker_strategy={failure} 11895--experimental_collect_load_average_in_profiler 11896--noexperimental_collect_load_average_in_profiler 11897--experimental_collect_pressure_stall_indicators 11898--noexperimental_collect_pressure_stall_indicators 11899--experimental_collect_resource_estimation 11900--noexperimental_collect_resource_estimation 11901--experimental_collect_system_network_usage 11902--noexperimental_collect_system_network_usage 11903--experimental_collect_worker_data_in_profiler 11904--noexperimental_collect_worker_data_in_profiler 11905--experimental_command_profile 11906--noexperimental_command_profile 11907--experimental_disable_external_package 11908--noexperimental_disable_external_package 11909--experimental_downloader_config= 11910--experimental_enable_android_migration_apis 11911--noexperimental_enable_android_migration_apis 11912--experimental_enable_scl_dialect 11913--noexperimental_enable_scl_dialect 11914--experimental_google_legacy_api 11915--noexperimental_google_legacy_api 11916--experimental_graphless_query={auto,yes,no} 11917--noexperimental_graphless_query 11918--experimental_guard_against_concurrent_changes 11919--noexperimental_guard_against_concurrent_changes 11920--experimental_isolated_extension_usages 11921--noexperimental_isolated_extension_usages 11922--experimental_java_library_export 11923--noexperimental_java_library_export 11924--experimental_platforms_api 11925--noexperimental_platforms_api 11926--experimental_profile_additional_tasks= 11927--experimental_profile_include_primary_output 11928--noexperimental_profile_include_primary_output 11929--experimental_profile_include_target_label 11930--noexperimental_profile_include_target_label 11931--experimental_record_metrics_for_all_mnemonics 11932--noexperimental_record_metrics_for_all_mnemonics 11933--experimental_remote_cache_async 11934--noexperimental_remote_cache_async 11935--experimental_remote_cache_lease_extension 11936--noexperimental_remote_cache_lease_extension 11937--experimental_remote_cache_ttl= 11938--experimental_remote_capture_corrupted_outputs=path 11939--experimental_remote_discard_merkle_trees 11940--noexperimental_remote_discard_merkle_trees 11941--experimental_remote_downloader= 11942--experimental_remote_downloader_local_fallback 11943--noexperimental_remote_downloader_local_fallback 11944--experimental_remote_execution_keepalive 11945--noexperimental_remote_execution_keepalive 11946--experimental_remote_failure_rate_threshold= 11947--experimental_remote_failure_window_interval= 11948--experimental_remote_mark_tool_inputs 11949--noexperimental_remote_mark_tool_inputs 11950--experimental_remote_merkle_tree_cache 11951--noexperimental_remote_merkle_tree_cache 11952--experimental_remote_merkle_tree_cache_size= 11953--experimental_remote_require_cached 11954--noexperimental_remote_require_cached 11955--experimental_repo_remote_exec 11956--noexperimental_repo_remote_exec 11957--experimental_repository_cache_hardlinks 11958--noexperimental_repository_cache_hardlinks 11959--experimental_repository_downloader_retries= 11960--experimental_repository_resolved_file= 11961--experimental_resolved_file_instead_of_workspace= 11962--experimental_run_bep_event_include_residue 11963--noexperimental_run_bep_event_include_residue 11964--experimental_scale_timeouts= 11965--experimental_sibling_repository_layout 11966--noexperimental_sibling_repository_layout 11967--experimental_stream_log_file_uploads 11968--noexperimental_stream_log_file_uploads 11969--experimental_ui_max_stdouterr_bytes= 11970--experimental_windows_watchfs 11971--noexperimental_windows_watchfs 11972--experimental_worker_for_repo_fetching={off,platform,virtual} 11973--experimental_workspace_rules_log_file=path 11974--gc_thrashing_limits= 11975--gc_thrashing_threshold= 11976--generate_json_trace_profile={auto,yes,no} 11977--nogenerate_json_trace_profile 11978--google_auth_scopes= 11979--google_credentials= 11980--google_default_credentials 11981--nogoogle_default_credentials 11982--graph:conditional_edges_limit= 11983--graph:factored 11984--nograph:factored 11985--graph:node_limit= 11986--grpc_keepalive_time= 11987--grpc_keepalive_timeout= 11988--heap_dump_on_oom 11989--noheap_dump_on_oom 11990--heuristically_drop_nodes 11991--noheuristically_drop_nodes 11992--http_connector_attempts= 11993--http_connector_retry_max_timeout= 11994--http_timeout_scaling= 11995--ignore_dev_dependency 11996--noignore_dev_dependency 11997--implicit_deps 11998--noimplicit_deps 11999--include_aspects 12000--noinclude_aspects 12001--incompatible_allow_tags_propagation 12002--noincompatible_allow_tags_propagation 12003--incompatible_always_check_depset_elements 12004--noincompatible_always_check_depset_elements 12005--incompatible_config_setting_private_default_visibility 12006--noincompatible_config_setting_private_default_visibility 12007--incompatible_depset_for_java_output_source_jars 12008--noincompatible_depset_for_java_output_source_jars 12009--incompatible_depset_for_libraries_to_link_getter 12010--noincompatible_depset_for_libraries_to_link_getter 12011--incompatible_disable_non_executable_java_binary 12012--noincompatible_disable_non_executable_java_binary 12013--incompatible_disable_objc_library_transition 12014--noincompatible_disable_objc_library_transition 12015--incompatible_disable_starlark_host_transitions 12016--noincompatible_disable_starlark_host_transitions 12017--incompatible_disable_target_provider_fields 12018--noincompatible_disable_target_provider_fields 12019--incompatible_disallow_empty_glob 12020--noincompatible_disallow_empty_glob 12021--incompatible_disallow_struct_provider_syntax 12022--noincompatible_disallow_struct_provider_syntax 12023--incompatible_disallow_symlink_file_to_dir 12024--noincompatible_disallow_symlink_file_to_dir 12025--incompatible_do_not_split_linking_cmdline 12026--noincompatible_do_not_split_linking_cmdline 12027--incompatible_enable_proto_toolchain_resolution 12028--noincompatible_enable_proto_toolchain_resolution 12029--incompatible_enforce_config_setting_visibility 12030--noincompatible_enforce_config_setting_visibility 12031--incompatible_existing_rules_immutable_view 12032--noincompatible_existing_rules_immutable_view 12033--incompatible_fail_on_unknown_attributes 12034--noincompatible_fail_on_unknown_attributes 12035--incompatible_fix_package_group_reporoot_syntax 12036--noincompatible_fix_package_group_reporoot_syntax 12037--incompatible_java_common_parameters 12038--noincompatible_java_common_parameters 12039--incompatible_lexicographical_output 12040--noincompatible_lexicographical_output 12041--incompatible_merge_fixed_and_default_shell_env 12042--noincompatible_merge_fixed_and_default_shell_env 12043--incompatible_new_actions_api 12044--noincompatible_new_actions_api 12045--incompatible_no_attr_license 12046--noincompatible_no_attr_license 12047--incompatible_no_implicit_file_export 12048--noincompatible_no_implicit_file_export 12049--incompatible_no_rule_outputs_param 12050--noincompatible_no_rule_outputs_param 12051--incompatible_objc_provider_remove_linking_info 12052--noincompatible_objc_provider_remove_linking_info 12053--incompatible_package_group_has_public_syntax 12054--noincompatible_package_group_has_public_syntax 12055--incompatible_package_group_includes_double_slash 12056--noincompatible_package_group_includes_double_slash 12057--incompatible_remote_build_event_upload_respect_no_cache 12058--noincompatible_remote_build_event_upload_respect_no_cache 12059--incompatible_remote_dangling_symlinks 12060--noincompatible_remote_dangling_symlinks 12061--incompatible_remote_disallow_symlink_in_tree_artifact 12062--noincompatible_remote_disallow_symlink_in_tree_artifact 12063--incompatible_remote_downloader_send_all_headers 12064--noincompatible_remote_downloader_send_all_headers 12065--incompatible_remote_output_paths_relative_to_input_root 12066--noincompatible_remote_output_paths_relative_to_input_root 12067--incompatible_remote_results_ignore_disk 12068--noincompatible_remote_results_ignore_disk 12069--incompatible_remote_symlinks 12070--noincompatible_remote_symlinks 12071--incompatible_require_linker_input_cc_api 12072--noincompatible_require_linker_input_cc_api 12073--incompatible_run_shell_command_string 12074--noincompatible_run_shell_command_string 12075--incompatible_stop_exporting_language_modules 12076--noincompatible_stop_exporting_language_modules 12077--incompatible_struct_has_no_methods 12078--noincompatible_struct_has_no_methods 12079--incompatible_top_level_aspects_require_providers 12080--noincompatible_top_level_aspects_require_providers 12081--incompatible_unambiguous_label_stringification 12082--noincompatible_unambiguous_label_stringification 12083--incompatible_use_cc_configure_from_rules_cc 12084--noincompatible_use_cc_configure_from_rules_cc 12085--incompatible_visibility_private_attributes_at_definition 12086--noincompatible_visibility_private_attributes_at_definition 12087--infer_universe_scope 12088--noinfer_universe_scope 12089--keep_going 12090--nokeep_going 12091--keep_state_after_build 12092--nokeep_state_after_build 12093--legacy_important_outputs 12094--nolegacy_important_outputs 12095--line_terminator_null 12096--noline_terminator_null 12097--loading_phase_threads= 12098--lockfile_mode={off,update,error} 12099--logging= 12100--max_computation_steps= 12101--memory_profile=path 12102--memory_profile_stable_heap_parameters= 12103--nested_set_depth_limit= 12104--nodep_deps 12105--nonodep_deps 12106--noorder_results 12107--null 12108--order_output={no,deps,auto,full} 12109--order_results 12110--output= 12111--override_module= 12112--override_repository= 12113--package_path= 12114--profile=path 12115--progress_in_terminal_title 12116--noprogress_in_terminal_title 12117--proto:default_values 12118--noproto:default_values 12119--proto:definition_stack 12120--noproto:definition_stack 12121--proto:flatten_selects 12122--noproto:flatten_selects 12123--proto:include_attribute_source_aspects 12124--noproto:include_attribute_source_aspects 12125--proto:include_synthetic_attribute_hash 12126--noproto:include_synthetic_attribute_hash 12127--proto:instantiation_stack 12128--noproto:instantiation_stack 12129--proto:locations 12130--noproto:locations 12131--proto:output_rule_attrs= 12132--proto:rule_inputs_and_outputs 12133--noproto:rule_inputs_and_outputs 12134--query_file= 12135--record_full_profiler_data 12136--norecord_full_profiler_data 12137--registry= 12138--relative_locations 12139--norelative_locations 12140--remote_accept_cached 12141--noremote_accept_cached 12142--remote_build_event_upload={all,minimal} 12143--remote_bytestream_uri_prefix= 12144--remote_cache= 12145--remote_cache_compression 12146--noremote_cache_compression 12147--remote_cache_header= 12148--remote_default_exec_properties= 12149--remote_default_platform_properties= 12150--remote_download_all 12151--remote_download_minimal 12152--remote_download_outputs={all,minimal,toplevel} 12153--remote_download_regex= 12154--remote_download_symlink_template= 12155--remote_download_toplevel 12156--remote_downloader_header= 12157--remote_exec_header= 12158--remote_execution_priority= 12159--remote_executor= 12160--remote_grpc_log=path 12161--remote_header= 12162--remote_instance_name= 12163--remote_local_fallback 12164--noremote_local_fallback 12165--remote_local_fallback_strategy= 12166--remote_max_connections= 12167--remote_print_execution_messages={failure,success,all} 12168--remote_proxy= 12169--remote_result_cache_priority= 12170--remote_retries= 12171--remote_retry_max_delay= 12172--remote_timeout= 12173--remote_upload_local_results 12174--noremote_upload_local_results 12175--remote_verify_downloads 12176--noremote_verify_downloads 12177--repo_env= 12178--repository_cache=path 12179--repository_cache_urls_as_default_canonical_id 12180--norepository_cache_urls_as_default_canonical_id 12181--repository_disable_download 12182--norepository_disable_download 12183--show_loading_progress 12184--noshow_loading_progress 12185--show_progress 12186--noshow_progress 12187--show_progress_rate_limit= 12188--show_timestamps 12189--noshow_timestamps 12190--skyframe_high_water_mark_full_gc_drops_per_invocation= 12191--skyframe_high_water_mark_minor_gc_drops_per_invocation= 12192--skyframe_high_water_mark_threshold= 12193--slim_profile 12194--noslim_profile 12195--starlark_cpu_profile= 12196--strict_test_suite 12197--nostrict_test_suite 12198--tls_certificate= 12199--tls_client_certificate= 12200--tls_client_key= 12201--tool_deps 12202--notool_deps 12203--tool_tag= 12204--track_incremental_state 12205--notrack_incremental_state 12206--ui_actions_shown= 12207--ui_event_filters= 12208--universe_scope= 12209--watchfs 12210--nowatchfs 12211--xml:default_values 12212--noxml:default_values 12213--xml:line_numbers 12214--noxml:line_numbers 12215" 12216BAZEL_COMMAND_RUN_ARGUMENT="label-bin" 12217BAZEL_COMMAND_RUN_FLAGS=" 12218--action_env= 12219--allow_analysis_cache_discard 12220--noallow_analysis_cache_discard 12221--allow_analysis_failures 12222--noallow_analysis_failures 12223--allow_yanked_versions= 12224--analysis_testing_deps_limit= 12225--android_compiler= 12226--android_cpu= 12227--android_crosstool_top=label 12228--android_databinding_use_androidx 12229--noandroid_databinding_use_androidx 12230--android_databinding_use_v3_4_args 12231--noandroid_databinding_use_v3_4_args 12232--android_dynamic_mode={off,default,fully} 12233--android_grte_top=label 12234--android_manifest_merger={legacy,android,force_android} 12235--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 12236--android_platforms= 12237--android_resource_shrinking 12238--noandroid_resource_shrinking 12239--android_sdk=label 12240--announce_rc 12241--noannounce_rc 12242--apk_signing_method={v1,v2,v1_v2,v4} 12243--apple_crosstool_top=label 12244--apple_generate_dsym 12245--noapple_generate_dsym 12246--aspects= 12247--aspects_parameters= 12248--attempt_to_print_relative_paths 12249--noattempt_to_print_relative_paths 12250--auto_cpu_environment_group=label 12251--auto_output_filter={none,all,packages,subpackages} 12252--bep_maximum_open_remote_upload_files= 12253--bes_backend= 12254--bes_check_preceding_lifecycle_events 12255--nobes_check_preceding_lifecycle_events 12256--bes_header= 12257--bes_instance_name= 12258--bes_keywords= 12259--bes_lifecycle_events 12260--nobes_lifecycle_events 12261--bes_oom_finish_upload_timeout= 12262--bes_outerr_buffer_size= 12263--bes_outerr_chunk_size= 12264--bes_proxy= 12265--bes_results_url= 12266--bes_system_keywords= 12267--bes_timeout= 12268--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 12269--break_build_on_parallel_dex2oat_failure 12270--nobreak_build_on_parallel_dex2oat_failure 12271--build 12272--nobuild 12273--build_event_binary_file= 12274--build_event_binary_file_path_conversion 12275--nobuild_event_binary_file_path_conversion 12276--build_event_json_file= 12277--build_event_json_file_path_conversion 12278--nobuild_event_json_file_path_conversion 12279--build_event_max_named_set_of_file_entries= 12280--build_event_publish_all_actions 12281--nobuild_event_publish_all_actions 12282--build_event_text_file= 12283--build_event_text_file_path_conversion 12284--nobuild_event_text_file_path_conversion 12285--build_manual_tests 12286--nobuild_manual_tests 12287--build_metadata= 12288--build_python_zip={auto,yes,no} 12289--nobuild_python_zip 12290--build_runfile_links 12291--nobuild_runfile_links 12292--build_runfile_manifests 12293--nobuild_runfile_manifests 12294--build_tag_filters= 12295--build_test_dwp 12296--nobuild_test_dwp 12297--build_tests_only 12298--nobuild_tests_only 12299--cache_test_results={auto,yes,no} 12300--nocache_test_results 12301--catalyst_cpus= 12302--cc_output_directory_tag= 12303--cc_proto_library_header_suffixes= 12304--cc_proto_library_source_suffixes= 12305--check_bazel_compatibility={error,warning,off} 12306--check_bzl_visibility 12307--nocheck_bzl_visibility 12308--check_direct_dependencies={off,warning,error} 12309--check_licenses 12310--nocheck_licenses 12311--check_tests_up_to_date 12312--nocheck_tests_up_to_date 12313--check_up_to_date 12314--nocheck_up_to_date 12315--check_visibility 12316--nocheck_visibility 12317--collect_code_coverage 12318--nocollect_code_coverage 12319--color={yes,no,auto} 12320--combined_report={none,lcov} 12321--compilation_mode={fastbuild,dbg,opt} 12322--compile_one_dependency 12323--nocompile_one_dependency 12324--compiler= 12325--config= 12326--conlyopt= 12327--copt= 12328--coverage_output_generator=label 12329--coverage_report_generator=label 12330--coverage_support=label 12331--cpu= 12332--credential_helper= 12333--credential_helper_cache_duration= 12334--credential_helper_timeout= 12335--crosstool_top=label 12336--cs_fdo_absolute_path= 12337--cs_fdo_instrument= 12338--cs_fdo_profile=label 12339--curses={yes,no,auto} 12340--custom_malloc=label 12341--cxxopt= 12342--debug_spawn_scheduler 12343--nodebug_spawn_scheduler 12344--define= 12345--deleted_packages= 12346--desugar_for_android 12347--nodesugar_for_android 12348--desugar_java8_libs 12349--nodesugar_java8_libs 12350--device_debug_entitlements 12351--nodevice_debug_entitlements 12352--discard_analysis_cache 12353--nodiscard_analysis_cache 12354--disk_cache=path 12355--distdir= 12356--dynamic_local_execution_delay= 12357--dynamic_local_strategy= 12358--dynamic_mode={off,default,fully} 12359--dynamic_remote_strategy= 12360--embed_label= 12361--enable_bzlmod 12362--noenable_bzlmod 12363--enable_fdo_profile_absolute_path 12364--noenable_fdo_profile_absolute_path 12365--enable_platform_specific_config 12366--noenable_platform_specific_config 12367--enable_runfiles={auto,yes,no} 12368--noenable_runfiles 12369--enforce_constraints 12370--noenforce_constraints 12371--execution_log_binary_file=path 12372--execution_log_json_file=path 12373--execution_log_sort 12374--noexecution_log_sort 12375--expand_test_suites 12376--noexpand_test_suites 12377--experimental_action_listener= 12378--experimental_action_resource_set 12379--noexperimental_action_resource_set 12380--experimental_add_exec_constraints_to_targets= 12381--experimental_android_compress_java_resources 12382--noexperimental_android_compress_java_resources 12383--experimental_android_databinding_v2 12384--noexperimental_android_databinding_v2 12385--experimental_android_resource_shrinking 12386--noexperimental_android_resource_shrinking 12387--experimental_android_rewrite_dexes_with_rex 12388--noexperimental_android_rewrite_dexes_with_rex 12389--experimental_android_use_parallel_dex2oat 12390--noexperimental_android_use_parallel_dex2oat 12391--experimental_announce_profile_path 12392--noexperimental_announce_profile_path 12393--experimental_bep_target_summary 12394--noexperimental_bep_target_summary 12395--experimental_build_event_expand_filesets 12396--noexperimental_build_event_expand_filesets 12397--experimental_build_event_fully_resolve_fileset_symlinks 12398--noexperimental_build_event_fully_resolve_fileset_symlinks 12399--experimental_build_event_upload_max_retries= 12400--experimental_build_event_upload_retry_minimum_delay= 12401--experimental_build_event_upload_strategy= 12402--experimental_bzl_visibility 12403--noexperimental_bzl_visibility 12404--experimental_cancel_concurrent_tests 12405--noexperimental_cancel_concurrent_tests 12406--experimental_cc_shared_library 12407--noexperimental_cc_shared_library 12408--experimental_check_desugar_deps 12409--noexperimental_check_desugar_deps 12410--experimental_circuit_breaker_strategy={failure} 12411--experimental_collect_code_coverage_for_generated_files 12412--noexperimental_collect_code_coverage_for_generated_files 12413--experimental_collect_load_average_in_profiler 12414--noexperimental_collect_load_average_in_profiler 12415--experimental_collect_local_sandbox_action_metrics 12416--noexperimental_collect_local_sandbox_action_metrics 12417--experimental_collect_pressure_stall_indicators 12418--noexperimental_collect_pressure_stall_indicators 12419--experimental_collect_resource_estimation 12420--noexperimental_collect_resource_estimation 12421--experimental_collect_system_network_usage 12422--noexperimental_collect_system_network_usage 12423--experimental_collect_worker_data_in_profiler 12424--noexperimental_collect_worker_data_in_profiler 12425--experimental_command_profile 12426--noexperimental_command_profile 12427--experimental_convenience_symlinks={normal,clean,ignore,log_only} 12428--experimental_convenience_symlinks_bep_event 12429--noexperimental_convenience_symlinks_bep_event 12430--experimental_disable_external_package 12431--noexperimental_disable_external_package 12432--experimental_docker_image= 12433--experimental_docker_privileged 12434--noexperimental_docker_privileged 12435--experimental_docker_use_customized_images 12436--noexperimental_docker_use_customized_images 12437--experimental_docker_verbose 12438--noexperimental_docker_verbose 12439--experimental_downloader_config= 12440--experimental_dynamic_exclude_tools 12441--noexperimental_dynamic_exclude_tools 12442--experimental_dynamic_ignore_local_signals= 12443--experimental_dynamic_local_load_factor= 12444--experimental_dynamic_slow_remote_time= 12445--experimental_enable_android_migration_apis 12446--noexperimental_enable_android_migration_apis 12447--experimental_enable_docker_sandbox 12448--noexperimental_enable_docker_sandbox 12449--experimental_enable_scl_dialect 12450--noexperimental_enable_scl_dialect 12451--experimental_execution_log_file=path 12452--experimental_extra_action_filter= 12453--experimental_extra_action_top_level_only 12454--noexperimental_extra_action_top_level_only 12455--experimental_fetch_all_coverage_outputs 12456--noexperimental_fetch_all_coverage_outputs 12457--experimental_filter_library_jar_with_program_jar 12458--noexperimental_filter_library_jar_with_program_jar 12459--experimental_generate_llvm_lcov 12460--noexperimental_generate_llvm_lcov 12461--experimental_google_legacy_api 12462--noexperimental_google_legacy_api 12463--experimental_guard_against_concurrent_changes 12464--noexperimental_guard_against_concurrent_changes 12465--experimental_import_deps_checking={off,warning,error} 12466--experimental_include_xcode_execution_requirements 12467--noexperimental_include_xcode_execution_requirements 12468--experimental_inmemory_dotd_files 12469--noexperimental_inmemory_dotd_files 12470--experimental_inmemory_jdeps_files 12471--noexperimental_inmemory_jdeps_files 12472--experimental_inprocess_symlink_creation 12473--noexperimental_inprocess_symlink_creation 12474--experimental_isolated_extension_usages 12475--noexperimental_isolated_extension_usages 12476--experimental_j2objc_header_map 12477--noexperimental_j2objc_header_map 12478--experimental_j2objc_shorter_header_path 12479--noexperimental_j2objc_shorter_header_path 12480--experimental_java_classpath={off,javabuilder,bazel} 12481--experimental_java_library_export 12482--noexperimental_java_library_export 12483--experimental_limit_android_lint_to_android_constrained_java 12484--noexperimental_limit_android_lint_to_android_constrained_java 12485--experimental_materialize_param_files_directly 12486--noexperimental_materialize_param_files_directly 12487--experimental_objc_fastbuild_options= 12488--experimental_objc_include_scanning 12489--noexperimental_objc_include_scanning 12490--experimental_omitfp 12491--noexperimental_omitfp 12492--experimental_parallel_aquery_output 12493--noexperimental_parallel_aquery_output 12494--experimental_persistent_aar_extractor 12495--noexperimental_persistent_aar_extractor 12496--experimental_platform_in_output_dir 12497--noexperimental_platform_in_output_dir 12498--experimental_platforms_api 12499--noexperimental_platforms_api 12500--experimental_prefer_mutual_xcode 12501--noexperimental_prefer_mutual_xcode 12502--experimental_profile_additional_tasks= 12503--experimental_profile_include_primary_output 12504--noexperimental_profile_include_primary_output 12505--experimental_profile_include_target_label 12506--noexperimental_profile_include_target_label 12507--experimental_proto_descriptor_sets_include_source_info 12508--noexperimental_proto_descriptor_sets_include_source_info 12509--experimental_proto_extra_actions 12510--noexperimental_proto_extra_actions 12511--experimental_record_metrics_for_all_mnemonics 12512--noexperimental_record_metrics_for_all_mnemonics 12513--experimental_remotable_source_manifests 12514--noexperimental_remotable_source_manifests 12515--experimental_remote_cache_async 12516--noexperimental_remote_cache_async 12517--experimental_remote_cache_eviction_retries= 12518--experimental_remote_cache_lease_extension 12519--noexperimental_remote_cache_lease_extension 12520--experimental_remote_cache_ttl= 12521--experimental_remote_capture_corrupted_outputs=path 12522--experimental_remote_discard_merkle_trees 12523--noexperimental_remote_discard_merkle_trees 12524--experimental_remote_downloader= 12525--experimental_remote_downloader_local_fallback 12526--noexperimental_remote_downloader_local_fallback 12527--experimental_remote_execution_keepalive 12528--noexperimental_remote_execution_keepalive 12529--experimental_remote_failure_rate_threshold= 12530--experimental_remote_failure_window_interval= 12531--experimental_remote_mark_tool_inputs 12532--noexperimental_remote_mark_tool_inputs 12533--experimental_remote_merkle_tree_cache 12534--noexperimental_remote_merkle_tree_cache 12535--experimental_remote_merkle_tree_cache_size= 12536--experimental_remote_require_cached 12537--noexperimental_remote_require_cached 12538--experimental_repo_remote_exec 12539--noexperimental_repo_remote_exec 12540--experimental_repository_cache_hardlinks 12541--noexperimental_repository_cache_hardlinks 12542--experimental_repository_downloader_retries= 12543--experimental_repository_resolved_file= 12544--experimental_resolved_file_instead_of_workspace= 12545--experimental_retain_test_configuration_across_testonly 12546--noexperimental_retain_test_configuration_across_testonly 12547--experimental_run_android_lint_on_java_rules 12548--noexperimental_run_android_lint_on_java_rules 12549--experimental_run_bep_event_include_residue 12550--noexperimental_run_bep_event_include_residue 12551--experimental_sandbox_async_tree_delete_idle_threads= 12552--experimental_sandbox_memory_limit_mb= 12553--experimental_sandboxfs_map_symlink_targets 12554--noexperimental_sandboxfs_map_symlink_targets 12555--experimental_sandboxfs_path= 12556--experimental_save_feature_state 12557--noexperimental_save_feature_state 12558--experimental_scale_timeouts= 12559--experimental_shrink_worker_pool 12560--noexperimental_shrink_worker_pool 12561--experimental_sibling_repository_layout 12562--noexperimental_sibling_repository_layout 12563--experimental_spawn_scheduler 12564--experimental_split_coverage_postprocessing 12565--noexperimental_split_coverage_postprocessing 12566--experimental_split_xml_generation 12567--noexperimental_split_xml_generation 12568--experimental_starlark_cc_import 12569--noexperimental_starlark_cc_import 12570--experimental_stream_log_file_uploads 12571--noexperimental_stream_log_file_uploads 12572--experimental_strict_fileset_output 12573--noexperimental_strict_fileset_output 12574--experimental_strict_java_deps={off,warn,error,strict,default} 12575--experimental_total_worker_memory_limit_mb= 12576--experimental_ui_max_stdouterr_bytes= 12577--experimental_unsupported_and_brittle_include_scanning 12578--noexperimental_unsupported_and_brittle_include_scanning 12579--experimental_use_hermetic_linux_sandbox 12580--noexperimental_use_hermetic_linux_sandbox 12581--experimental_use_llvm_covmap 12582--noexperimental_use_llvm_covmap 12583--experimental_use_sandboxfs={auto,yes,no} 12584--noexperimental_use_sandboxfs 12585--experimental_use_semaphore_for_jobs 12586--noexperimental_use_semaphore_for_jobs 12587--experimental_use_validation_aspect 12588--noexperimental_use_validation_aspect 12589--experimental_use_windows_sandbox={auto,yes,no} 12590--noexperimental_use_windows_sandbox 12591--experimental_windows_sandbox_path= 12592--experimental_windows_watchfs 12593--noexperimental_windows_watchfs 12594--experimental_worker_allowlist= 12595--experimental_worker_as_resource 12596--noexperimental_worker_as_resource 12597--experimental_worker_cancellation 12598--noexperimental_worker_cancellation 12599--experimental_worker_for_repo_fetching={off,platform,virtual} 12600--experimental_worker_memory_limit_mb= 12601--experimental_worker_metrics_poll_interval= 12602--experimental_worker_multiplex_sandboxing 12603--noexperimental_worker_multiplex_sandboxing 12604--experimental_worker_sandbox_hardening 12605--noexperimental_worker_sandbox_hardening 12606--experimental_worker_strict_flagfiles 12607--noexperimental_worker_strict_flagfiles 12608--experimental_workspace_rules_log_file=path 12609--explain=path 12610--explicit_java_test_deps 12611--noexplicit_java_test_deps 12612--extra_execution_platforms= 12613--extra_toolchains= 12614--fat_apk_cpu= 12615--fat_apk_hwasan 12616--nofat_apk_hwasan 12617--fdo_instrument= 12618--fdo_optimize= 12619--fdo_prefetch_hints=label 12620--fdo_profile=label 12621--features= 12622--fission= 12623--flag_alias= 12624--flaky_test_attempts= 12625--force_pic 12626--noforce_pic 12627--gc_thrashing_limits= 12628--gc_thrashing_threshold= 12629--generate_json_trace_profile={auto,yes,no} 12630--nogenerate_json_trace_profile 12631--genrule_strategy= 12632--google_auth_scopes= 12633--google_credentials= 12634--google_default_credentials 12635--nogoogle_default_credentials 12636--grpc_keepalive_time= 12637--grpc_keepalive_timeout= 12638--grte_top=label 12639--heap_dump_on_oom 12640--noheap_dump_on_oom 12641--heuristically_drop_nodes 12642--noheuristically_drop_nodes 12643--high_priority_workers= 12644--host_action_env= 12645--host_compilation_mode={fastbuild,dbg,opt} 12646--host_compiler= 12647--host_conlyopt= 12648--host_copt= 12649--host_cpu= 12650--host_crosstool_top=label 12651--host_cxxopt= 12652--host_features= 12653--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 12654--host_grte_top=label 12655--host_java_launcher=label 12656--host_javacopt= 12657--host_jvmopt= 12658--host_linkopt= 12659--host_macos_minimum_os= 12660--host_per_file_copt= 12661--host_platform=label 12662--host_swiftcopt= 12663--http_connector_attempts= 12664--http_connector_retry_max_timeout= 12665--http_timeout_scaling= 12666--ignore_dev_dependency 12667--noignore_dev_dependency 12668--ignore_unsupported_sandboxing 12669--noignore_unsupported_sandboxing 12670--incompatible_allow_tags_propagation 12671--noincompatible_allow_tags_propagation 12672--incompatible_always_check_depset_elements 12673--noincompatible_always_check_depset_elements 12674--incompatible_always_include_files_in_data 12675--noincompatible_always_include_files_in_data 12676--incompatible_auto_exec_groups 12677--noincompatible_auto_exec_groups 12678--incompatible_check_sharding_support 12679--noincompatible_check_sharding_support 12680--incompatible_check_testonly_for_output_files 12681--noincompatible_check_testonly_for_output_files 12682--incompatible_check_visibility_for_toolchains 12683--noincompatible_check_visibility_for_toolchains 12684--incompatible_config_setting_private_default_visibility 12685--noincompatible_config_setting_private_default_visibility 12686--incompatible_default_to_explicit_init_py 12687--noincompatible_default_to_explicit_init_py 12688--incompatible_depset_for_java_output_source_jars 12689--noincompatible_depset_for_java_output_source_jars 12690--incompatible_depset_for_libraries_to_link_getter 12691--noincompatible_depset_for_libraries_to_link_getter 12692--incompatible_disable_native_android_rules 12693--noincompatible_disable_native_android_rules 12694--incompatible_disable_native_apple_binary_rule 12695--noincompatible_disable_native_apple_binary_rule 12696--incompatible_disable_non_executable_java_binary 12697--noincompatible_disable_non_executable_java_binary 12698--incompatible_disable_objc_library_transition 12699--noincompatible_disable_objc_library_transition 12700--incompatible_disable_starlark_host_transitions 12701--noincompatible_disable_starlark_host_transitions 12702--incompatible_disable_target_provider_fields 12703--noincompatible_disable_target_provider_fields 12704--incompatible_disallow_empty_glob 12705--noincompatible_disallow_empty_glob 12706--incompatible_disallow_legacy_py_provider 12707--noincompatible_disallow_legacy_py_provider 12708--incompatible_disallow_sdk_frameworks_attributes 12709--noincompatible_disallow_sdk_frameworks_attributes 12710--incompatible_disallow_struct_provider_syntax 12711--noincompatible_disallow_struct_provider_syntax 12712--incompatible_disallow_symlink_file_to_dir 12713--noincompatible_disallow_symlink_file_to_dir 12714--incompatible_do_not_split_linking_cmdline 12715--noincompatible_do_not_split_linking_cmdline 12716--incompatible_dont_enable_host_nonhost_crosstool_features 12717--noincompatible_dont_enable_host_nonhost_crosstool_features 12718--incompatible_dont_use_javasourceinfoprovider 12719--noincompatible_dont_use_javasourceinfoprovider 12720--incompatible_enable_android_toolchain_resolution 12721--noincompatible_enable_android_toolchain_resolution 12722--incompatible_enable_apple_toolchain_resolution 12723--noincompatible_enable_apple_toolchain_resolution 12724--incompatible_enable_proto_toolchain_resolution 12725--noincompatible_enable_proto_toolchain_resolution 12726--incompatible_enforce_config_setting_visibility 12727--noincompatible_enforce_config_setting_visibility 12728--incompatible_exclusive_test_sandboxed 12729--noincompatible_exclusive_test_sandboxed 12730--incompatible_existing_rules_immutable_view 12731--noincompatible_existing_rules_immutable_view 12732--incompatible_fail_on_unknown_attributes 12733--noincompatible_fail_on_unknown_attributes 12734--incompatible_fix_package_group_reporoot_syntax 12735--noincompatible_fix_package_group_reporoot_syntax 12736--incompatible_java_common_parameters 12737--noincompatible_java_common_parameters 12738--incompatible_legacy_local_fallback 12739--noincompatible_legacy_local_fallback 12740--incompatible_make_thinlto_command_lines_standalone 12741--noincompatible_make_thinlto_command_lines_standalone 12742--incompatible_merge_fixed_and_default_shell_env 12743--noincompatible_merge_fixed_and_default_shell_env 12744--incompatible_merge_genfiles_directory 12745--noincompatible_merge_genfiles_directory 12746--incompatible_new_actions_api 12747--noincompatible_new_actions_api 12748--incompatible_no_attr_license 12749--noincompatible_no_attr_license 12750--incompatible_no_implicit_file_export 12751--noincompatible_no_implicit_file_export 12752--incompatible_no_rule_outputs_param 12753--noincompatible_no_rule_outputs_param 12754--incompatible_objc_alwayslink_by_default 12755--noincompatible_objc_alwayslink_by_default 12756--incompatible_objc_provider_remove_linking_info 12757--noincompatible_objc_provider_remove_linking_info 12758--incompatible_package_group_has_public_syntax 12759--noincompatible_package_group_has_public_syntax 12760--incompatible_py2_outputs_are_suffixed 12761--noincompatible_py2_outputs_are_suffixed 12762--incompatible_py3_is_default 12763--noincompatible_py3_is_default 12764--incompatible_python_disable_py2 12765--noincompatible_python_disable_py2 12766--incompatible_python_disallow_native_rules 12767--noincompatible_python_disallow_native_rules 12768--incompatible_remote_build_event_upload_respect_no_cache 12769--noincompatible_remote_build_event_upload_respect_no_cache 12770--incompatible_remote_dangling_symlinks 12771--noincompatible_remote_dangling_symlinks 12772--incompatible_remote_disallow_symlink_in_tree_artifact 12773--noincompatible_remote_disallow_symlink_in_tree_artifact 12774--incompatible_remote_downloader_send_all_headers 12775--noincompatible_remote_downloader_send_all_headers 12776--incompatible_remote_output_paths_relative_to_input_root 12777--noincompatible_remote_output_paths_relative_to_input_root 12778--incompatible_remote_results_ignore_disk 12779--noincompatible_remote_results_ignore_disk 12780--incompatible_remote_symlinks 12781--noincompatible_remote_symlinks 12782--incompatible_remote_use_new_exit_code_for_lost_inputs 12783--noincompatible_remote_use_new_exit_code_for_lost_inputs 12784--incompatible_remove_legacy_whole_archive 12785--noincompatible_remove_legacy_whole_archive 12786--incompatible_require_ctx_in_configure_features 12787--noincompatible_require_ctx_in_configure_features 12788--incompatible_require_linker_input_cc_api 12789--noincompatible_require_linker_input_cc_api 12790--incompatible_run_shell_command_string 12791--noincompatible_run_shell_command_string 12792--incompatible_sandbox_hermetic_tmp 12793--noincompatible_sandbox_hermetic_tmp 12794--incompatible_stop_exporting_language_modules 12795--noincompatible_stop_exporting_language_modules 12796--incompatible_strict_action_env 12797--noincompatible_strict_action_env 12798--incompatible_struct_has_no_methods 12799--noincompatible_struct_has_no_methods 12800--incompatible_top_level_aspects_require_providers 12801--noincompatible_top_level_aspects_require_providers 12802--incompatible_unambiguous_label_stringification 12803--noincompatible_unambiguous_label_stringification 12804--incompatible_use_cc_configure_from_rules_cc 12805--noincompatible_use_cc_configure_from_rules_cc 12806--incompatible_use_host_features 12807--noincompatible_use_host_features 12808--incompatible_use_python_toolchains 12809--noincompatible_use_python_toolchains 12810--incompatible_validate_top_level_header_inclusions 12811--noincompatible_validate_top_level_header_inclusions 12812--incompatible_visibility_private_attributes_at_definition 12813--noincompatible_visibility_private_attributes_at_definition 12814--incremental_dexing 12815--noincremental_dexing 12816--instrument_test_targets 12817--noinstrument_test_targets 12818--instrumentation_filter= 12819--interface_shared_objects 12820--nointerface_shared_objects 12821--internal_spawn_scheduler 12822--nointernal_spawn_scheduler 12823--ios_memleaks 12824--noios_memleaks 12825--ios_minimum_os= 12826--ios_multi_cpus= 12827--ios_sdk_version= 12828--ios_signing_cert_name= 12829--ios_simulator_device= 12830--ios_simulator_version= 12831--j2objc_translation_flags= 12832--java_debug 12833--java_deps 12834--nojava_deps 12835--java_header_compilation 12836--nojava_header_compilation 12837--java_language_version= 12838--java_launcher=label 12839--java_runtime_version= 12840--javacopt= 12841--jobs= 12842--jvmopt= 12843--keep_going 12844--nokeep_going 12845--keep_state_after_build 12846--nokeep_state_after_build 12847--legacy_external_runfiles 12848--nolegacy_external_runfiles 12849--legacy_important_outputs 12850--nolegacy_important_outputs 12851--legacy_main_dex_list_generator=label 12852--legacy_whole_archive 12853--nolegacy_whole_archive 12854--linkopt= 12855--loading_phase_threads= 12856--local_cpu_resources= 12857--local_extra_resources= 12858--local_ram_resources= 12859--local_termination_grace_seconds= 12860--local_test_jobs= 12861--lockfile_mode={off,update,error} 12862--logging= 12863--ltobackendopt= 12864--ltoindexopt= 12865--macos_cpus= 12866--macos_minimum_os= 12867--macos_sdk_version= 12868--materialize_param_files 12869--nomaterialize_param_files 12870--max_computation_steps= 12871--max_config_changes_to_show= 12872--max_test_output_bytes= 12873--memory_profile=path 12874--memory_profile_stable_heap_parameters= 12875--memprof_profile=label 12876--minimum_os_version= 12877--modify_execution_info= 12878--nested_set_depth_limit= 12879--objc_debug_with_GLIBCXX 12880--noobjc_debug_with_GLIBCXX 12881--objc_enable_binary_stripping 12882--noobjc_enable_binary_stripping 12883--objc_generate_linkmap 12884--noobjc_generate_linkmap 12885--objc_use_dotd_pruning 12886--noobjc_use_dotd_pruning 12887--objccopt= 12888--optimizing_dexer=label 12889--output_filter= 12890--output_groups= 12891--override_module= 12892--override_repository= 12893--package_path= 12894--per_file_copt= 12895--per_file_ltobackendopt= 12896--persistent_android_dex_desugar 12897--persistent_android_resource_processor 12898--persistent_multiplex_android_dex_desugar 12899--persistent_multiplex_android_resource_processor 12900--persistent_multiplex_android_tools 12901--platform_mappings=path 12902--platform_suffix= 12903--platforms= 12904--plugin= 12905--process_headers_in_dependencies 12906--noprocess_headers_in_dependencies 12907--profile=path 12908--progress_in_terminal_title 12909--noprogress_in_terminal_title 12910--progress_report_interval= 12911--proguard_top=label 12912--propeller_optimize=label 12913--propeller_optimize_absolute_cc_profile= 12914--propeller_optimize_absolute_ld_profile= 12915--proto_compiler=label 12916--proto_toolchain_for_cc=label 12917--proto_toolchain_for_j2objc=label 12918--proto_toolchain_for_java=label 12919--proto_toolchain_for_javalite=label 12920--protocopt= 12921--python2_path= 12922--python3_path= 12923--python_native_rules_allowlist=label 12924--python_path= 12925--python_top=label 12926--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 12927--record_full_profiler_data 12928--norecord_full_profiler_data 12929--registry= 12930--remote_accept_cached 12931--noremote_accept_cached 12932--remote_build_event_upload={all,minimal} 12933--remote_bytestream_uri_prefix= 12934--remote_cache= 12935--remote_cache_compression 12936--noremote_cache_compression 12937--remote_cache_header= 12938--remote_default_exec_properties= 12939--remote_default_platform_properties= 12940--remote_download_all 12941--remote_download_minimal 12942--remote_download_outputs={all,minimal,toplevel} 12943--remote_download_regex= 12944--remote_download_symlink_template= 12945--remote_download_toplevel 12946--remote_downloader_header= 12947--remote_exec_header= 12948--remote_execution_priority= 12949--remote_executor= 12950--remote_grpc_log=path 12951--remote_header= 12952--remote_instance_name= 12953--remote_local_fallback 12954--noremote_local_fallback 12955--remote_local_fallback_strategy= 12956--remote_max_connections= 12957--remote_print_execution_messages={failure,success,all} 12958--remote_proxy= 12959--remote_result_cache_priority= 12960--remote_retries= 12961--remote_retry_max_delay= 12962--remote_timeout= 12963--remote_upload_local_results 12964--noremote_upload_local_results 12965--remote_verify_downloads 12966--noremote_verify_downloads 12967--repo_env= 12968--repository_cache=path 12969--repository_cache_urls_as_default_canonical_id 12970--norepository_cache_urls_as_default_canonical_id 12971--repository_disable_download 12972--norepository_disable_download 12973--reuse_sandbox_directories 12974--noreuse_sandbox_directories 12975--run 12976--norun 12977--run_under= 12978--run_validations 12979--norun_validations 12980--runs_per_test= 12981--runs_per_test_detects_flakes 12982--noruns_per_test_detects_flakes 12983--sandbox_add_mount_pair= 12984--sandbox_base= 12985--sandbox_block_path= 12986--sandbox_debug 12987--nosandbox_debug 12988--sandbox_default_allow_network 12989--nosandbox_default_allow_network 12990--sandbox_explicit_pseudoterminal 12991--nosandbox_explicit_pseudoterminal 12992--sandbox_fake_hostname 12993--nosandbox_fake_hostname 12994--sandbox_fake_username 12995--nosandbox_fake_username 12996--sandbox_tmpfs_path= 12997--sandbox_writable_path= 12998--save_temps 12999--nosave_temps 13000--script_path=path 13001--share_native_deps 13002--noshare_native_deps 13003--shell_executable=path 13004--show_loading_progress 13005--noshow_loading_progress 13006--show_progress 13007--noshow_progress 13008--show_progress_rate_limit= 13009--show_result= 13010--show_timestamps 13011--noshow_timestamps 13012--skip_incompatible_explicit_targets 13013--noskip_incompatible_explicit_targets 13014--skyframe_high_water_mark_full_gc_drops_per_invocation= 13015--skyframe_high_water_mark_minor_gc_drops_per_invocation= 13016--skyframe_high_water_mark_threshold= 13017--slim_profile 13018--noslim_profile 13019--spawn_strategy= 13020--stamp 13021--nostamp 13022--starlark_cpu_profile= 13023--strategy= 13024--strategy_regexp= 13025--strict_filesets 13026--nostrict_filesets 13027--strict_proto_deps={off,warn,error,strict,default} 13028--strict_public_imports={off,warn,error,strict,default} 13029--strict_system_includes 13030--nostrict_system_includes 13031--strip={always,sometimes,never} 13032--stripopt= 13033--subcommands={true,pretty_print,false} 13034--swiftcopt= 13035--symlink_prefix= 13036--target_environment= 13037--target_pattern_file= 13038--target_platform_fallback= 13039--test_arg= 13040--test_env= 13041--test_filter= 13042--test_keep_going 13043--notest_keep_going 13044--test_lang_filters= 13045--test_output={summary,errors,all,streamed} 13046--test_result_expiration= 13047--test_runner_fail_fast 13048--notest_runner_fail_fast 13049--test_sharding_strategy= 13050--test_size_filters= 13051--test_strategy= 13052--test_summary={short,terse,detailed,none,testcase} 13053--test_tag_filters= 13054--test_timeout= 13055--test_timeout_filters= 13056--test_tmpdir=path 13057--tls_certificate= 13058--tls_client_certificate= 13059--tls_client_key= 13060--tool_java_language_version= 13061--tool_java_runtime_version= 13062--tool_tag= 13063--toolchain_resolution_debug= 13064--track_incremental_state 13065--notrack_incremental_state 13066--trim_test_configuration 13067--notrim_test_configuration 13068--tvos_cpus= 13069--tvos_minimum_os= 13070--tvos_sdk_version= 13071--ui_actions_shown= 13072--ui_event_filters= 13073--use_ijars 13074--nouse_ijars 13075--use_target_platform_for_tests 13076--nouse_target_platform_for_tests 13077--verbose_explanations 13078--noverbose_explanations 13079--verbose_failures 13080--noverbose_failures 13081--visionos_cpus= 13082--watchfs 13083--nowatchfs 13084--watchos_cpus= 13085--watchos_minimum_os= 13086--watchos_sdk_version= 13087--worker_extra_flag= 13088--worker_max_instances= 13089--worker_max_multiplex_instances= 13090--worker_multiplex 13091--noworker_multiplex 13092--worker_quit_after_build 13093--noworker_quit_after_build 13094--worker_sandboxing 13095--noworker_sandboxing 13096--worker_verbose 13097--noworker_verbose 13098--workspace_status_command=path 13099--xbinary_fdo=label 13100--xcode_version= 13101--xcode_version_config=label 13102--zip_undeclared_test_outputs 13103--nozip_undeclared_test_outputs 13104" 13105BAZEL_COMMAND_SHUTDOWN_FLAGS=" 13106--allow_yanked_versions= 13107--announce_rc 13108--noannounce_rc 13109--attempt_to_print_relative_paths 13110--noattempt_to_print_relative_paths 13111--bep_maximum_open_remote_upload_files= 13112--bes_backend= 13113--bes_check_preceding_lifecycle_events 13114--nobes_check_preceding_lifecycle_events 13115--bes_header= 13116--bes_instance_name= 13117--bes_keywords= 13118--bes_lifecycle_events 13119--nobes_lifecycle_events 13120--bes_oom_finish_upload_timeout= 13121--bes_outerr_buffer_size= 13122--bes_outerr_chunk_size= 13123--bes_proxy= 13124--bes_results_url= 13125--bes_system_keywords= 13126--bes_timeout= 13127--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 13128--build_event_binary_file= 13129--build_event_binary_file_path_conversion 13130--nobuild_event_binary_file_path_conversion 13131--build_event_json_file= 13132--build_event_json_file_path_conversion 13133--nobuild_event_json_file_path_conversion 13134--build_event_max_named_set_of_file_entries= 13135--build_event_publish_all_actions 13136--nobuild_event_publish_all_actions 13137--build_event_text_file= 13138--build_event_text_file_path_conversion 13139--nobuild_event_text_file_path_conversion 13140--build_metadata= 13141--check_bazel_compatibility={error,warning,off} 13142--check_bzl_visibility 13143--nocheck_bzl_visibility 13144--check_direct_dependencies={off,warning,error} 13145--color={yes,no,auto} 13146--config= 13147--credential_helper= 13148--credential_helper_cache_duration= 13149--credential_helper_timeout= 13150--curses={yes,no,auto} 13151--disk_cache=path 13152--distdir= 13153--enable_bzlmod 13154--noenable_bzlmod 13155--enable_platform_specific_config 13156--noenable_platform_specific_config 13157--experimental_action_resource_set 13158--noexperimental_action_resource_set 13159--experimental_announce_profile_path 13160--noexperimental_announce_profile_path 13161--experimental_bep_target_summary 13162--noexperimental_bep_target_summary 13163--experimental_build_event_expand_filesets 13164--noexperimental_build_event_expand_filesets 13165--experimental_build_event_fully_resolve_fileset_symlinks 13166--noexperimental_build_event_fully_resolve_fileset_symlinks 13167--experimental_build_event_upload_max_retries= 13168--experimental_build_event_upload_retry_minimum_delay= 13169--experimental_build_event_upload_strategy= 13170--experimental_bzl_visibility 13171--noexperimental_bzl_visibility 13172--experimental_cc_shared_library 13173--noexperimental_cc_shared_library 13174--experimental_circuit_breaker_strategy={failure} 13175--experimental_collect_load_average_in_profiler 13176--noexperimental_collect_load_average_in_profiler 13177--experimental_collect_pressure_stall_indicators 13178--noexperimental_collect_pressure_stall_indicators 13179--experimental_collect_resource_estimation 13180--noexperimental_collect_resource_estimation 13181--experimental_collect_system_network_usage 13182--noexperimental_collect_system_network_usage 13183--experimental_collect_worker_data_in_profiler 13184--noexperimental_collect_worker_data_in_profiler 13185--experimental_command_profile 13186--noexperimental_command_profile 13187--experimental_disable_external_package 13188--noexperimental_disable_external_package 13189--experimental_downloader_config= 13190--experimental_enable_android_migration_apis 13191--noexperimental_enable_android_migration_apis 13192--experimental_enable_scl_dialect 13193--noexperimental_enable_scl_dialect 13194--experimental_google_legacy_api 13195--noexperimental_google_legacy_api 13196--experimental_guard_against_concurrent_changes 13197--noexperimental_guard_against_concurrent_changes 13198--experimental_isolated_extension_usages 13199--noexperimental_isolated_extension_usages 13200--experimental_java_library_export 13201--noexperimental_java_library_export 13202--experimental_platforms_api 13203--noexperimental_platforms_api 13204--experimental_profile_additional_tasks= 13205--experimental_profile_include_primary_output 13206--noexperimental_profile_include_primary_output 13207--experimental_profile_include_target_label 13208--noexperimental_profile_include_target_label 13209--experimental_record_metrics_for_all_mnemonics 13210--noexperimental_record_metrics_for_all_mnemonics 13211--experimental_remote_cache_async 13212--noexperimental_remote_cache_async 13213--experimental_remote_cache_lease_extension 13214--noexperimental_remote_cache_lease_extension 13215--experimental_remote_cache_ttl= 13216--experimental_remote_capture_corrupted_outputs=path 13217--experimental_remote_discard_merkle_trees 13218--noexperimental_remote_discard_merkle_trees 13219--experimental_remote_downloader= 13220--experimental_remote_downloader_local_fallback 13221--noexperimental_remote_downloader_local_fallback 13222--experimental_remote_execution_keepalive 13223--noexperimental_remote_execution_keepalive 13224--experimental_remote_failure_rate_threshold= 13225--experimental_remote_failure_window_interval= 13226--experimental_remote_mark_tool_inputs 13227--noexperimental_remote_mark_tool_inputs 13228--experimental_remote_merkle_tree_cache 13229--noexperimental_remote_merkle_tree_cache 13230--experimental_remote_merkle_tree_cache_size= 13231--experimental_remote_require_cached 13232--noexperimental_remote_require_cached 13233--experimental_repo_remote_exec 13234--noexperimental_repo_remote_exec 13235--experimental_repository_cache_hardlinks 13236--noexperimental_repository_cache_hardlinks 13237--experimental_repository_downloader_retries= 13238--experimental_resolved_file_instead_of_workspace= 13239--experimental_run_bep_event_include_residue 13240--noexperimental_run_bep_event_include_residue 13241--experimental_scale_timeouts= 13242--experimental_sibling_repository_layout 13243--noexperimental_sibling_repository_layout 13244--experimental_stream_log_file_uploads 13245--noexperimental_stream_log_file_uploads 13246--experimental_ui_max_stdouterr_bytes= 13247--experimental_windows_watchfs 13248--noexperimental_windows_watchfs 13249--experimental_worker_for_repo_fetching={off,platform,virtual} 13250--experimental_workspace_rules_log_file=path 13251--gc_thrashing_limits= 13252--gc_thrashing_threshold= 13253--generate_json_trace_profile={auto,yes,no} 13254--nogenerate_json_trace_profile 13255--google_auth_scopes= 13256--google_credentials= 13257--google_default_credentials 13258--nogoogle_default_credentials 13259--grpc_keepalive_time= 13260--grpc_keepalive_timeout= 13261--heap_dump_on_oom 13262--noheap_dump_on_oom 13263--heuristically_drop_nodes 13264--noheuristically_drop_nodes 13265--http_connector_attempts= 13266--http_connector_retry_max_timeout= 13267--http_timeout_scaling= 13268--iff_heap_size_greater_than= 13269--ignore_dev_dependency 13270--noignore_dev_dependency 13271--incompatible_allow_tags_propagation 13272--noincompatible_allow_tags_propagation 13273--incompatible_always_check_depset_elements 13274--noincompatible_always_check_depset_elements 13275--incompatible_depset_for_java_output_source_jars 13276--noincompatible_depset_for_java_output_source_jars 13277--incompatible_depset_for_libraries_to_link_getter 13278--noincompatible_depset_for_libraries_to_link_getter 13279--incompatible_disable_non_executable_java_binary 13280--noincompatible_disable_non_executable_java_binary 13281--incompatible_disable_objc_library_transition 13282--noincompatible_disable_objc_library_transition 13283--incompatible_disable_starlark_host_transitions 13284--noincompatible_disable_starlark_host_transitions 13285--incompatible_disable_target_provider_fields 13286--noincompatible_disable_target_provider_fields 13287--incompatible_disallow_empty_glob 13288--noincompatible_disallow_empty_glob 13289--incompatible_disallow_struct_provider_syntax 13290--noincompatible_disallow_struct_provider_syntax 13291--incompatible_disallow_symlink_file_to_dir 13292--noincompatible_disallow_symlink_file_to_dir 13293--incompatible_do_not_split_linking_cmdline 13294--noincompatible_do_not_split_linking_cmdline 13295--incompatible_enable_proto_toolchain_resolution 13296--noincompatible_enable_proto_toolchain_resolution 13297--incompatible_existing_rules_immutable_view 13298--noincompatible_existing_rules_immutable_view 13299--incompatible_fail_on_unknown_attributes 13300--noincompatible_fail_on_unknown_attributes 13301--incompatible_fix_package_group_reporoot_syntax 13302--noincompatible_fix_package_group_reporoot_syntax 13303--incompatible_java_common_parameters 13304--noincompatible_java_common_parameters 13305--incompatible_merge_fixed_and_default_shell_env 13306--noincompatible_merge_fixed_and_default_shell_env 13307--incompatible_new_actions_api 13308--noincompatible_new_actions_api 13309--incompatible_no_attr_license 13310--noincompatible_no_attr_license 13311--incompatible_no_implicit_file_export 13312--noincompatible_no_implicit_file_export 13313--incompatible_no_rule_outputs_param 13314--noincompatible_no_rule_outputs_param 13315--incompatible_objc_provider_remove_linking_info 13316--noincompatible_objc_provider_remove_linking_info 13317--incompatible_package_group_has_public_syntax 13318--noincompatible_package_group_has_public_syntax 13319--incompatible_remote_build_event_upload_respect_no_cache 13320--noincompatible_remote_build_event_upload_respect_no_cache 13321--incompatible_remote_dangling_symlinks 13322--noincompatible_remote_dangling_symlinks 13323--incompatible_remote_disallow_symlink_in_tree_artifact 13324--noincompatible_remote_disallow_symlink_in_tree_artifact 13325--incompatible_remote_downloader_send_all_headers 13326--noincompatible_remote_downloader_send_all_headers 13327--incompatible_remote_output_paths_relative_to_input_root 13328--noincompatible_remote_output_paths_relative_to_input_root 13329--incompatible_remote_results_ignore_disk 13330--noincompatible_remote_results_ignore_disk 13331--incompatible_remote_symlinks 13332--noincompatible_remote_symlinks 13333--incompatible_require_linker_input_cc_api 13334--noincompatible_require_linker_input_cc_api 13335--incompatible_run_shell_command_string 13336--noincompatible_run_shell_command_string 13337--incompatible_stop_exporting_language_modules 13338--noincompatible_stop_exporting_language_modules 13339--incompatible_struct_has_no_methods 13340--noincompatible_struct_has_no_methods 13341--incompatible_top_level_aspects_require_providers 13342--noincompatible_top_level_aspects_require_providers 13343--incompatible_unambiguous_label_stringification 13344--noincompatible_unambiguous_label_stringification 13345--incompatible_use_cc_configure_from_rules_cc 13346--noincompatible_use_cc_configure_from_rules_cc 13347--incompatible_visibility_private_attributes_at_definition 13348--noincompatible_visibility_private_attributes_at_definition 13349--keep_state_after_build 13350--nokeep_state_after_build 13351--legacy_important_outputs 13352--nolegacy_important_outputs 13353--lockfile_mode={off,update,error} 13354--logging= 13355--max_computation_steps= 13356--memory_profile=path 13357--memory_profile_stable_heap_parameters= 13358--nested_set_depth_limit= 13359--override_module= 13360--override_repository= 13361--profile=path 13362--progress_in_terminal_title 13363--noprogress_in_terminal_title 13364--record_full_profiler_data 13365--norecord_full_profiler_data 13366--registry= 13367--remote_accept_cached 13368--noremote_accept_cached 13369--remote_build_event_upload={all,minimal} 13370--remote_bytestream_uri_prefix= 13371--remote_cache= 13372--remote_cache_compression 13373--noremote_cache_compression 13374--remote_cache_header= 13375--remote_default_exec_properties= 13376--remote_default_platform_properties= 13377--remote_download_all 13378--remote_download_minimal 13379--remote_download_outputs={all,minimal,toplevel} 13380--remote_download_regex= 13381--remote_download_symlink_template= 13382--remote_download_toplevel 13383--remote_downloader_header= 13384--remote_exec_header= 13385--remote_execution_priority= 13386--remote_executor= 13387--remote_grpc_log=path 13388--remote_header= 13389--remote_instance_name= 13390--remote_local_fallback 13391--noremote_local_fallback 13392--remote_local_fallback_strategy= 13393--remote_max_connections= 13394--remote_print_execution_messages={failure,success,all} 13395--remote_proxy= 13396--remote_result_cache_priority= 13397--remote_retries= 13398--remote_retry_max_delay= 13399--remote_timeout= 13400--remote_upload_local_results 13401--noremote_upload_local_results 13402--remote_verify_downloads 13403--noremote_verify_downloads 13404--repo_env= 13405--repository_cache=path 13406--repository_cache_urls_as_default_canonical_id 13407--norepository_cache_urls_as_default_canonical_id 13408--repository_disable_download 13409--norepository_disable_download 13410--show_progress 13411--noshow_progress 13412--show_progress_rate_limit= 13413--show_timestamps 13414--noshow_timestamps 13415--skyframe_high_water_mark_full_gc_drops_per_invocation= 13416--skyframe_high_water_mark_minor_gc_drops_per_invocation= 13417--skyframe_high_water_mark_threshold= 13418--slim_profile 13419--noslim_profile 13420--starlark_cpu_profile= 13421--tls_certificate= 13422--tls_client_certificate= 13423--tls_client_key= 13424--tool_tag= 13425--track_incremental_state 13426--notrack_incremental_state 13427--ui_actions_shown= 13428--ui_event_filters= 13429--watchfs 13430--nowatchfs 13431" 13432BAZEL_COMMAND_SYNC_FLAGS=" 13433--allow_yanked_versions= 13434--announce_rc 13435--noannounce_rc 13436--attempt_to_print_relative_paths 13437--noattempt_to_print_relative_paths 13438--bep_maximum_open_remote_upload_files= 13439--bes_backend= 13440--bes_check_preceding_lifecycle_events 13441--nobes_check_preceding_lifecycle_events 13442--bes_header= 13443--bes_instance_name= 13444--bes_keywords= 13445--bes_lifecycle_events 13446--nobes_lifecycle_events 13447--bes_oom_finish_upload_timeout= 13448--bes_outerr_buffer_size= 13449--bes_outerr_chunk_size= 13450--bes_proxy= 13451--bes_results_url= 13452--bes_system_keywords= 13453--bes_timeout= 13454--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 13455--build_event_binary_file= 13456--build_event_binary_file_path_conversion 13457--nobuild_event_binary_file_path_conversion 13458--build_event_json_file= 13459--build_event_json_file_path_conversion 13460--nobuild_event_json_file_path_conversion 13461--build_event_max_named_set_of_file_entries= 13462--build_event_publish_all_actions 13463--nobuild_event_publish_all_actions 13464--build_event_text_file= 13465--build_event_text_file_path_conversion 13466--nobuild_event_text_file_path_conversion 13467--build_metadata= 13468--check_bazel_compatibility={error,warning,off} 13469--check_bzl_visibility 13470--nocheck_bzl_visibility 13471--check_direct_dependencies={off,warning,error} 13472--color={yes,no,auto} 13473--config= 13474--configure 13475--noconfigure 13476--credential_helper= 13477--credential_helper_cache_duration= 13478--credential_helper_timeout= 13479--curses={yes,no,auto} 13480--deleted_packages= 13481--disk_cache=path 13482--distdir= 13483--enable_bzlmod 13484--noenable_bzlmod 13485--enable_platform_specific_config 13486--noenable_platform_specific_config 13487--experimental_action_resource_set 13488--noexperimental_action_resource_set 13489--experimental_announce_profile_path 13490--noexperimental_announce_profile_path 13491--experimental_bep_target_summary 13492--noexperimental_bep_target_summary 13493--experimental_build_event_expand_filesets 13494--noexperimental_build_event_expand_filesets 13495--experimental_build_event_fully_resolve_fileset_symlinks 13496--noexperimental_build_event_fully_resolve_fileset_symlinks 13497--experimental_build_event_upload_max_retries= 13498--experimental_build_event_upload_retry_minimum_delay= 13499--experimental_build_event_upload_strategy= 13500--experimental_bzl_visibility 13501--noexperimental_bzl_visibility 13502--experimental_cc_shared_library 13503--noexperimental_cc_shared_library 13504--experimental_circuit_breaker_strategy={failure} 13505--experimental_collect_load_average_in_profiler 13506--noexperimental_collect_load_average_in_profiler 13507--experimental_collect_pressure_stall_indicators 13508--noexperimental_collect_pressure_stall_indicators 13509--experimental_collect_resource_estimation 13510--noexperimental_collect_resource_estimation 13511--experimental_collect_system_network_usage 13512--noexperimental_collect_system_network_usage 13513--experimental_collect_worker_data_in_profiler 13514--noexperimental_collect_worker_data_in_profiler 13515--experimental_command_profile 13516--noexperimental_command_profile 13517--experimental_disable_external_package 13518--noexperimental_disable_external_package 13519--experimental_downloader_config= 13520--experimental_enable_android_migration_apis 13521--noexperimental_enable_android_migration_apis 13522--experimental_enable_scl_dialect 13523--noexperimental_enable_scl_dialect 13524--experimental_google_legacy_api 13525--noexperimental_google_legacy_api 13526--experimental_guard_against_concurrent_changes 13527--noexperimental_guard_against_concurrent_changes 13528--experimental_isolated_extension_usages 13529--noexperimental_isolated_extension_usages 13530--experimental_java_library_export 13531--noexperimental_java_library_export 13532--experimental_platforms_api 13533--noexperimental_platforms_api 13534--experimental_profile_additional_tasks= 13535--experimental_profile_include_primary_output 13536--noexperimental_profile_include_primary_output 13537--experimental_profile_include_target_label 13538--noexperimental_profile_include_target_label 13539--experimental_record_metrics_for_all_mnemonics 13540--noexperimental_record_metrics_for_all_mnemonics 13541--experimental_remote_cache_async 13542--noexperimental_remote_cache_async 13543--experimental_remote_cache_lease_extension 13544--noexperimental_remote_cache_lease_extension 13545--experimental_remote_cache_ttl= 13546--experimental_remote_capture_corrupted_outputs=path 13547--experimental_remote_discard_merkle_trees 13548--noexperimental_remote_discard_merkle_trees 13549--experimental_remote_downloader= 13550--experimental_remote_downloader_local_fallback 13551--noexperimental_remote_downloader_local_fallback 13552--experimental_remote_execution_keepalive 13553--noexperimental_remote_execution_keepalive 13554--experimental_remote_failure_rate_threshold= 13555--experimental_remote_failure_window_interval= 13556--experimental_remote_mark_tool_inputs 13557--noexperimental_remote_mark_tool_inputs 13558--experimental_remote_merkle_tree_cache 13559--noexperimental_remote_merkle_tree_cache 13560--experimental_remote_merkle_tree_cache_size= 13561--experimental_remote_require_cached 13562--noexperimental_remote_require_cached 13563--experimental_repo_remote_exec 13564--noexperimental_repo_remote_exec 13565--experimental_repository_cache_hardlinks 13566--noexperimental_repository_cache_hardlinks 13567--experimental_repository_downloader_retries= 13568--experimental_repository_resolved_file= 13569--experimental_resolved_file_instead_of_workspace= 13570--experimental_run_bep_event_include_residue 13571--noexperimental_run_bep_event_include_residue 13572--experimental_scale_timeouts= 13573--experimental_sibling_repository_layout 13574--noexperimental_sibling_repository_layout 13575--experimental_stream_log_file_uploads 13576--noexperimental_stream_log_file_uploads 13577--experimental_ui_max_stdouterr_bytes= 13578--experimental_windows_watchfs 13579--noexperimental_windows_watchfs 13580--experimental_worker_for_repo_fetching={off,platform,virtual} 13581--experimental_workspace_rules_log_file=path 13582--gc_thrashing_limits= 13583--gc_thrashing_threshold= 13584--generate_json_trace_profile={auto,yes,no} 13585--nogenerate_json_trace_profile 13586--google_auth_scopes= 13587--google_credentials= 13588--google_default_credentials 13589--nogoogle_default_credentials 13590--grpc_keepalive_time= 13591--grpc_keepalive_timeout= 13592--heap_dump_on_oom 13593--noheap_dump_on_oom 13594--heuristically_drop_nodes 13595--noheuristically_drop_nodes 13596--http_connector_attempts= 13597--http_connector_retry_max_timeout= 13598--http_timeout_scaling= 13599--ignore_dev_dependency 13600--noignore_dev_dependency 13601--incompatible_allow_tags_propagation 13602--noincompatible_allow_tags_propagation 13603--incompatible_always_check_depset_elements 13604--noincompatible_always_check_depset_elements 13605--incompatible_config_setting_private_default_visibility 13606--noincompatible_config_setting_private_default_visibility 13607--incompatible_depset_for_java_output_source_jars 13608--noincompatible_depset_for_java_output_source_jars 13609--incompatible_depset_for_libraries_to_link_getter 13610--noincompatible_depset_for_libraries_to_link_getter 13611--incompatible_disable_non_executable_java_binary 13612--noincompatible_disable_non_executable_java_binary 13613--incompatible_disable_objc_library_transition 13614--noincompatible_disable_objc_library_transition 13615--incompatible_disable_starlark_host_transitions 13616--noincompatible_disable_starlark_host_transitions 13617--incompatible_disable_target_provider_fields 13618--noincompatible_disable_target_provider_fields 13619--incompatible_disallow_empty_glob 13620--noincompatible_disallow_empty_glob 13621--incompatible_disallow_struct_provider_syntax 13622--noincompatible_disallow_struct_provider_syntax 13623--incompatible_disallow_symlink_file_to_dir 13624--noincompatible_disallow_symlink_file_to_dir 13625--incompatible_do_not_split_linking_cmdline 13626--noincompatible_do_not_split_linking_cmdline 13627--incompatible_enable_proto_toolchain_resolution 13628--noincompatible_enable_proto_toolchain_resolution 13629--incompatible_enforce_config_setting_visibility 13630--noincompatible_enforce_config_setting_visibility 13631--incompatible_existing_rules_immutable_view 13632--noincompatible_existing_rules_immutable_view 13633--incompatible_fail_on_unknown_attributes 13634--noincompatible_fail_on_unknown_attributes 13635--incompatible_fix_package_group_reporoot_syntax 13636--noincompatible_fix_package_group_reporoot_syntax 13637--incompatible_java_common_parameters 13638--noincompatible_java_common_parameters 13639--incompatible_merge_fixed_and_default_shell_env 13640--noincompatible_merge_fixed_and_default_shell_env 13641--incompatible_new_actions_api 13642--noincompatible_new_actions_api 13643--incompatible_no_attr_license 13644--noincompatible_no_attr_license 13645--incompatible_no_implicit_file_export 13646--noincompatible_no_implicit_file_export 13647--incompatible_no_rule_outputs_param 13648--noincompatible_no_rule_outputs_param 13649--incompatible_objc_provider_remove_linking_info 13650--noincompatible_objc_provider_remove_linking_info 13651--incompatible_package_group_has_public_syntax 13652--noincompatible_package_group_has_public_syntax 13653--incompatible_remote_build_event_upload_respect_no_cache 13654--noincompatible_remote_build_event_upload_respect_no_cache 13655--incompatible_remote_dangling_symlinks 13656--noincompatible_remote_dangling_symlinks 13657--incompatible_remote_disallow_symlink_in_tree_artifact 13658--noincompatible_remote_disallow_symlink_in_tree_artifact 13659--incompatible_remote_downloader_send_all_headers 13660--noincompatible_remote_downloader_send_all_headers 13661--incompatible_remote_output_paths_relative_to_input_root 13662--noincompatible_remote_output_paths_relative_to_input_root 13663--incompatible_remote_results_ignore_disk 13664--noincompatible_remote_results_ignore_disk 13665--incompatible_remote_symlinks 13666--noincompatible_remote_symlinks 13667--incompatible_require_linker_input_cc_api 13668--noincompatible_require_linker_input_cc_api 13669--incompatible_run_shell_command_string 13670--noincompatible_run_shell_command_string 13671--incompatible_stop_exporting_language_modules 13672--noincompatible_stop_exporting_language_modules 13673--incompatible_struct_has_no_methods 13674--noincompatible_struct_has_no_methods 13675--incompatible_top_level_aspects_require_providers 13676--noincompatible_top_level_aspects_require_providers 13677--incompatible_unambiguous_label_stringification 13678--noincompatible_unambiguous_label_stringification 13679--incompatible_use_cc_configure_from_rules_cc 13680--noincompatible_use_cc_configure_from_rules_cc 13681--incompatible_visibility_private_attributes_at_definition 13682--noincompatible_visibility_private_attributes_at_definition 13683--keep_going 13684--nokeep_going 13685--keep_state_after_build 13686--nokeep_state_after_build 13687--legacy_important_outputs 13688--nolegacy_important_outputs 13689--loading_phase_threads= 13690--lockfile_mode={off,update,error} 13691--logging= 13692--max_computation_steps= 13693--memory_profile=path 13694--memory_profile_stable_heap_parameters= 13695--nested_set_depth_limit= 13696--only= 13697--override_module= 13698--override_repository= 13699--package_path= 13700--profile=path 13701--progress_in_terminal_title 13702--noprogress_in_terminal_title 13703--record_full_profiler_data 13704--norecord_full_profiler_data 13705--registry= 13706--remote_accept_cached 13707--noremote_accept_cached 13708--remote_build_event_upload={all,minimal} 13709--remote_bytestream_uri_prefix= 13710--remote_cache= 13711--remote_cache_compression 13712--noremote_cache_compression 13713--remote_cache_header= 13714--remote_default_exec_properties= 13715--remote_default_platform_properties= 13716--remote_download_all 13717--remote_download_minimal 13718--remote_download_outputs={all,minimal,toplevel} 13719--remote_download_regex= 13720--remote_download_symlink_template= 13721--remote_download_toplevel 13722--remote_downloader_header= 13723--remote_exec_header= 13724--remote_execution_priority= 13725--remote_executor= 13726--remote_grpc_log=path 13727--remote_header= 13728--remote_instance_name= 13729--remote_local_fallback 13730--noremote_local_fallback 13731--remote_local_fallback_strategy= 13732--remote_max_connections= 13733--remote_print_execution_messages={failure,success,all} 13734--remote_proxy= 13735--remote_result_cache_priority= 13736--remote_retries= 13737--remote_retry_max_delay= 13738--remote_timeout= 13739--remote_upload_local_results 13740--noremote_upload_local_results 13741--remote_verify_downloads 13742--noremote_verify_downloads 13743--repo_env= 13744--repository_cache=path 13745--repository_cache_urls_as_default_canonical_id 13746--norepository_cache_urls_as_default_canonical_id 13747--repository_disable_download 13748--norepository_disable_download 13749--show_loading_progress 13750--noshow_loading_progress 13751--show_progress 13752--noshow_progress 13753--show_progress_rate_limit= 13754--show_timestamps 13755--noshow_timestamps 13756--skyframe_high_water_mark_full_gc_drops_per_invocation= 13757--skyframe_high_water_mark_minor_gc_drops_per_invocation= 13758--skyframe_high_water_mark_threshold= 13759--slim_profile 13760--noslim_profile 13761--starlark_cpu_profile= 13762--tls_certificate= 13763--tls_client_certificate= 13764--tls_client_key= 13765--tool_tag= 13766--track_incremental_state 13767--notrack_incremental_state 13768--ui_actions_shown= 13769--ui_event_filters= 13770--watchfs 13771--nowatchfs 13772" 13773BAZEL_COMMAND_TEST_ARGUMENT="label-test" 13774BAZEL_COMMAND_TEST_FLAGS=" 13775--action_env= 13776--allow_analysis_cache_discard 13777--noallow_analysis_cache_discard 13778--allow_analysis_failures 13779--noallow_analysis_failures 13780--allow_yanked_versions= 13781--analysis_testing_deps_limit= 13782--android_compiler= 13783--android_cpu= 13784--android_crosstool_top=label 13785--android_databinding_use_androidx 13786--noandroid_databinding_use_androidx 13787--android_databinding_use_v3_4_args 13788--noandroid_databinding_use_v3_4_args 13789--android_dynamic_mode={off,default,fully} 13790--android_grte_top=label 13791--android_manifest_merger={legacy,android,force_android} 13792--android_manifest_merger_order={alphabetical,alphabetical_by_configuration,dependency} 13793--android_platforms= 13794--android_resource_shrinking 13795--noandroid_resource_shrinking 13796--android_sdk=label 13797--announce_rc 13798--noannounce_rc 13799--apk_signing_method={v1,v2,v1_v2,v4} 13800--apple_crosstool_top=label 13801--apple_generate_dsym 13802--noapple_generate_dsym 13803--aspects= 13804--aspects_parameters= 13805--attempt_to_print_relative_paths 13806--noattempt_to_print_relative_paths 13807--auto_cpu_environment_group=label 13808--auto_output_filter={none,all,packages,subpackages} 13809--bep_maximum_open_remote_upload_files= 13810--bes_backend= 13811--bes_check_preceding_lifecycle_events 13812--nobes_check_preceding_lifecycle_events 13813--bes_header= 13814--bes_instance_name= 13815--bes_keywords= 13816--bes_lifecycle_events 13817--nobes_lifecycle_events 13818--bes_oom_finish_upload_timeout= 13819--bes_outerr_buffer_size= 13820--bes_outerr_chunk_size= 13821--bes_proxy= 13822--bes_results_url= 13823--bes_system_keywords= 13824--bes_timeout= 13825--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 13826--break_build_on_parallel_dex2oat_failure 13827--nobreak_build_on_parallel_dex2oat_failure 13828--build 13829--nobuild 13830--build_event_binary_file= 13831--build_event_binary_file_path_conversion 13832--nobuild_event_binary_file_path_conversion 13833--build_event_json_file= 13834--build_event_json_file_path_conversion 13835--nobuild_event_json_file_path_conversion 13836--build_event_max_named_set_of_file_entries= 13837--build_event_publish_all_actions 13838--nobuild_event_publish_all_actions 13839--build_event_text_file= 13840--build_event_text_file_path_conversion 13841--nobuild_event_text_file_path_conversion 13842--build_manual_tests 13843--nobuild_manual_tests 13844--build_metadata= 13845--build_python_zip={auto,yes,no} 13846--nobuild_python_zip 13847--build_runfile_links 13848--nobuild_runfile_links 13849--build_runfile_manifests 13850--nobuild_runfile_manifests 13851--build_tag_filters= 13852--build_test_dwp 13853--nobuild_test_dwp 13854--build_tests_only 13855--nobuild_tests_only 13856--cache_test_results={auto,yes,no} 13857--nocache_test_results 13858--catalyst_cpus= 13859--cc_output_directory_tag= 13860--cc_proto_library_header_suffixes= 13861--cc_proto_library_source_suffixes= 13862--check_bazel_compatibility={error,warning,off} 13863--check_bzl_visibility 13864--nocheck_bzl_visibility 13865--check_direct_dependencies={off,warning,error} 13866--check_licenses 13867--nocheck_licenses 13868--check_tests_up_to_date 13869--nocheck_tests_up_to_date 13870--check_up_to_date 13871--nocheck_up_to_date 13872--check_visibility 13873--nocheck_visibility 13874--collect_code_coverage 13875--nocollect_code_coverage 13876--color={yes,no,auto} 13877--combined_report={none,lcov} 13878--compilation_mode={fastbuild,dbg,opt} 13879--compile_one_dependency 13880--nocompile_one_dependency 13881--compiler= 13882--config= 13883--conlyopt= 13884--copt= 13885--coverage_output_generator=label 13886--coverage_report_generator=label 13887--coverage_support=label 13888--cpu= 13889--credential_helper= 13890--credential_helper_cache_duration= 13891--credential_helper_timeout= 13892--crosstool_top=label 13893--cs_fdo_absolute_path= 13894--cs_fdo_instrument= 13895--cs_fdo_profile=label 13896--curses={yes,no,auto} 13897--custom_malloc=label 13898--cxxopt= 13899--debug_spawn_scheduler 13900--nodebug_spawn_scheduler 13901--define= 13902--deleted_packages= 13903--desugar_for_android 13904--nodesugar_for_android 13905--desugar_java8_libs 13906--nodesugar_java8_libs 13907--device_debug_entitlements 13908--nodevice_debug_entitlements 13909--discard_analysis_cache 13910--nodiscard_analysis_cache 13911--disk_cache=path 13912--distdir= 13913--dynamic_local_execution_delay= 13914--dynamic_local_strategy= 13915--dynamic_mode={off,default,fully} 13916--dynamic_remote_strategy= 13917--embed_label= 13918--enable_bzlmod 13919--noenable_bzlmod 13920--enable_fdo_profile_absolute_path 13921--noenable_fdo_profile_absolute_path 13922--enable_platform_specific_config 13923--noenable_platform_specific_config 13924--enable_runfiles={auto,yes,no} 13925--noenable_runfiles 13926--enforce_constraints 13927--noenforce_constraints 13928--execution_log_binary_file=path 13929--execution_log_json_file=path 13930--execution_log_sort 13931--noexecution_log_sort 13932--expand_test_suites 13933--noexpand_test_suites 13934--experimental_action_listener= 13935--experimental_action_resource_set 13936--noexperimental_action_resource_set 13937--experimental_add_exec_constraints_to_targets= 13938--experimental_android_compress_java_resources 13939--noexperimental_android_compress_java_resources 13940--experimental_android_databinding_v2 13941--noexperimental_android_databinding_v2 13942--experimental_android_resource_shrinking 13943--noexperimental_android_resource_shrinking 13944--experimental_android_rewrite_dexes_with_rex 13945--noexperimental_android_rewrite_dexes_with_rex 13946--experimental_android_use_parallel_dex2oat 13947--noexperimental_android_use_parallel_dex2oat 13948--experimental_announce_profile_path 13949--noexperimental_announce_profile_path 13950--experimental_bep_target_summary 13951--noexperimental_bep_target_summary 13952--experimental_build_event_expand_filesets 13953--noexperimental_build_event_expand_filesets 13954--experimental_build_event_fully_resolve_fileset_symlinks 13955--noexperimental_build_event_fully_resolve_fileset_symlinks 13956--experimental_build_event_upload_max_retries= 13957--experimental_build_event_upload_retry_minimum_delay= 13958--experimental_build_event_upload_strategy= 13959--experimental_bzl_visibility 13960--noexperimental_bzl_visibility 13961--experimental_cancel_concurrent_tests 13962--noexperimental_cancel_concurrent_tests 13963--experimental_cc_shared_library 13964--noexperimental_cc_shared_library 13965--experimental_check_desugar_deps 13966--noexperimental_check_desugar_deps 13967--experimental_circuit_breaker_strategy={failure} 13968--experimental_collect_code_coverage_for_generated_files 13969--noexperimental_collect_code_coverage_for_generated_files 13970--experimental_collect_load_average_in_profiler 13971--noexperimental_collect_load_average_in_profiler 13972--experimental_collect_local_sandbox_action_metrics 13973--noexperimental_collect_local_sandbox_action_metrics 13974--experimental_collect_pressure_stall_indicators 13975--noexperimental_collect_pressure_stall_indicators 13976--experimental_collect_resource_estimation 13977--noexperimental_collect_resource_estimation 13978--experimental_collect_system_network_usage 13979--noexperimental_collect_system_network_usage 13980--experimental_collect_worker_data_in_profiler 13981--noexperimental_collect_worker_data_in_profiler 13982--experimental_command_profile 13983--noexperimental_command_profile 13984--experimental_convenience_symlinks={normal,clean,ignore,log_only} 13985--experimental_convenience_symlinks_bep_event 13986--noexperimental_convenience_symlinks_bep_event 13987--experimental_disable_external_package 13988--noexperimental_disable_external_package 13989--experimental_docker_image= 13990--experimental_docker_privileged 13991--noexperimental_docker_privileged 13992--experimental_docker_use_customized_images 13993--noexperimental_docker_use_customized_images 13994--experimental_docker_verbose 13995--noexperimental_docker_verbose 13996--experimental_downloader_config= 13997--experimental_dynamic_exclude_tools 13998--noexperimental_dynamic_exclude_tools 13999--experimental_dynamic_ignore_local_signals= 14000--experimental_dynamic_local_load_factor= 14001--experimental_dynamic_slow_remote_time= 14002--experimental_enable_android_migration_apis 14003--noexperimental_enable_android_migration_apis 14004--experimental_enable_docker_sandbox 14005--noexperimental_enable_docker_sandbox 14006--experimental_enable_scl_dialect 14007--noexperimental_enable_scl_dialect 14008--experimental_execution_log_file=path 14009--experimental_extra_action_filter= 14010--experimental_extra_action_top_level_only 14011--noexperimental_extra_action_top_level_only 14012--experimental_fetch_all_coverage_outputs 14013--noexperimental_fetch_all_coverage_outputs 14014--experimental_filter_library_jar_with_program_jar 14015--noexperimental_filter_library_jar_with_program_jar 14016--experimental_generate_llvm_lcov 14017--noexperimental_generate_llvm_lcov 14018--experimental_google_legacy_api 14019--noexperimental_google_legacy_api 14020--experimental_guard_against_concurrent_changes 14021--noexperimental_guard_against_concurrent_changes 14022--experimental_import_deps_checking={off,warning,error} 14023--experimental_include_xcode_execution_requirements 14024--noexperimental_include_xcode_execution_requirements 14025--experimental_inmemory_dotd_files 14026--noexperimental_inmemory_dotd_files 14027--experimental_inmemory_jdeps_files 14028--noexperimental_inmemory_jdeps_files 14029--experimental_inprocess_symlink_creation 14030--noexperimental_inprocess_symlink_creation 14031--experimental_isolated_extension_usages 14032--noexperimental_isolated_extension_usages 14033--experimental_j2objc_header_map 14034--noexperimental_j2objc_header_map 14035--experimental_j2objc_shorter_header_path 14036--noexperimental_j2objc_shorter_header_path 14037--experimental_java_classpath={off,javabuilder,bazel} 14038--experimental_java_library_export 14039--noexperimental_java_library_export 14040--experimental_limit_android_lint_to_android_constrained_java 14041--noexperimental_limit_android_lint_to_android_constrained_java 14042--experimental_materialize_param_files_directly 14043--noexperimental_materialize_param_files_directly 14044--experimental_objc_fastbuild_options= 14045--experimental_objc_include_scanning 14046--noexperimental_objc_include_scanning 14047--experimental_omitfp 14048--noexperimental_omitfp 14049--experimental_parallel_aquery_output 14050--noexperimental_parallel_aquery_output 14051--experimental_persistent_aar_extractor 14052--noexperimental_persistent_aar_extractor 14053--experimental_platform_in_output_dir 14054--noexperimental_platform_in_output_dir 14055--experimental_platforms_api 14056--noexperimental_platforms_api 14057--experimental_prefer_mutual_xcode 14058--noexperimental_prefer_mutual_xcode 14059--experimental_profile_additional_tasks= 14060--experimental_profile_include_primary_output 14061--noexperimental_profile_include_primary_output 14062--experimental_profile_include_target_label 14063--noexperimental_profile_include_target_label 14064--experimental_proto_descriptor_sets_include_source_info 14065--noexperimental_proto_descriptor_sets_include_source_info 14066--experimental_proto_extra_actions 14067--noexperimental_proto_extra_actions 14068--experimental_record_metrics_for_all_mnemonics 14069--noexperimental_record_metrics_for_all_mnemonics 14070--experimental_remotable_source_manifests 14071--noexperimental_remotable_source_manifests 14072--experimental_remote_cache_async 14073--noexperimental_remote_cache_async 14074--experimental_remote_cache_eviction_retries= 14075--experimental_remote_cache_lease_extension 14076--noexperimental_remote_cache_lease_extension 14077--experimental_remote_cache_ttl= 14078--experimental_remote_capture_corrupted_outputs=path 14079--experimental_remote_discard_merkle_trees 14080--noexperimental_remote_discard_merkle_trees 14081--experimental_remote_downloader= 14082--experimental_remote_downloader_local_fallback 14083--noexperimental_remote_downloader_local_fallback 14084--experimental_remote_execution_keepalive 14085--noexperimental_remote_execution_keepalive 14086--experimental_remote_failure_rate_threshold= 14087--experimental_remote_failure_window_interval= 14088--experimental_remote_mark_tool_inputs 14089--noexperimental_remote_mark_tool_inputs 14090--experimental_remote_merkle_tree_cache 14091--noexperimental_remote_merkle_tree_cache 14092--experimental_remote_merkle_tree_cache_size= 14093--experimental_remote_require_cached 14094--noexperimental_remote_require_cached 14095--experimental_repo_remote_exec 14096--noexperimental_repo_remote_exec 14097--experimental_repository_cache_hardlinks 14098--noexperimental_repository_cache_hardlinks 14099--experimental_repository_downloader_retries= 14100--experimental_repository_resolved_file= 14101--experimental_resolved_file_instead_of_workspace= 14102--experimental_retain_test_configuration_across_testonly 14103--noexperimental_retain_test_configuration_across_testonly 14104--experimental_run_android_lint_on_java_rules 14105--noexperimental_run_android_lint_on_java_rules 14106--experimental_run_bep_event_include_residue 14107--noexperimental_run_bep_event_include_residue 14108--experimental_sandbox_async_tree_delete_idle_threads= 14109--experimental_sandbox_memory_limit_mb= 14110--experimental_sandboxfs_map_symlink_targets 14111--noexperimental_sandboxfs_map_symlink_targets 14112--experimental_sandboxfs_path= 14113--experimental_save_feature_state 14114--noexperimental_save_feature_state 14115--experimental_scale_timeouts= 14116--experimental_shrink_worker_pool 14117--noexperimental_shrink_worker_pool 14118--experimental_sibling_repository_layout 14119--noexperimental_sibling_repository_layout 14120--experimental_spawn_scheduler 14121--experimental_split_coverage_postprocessing 14122--noexperimental_split_coverage_postprocessing 14123--experimental_split_xml_generation 14124--noexperimental_split_xml_generation 14125--experimental_starlark_cc_import 14126--noexperimental_starlark_cc_import 14127--experimental_stream_log_file_uploads 14128--noexperimental_stream_log_file_uploads 14129--experimental_strict_fileset_output 14130--noexperimental_strict_fileset_output 14131--experimental_strict_java_deps={off,warn,error,strict,default} 14132--experimental_total_worker_memory_limit_mb= 14133--experimental_ui_max_stdouterr_bytes= 14134--experimental_unsupported_and_brittle_include_scanning 14135--noexperimental_unsupported_and_brittle_include_scanning 14136--experimental_use_hermetic_linux_sandbox 14137--noexperimental_use_hermetic_linux_sandbox 14138--experimental_use_llvm_covmap 14139--noexperimental_use_llvm_covmap 14140--experimental_use_sandboxfs={auto,yes,no} 14141--noexperimental_use_sandboxfs 14142--experimental_use_semaphore_for_jobs 14143--noexperimental_use_semaphore_for_jobs 14144--experimental_use_validation_aspect 14145--noexperimental_use_validation_aspect 14146--experimental_use_windows_sandbox={auto,yes,no} 14147--noexperimental_use_windows_sandbox 14148--experimental_windows_sandbox_path= 14149--experimental_windows_watchfs 14150--noexperimental_windows_watchfs 14151--experimental_worker_allowlist= 14152--experimental_worker_as_resource 14153--noexperimental_worker_as_resource 14154--experimental_worker_cancellation 14155--noexperimental_worker_cancellation 14156--experimental_worker_for_repo_fetching={off,platform,virtual} 14157--experimental_worker_memory_limit_mb= 14158--experimental_worker_metrics_poll_interval= 14159--experimental_worker_multiplex_sandboxing 14160--noexperimental_worker_multiplex_sandboxing 14161--experimental_worker_sandbox_hardening 14162--noexperimental_worker_sandbox_hardening 14163--experimental_worker_strict_flagfiles 14164--noexperimental_worker_strict_flagfiles 14165--experimental_workspace_rules_log_file=path 14166--explain=path 14167--explicit_java_test_deps 14168--noexplicit_java_test_deps 14169--extra_execution_platforms= 14170--extra_toolchains= 14171--fat_apk_cpu= 14172--fat_apk_hwasan 14173--nofat_apk_hwasan 14174--fdo_instrument= 14175--fdo_optimize= 14176--fdo_prefetch_hints=label 14177--fdo_profile=label 14178--features= 14179--fission= 14180--flag_alias= 14181--flaky_test_attempts= 14182--force_pic 14183--noforce_pic 14184--gc_thrashing_limits= 14185--gc_thrashing_threshold= 14186--generate_json_trace_profile={auto,yes,no} 14187--nogenerate_json_trace_profile 14188--genrule_strategy= 14189--google_auth_scopes= 14190--google_credentials= 14191--google_default_credentials 14192--nogoogle_default_credentials 14193--grpc_keepalive_time= 14194--grpc_keepalive_timeout= 14195--grte_top=label 14196--heap_dump_on_oom 14197--noheap_dump_on_oom 14198--heuristically_drop_nodes 14199--noheuristically_drop_nodes 14200--high_priority_workers= 14201--host_action_env= 14202--host_compilation_mode={fastbuild,dbg,opt} 14203--host_compiler= 14204--host_conlyopt= 14205--host_copt= 14206--host_cpu= 14207--host_crosstool_top=label 14208--host_cxxopt= 14209--host_features= 14210--host_force_python={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 14211--host_grte_top=label 14212--host_java_launcher=label 14213--host_javacopt= 14214--host_jvmopt= 14215--host_linkopt= 14216--host_macos_minimum_os= 14217--host_per_file_copt= 14218--host_platform=label 14219--host_swiftcopt= 14220--http_connector_attempts= 14221--http_connector_retry_max_timeout= 14222--http_timeout_scaling= 14223--ignore_dev_dependency 14224--noignore_dev_dependency 14225--ignore_unsupported_sandboxing 14226--noignore_unsupported_sandboxing 14227--incompatible_allow_tags_propagation 14228--noincompatible_allow_tags_propagation 14229--incompatible_always_check_depset_elements 14230--noincompatible_always_check_depset_elements 14231--incompatible_always_include_files_in_data 14232--noincompatible_always_include_files_in_data 14233--incompatible_auto_exec_groups 14234--noincompatible_auto_exec_groups 14235--incompatible_check_sharding_support 14236--noincompatible_check_sharding_support 14237--incompatible_check_testonly_for_output_files 14238--noincompatible_check_testonly_for_output_files 14239--incompatible_check_visibility_for_toolchains 14240--noincompatible_check_visibility_for_toolchains 14241--incompatible_config_setting_private_default_visibility 14242--noincompatible_config_setting_private_default_visibility 14243--incompatible_default_to_explicit_init_py 14244--noincompatible_default_to_explicit_init_py 14245--incompatible_depset_for_java_output_source_jars 14246--noincompatible_depset_for_java_output_source_jars 14247--incompatible_depset_for_libraries_to_link_getter 14248--noincompatible_depset_for_libraries_to_link_getter 14249--incompatible_disable_native_android_rules 14250--noincompatible_disable_native_android_rules 14251--incompatible_disable_native_apple_binary_rule 14252--noincompatible_disable_native_apple_binary_rule 14253--incompatible_disable_non_executable_java_binary 14254--noincompatible_disable_non_executable_java_binary 14255--incompatible_disable_objc_library_transition 14256--noincompatible_disable_objc_library_transition 14257--incompatible_disable_starlark_host_transitions 14258--noincompatible_disable_starlark_host_transitions 14259--incompatible_disable_target_provider_fields 14260--noincompatible_disable_target_provider_fields 14261--incompatible_disallow_empty_glob 14262--noincompatible_disallow_empty_glob 14263--incompatible_disallow_legacy_py_provider 14264--noincompatible_disallow_legacy_py_provider 14265--incompatible_disallow_sdk_frameworks_attributes 14266--noincompatible_disallow_sdk_frameworks_attributes 14267--incompatible_disallow_struct_provider_syntax 14268--noincompatible_disallow_struct_provider_syntax 14269--incompatible_disallow_symlink_file_to_dir 14270--noincompatible_disallow_symlink_file_to_dir 14271--incompatible_do_not_split_linking_cmdline 14272--noincompatible_do_not_split_linking_cmdline 14273--incompatible_dont_enable_host_nonhost_crosstool_features 14274--noincompatible_dont_enable_host_nonhost_crosstool_features 14275--incompatible_dont_use_javasourceinfoprovider 14276--noincompatible_dont_use_javasourceinfoprovider 14277--incompatible_enable_android_toolchain_resolution 14278--noincompatible_enable_android_toolchain_resolution 14279--incompatible_enable_apple_toolchain_resolution 14280--noincompatible_enable_apple_toolchain_resolution 14281--incompatible_enable_proto_toolchain_resolution 14282--noincompatible_enable_proto_toolchain_resolution 14283--incompatible_enforce_config_setting_visibility 14284--noincompatible_enforce_config_setting_visibility 14285--incompatible_exclusive_test_sandboxed 14286--noincompatible_exclusive_test_sandboxed 14287--incompatible_existing_rules_immutable_view 14288--noincompatible_existing_rules_immutable_view 14289--incompatible_fail_on_unknown_attributes 14290--noincompatible_fail_on_unknown_attributes 14291--incompatible_fix_package_group_reporoot_syntax 14292--noincompatible_fix_package_group_reporoot_syntax 14293--incompatible_java_common_parameters 14294--noincompatible_java_common_parameters 14295--incompatible_legacy_local_fallback 14296--noincompatible_legacy_local_fallback 14297--incompatible_make_thinlto_command_lines_standalone 14298--noincompatible_make_thinlto_command_lines_standalone 14299--incompatible_merge_fixed_and_default_shell_env 14300--noincompatible_merge_fixed_and_default_shell_env 14301--incompatible_merge_genfiles_directory 14302--noincompatible_merge_genfiles_directory 14303--incompatible_new_actions_api 14304--noincompatible_new_actions_api 14305--incompatible_no_attr_license 14306--noincompatible_no_attr_license 14307--incompatible_no_implicit_file_export 14308--noincompatible_no_implicit_file_export 14309--incompatible_no_rule_outputs_param 14310--noincompatible_no_rule_outputs_param 14311--incompatible_objc_alwayslink_by_default 14312--noincompatible_objc_alwayslink_by_default 14313--incompatible_objc_provider_remove_linking_info 14314--noincompatible_objc_provider_remove_linking_info 14315--incompatible_package_group_has_public_syntax 14316--noincompatible_package_group_has_public_syntax 14317--incompatible_py2_outputs_are_suffixed 14318--noincompatible_py2_outputs_are_suffixed 14319--incompatible_py3_is_default 14320--noincompatible_py3_is_default 14321--incompatible_python_disable_py2 14322--noincompatible_python_disable_py2 14323--incompatible_python_disallow_native_rules 14324--noincompatible_python_disallow_native_rules 14325--incompatible_remote_build_event_upload_respect_no_cache 14326--noincompatible_remote_build_event_upload_respect_no_cache 14327--incompatible_remote_dangling_symlinks 14328--noincompatible_remote_dangling_symlinks 14329--incompatible_remote_disallow_symlink_in_tree_artifact 14330--noincompatible_remote_disallow_symlink_in_tree_artifact 14331--incompatible_remote_downloader_send_all_headers 14332--noincompatible_remote_downloader_send_all_headers 14333--incompatible_remote_output_paths_relative_to_input_root 14334--noincompatible_remote_output_paths_relative_to_input_root 14335--incompatible_remote_results_ignore_disk 14336--noincompatible_remote_results_ignore_disk 14337--incompatible_remote_symlinks 14338--noincompatible_remote_symlinks 14339--incompatible_remote_use_new_exit_code_for_lost_inputs 14340--noincompatible_remote_use_new_exit_code_for_lost_inputs 14341--incompatible_remove_legacy_whole_archive 14342--noincompatible_remove_legacy_whole_archive 14343--incompatible_require_ctx_in_configure_features 14344--noincompatible_require_ctx_in_configure_features 14345--incompatible_require_linker_input_cc_api 14346--noincompatible_require_linker_input_cc_api 14347--incompatible_run_shell_command_string 14348--noincompatible_run_shell_command_string 14349--incompatible_sandbox_hermetic_tmp 14350--noincompatible_sandbox_hermetic_tmp 14351--incompatible_stop_exporting_language_modules 14352--noincompatible_stop_exporting_language_modules 14353--incompatible_strict_action_env 14354--noincompatible_strict_action_env 14355--incompatible_struct_has_no_methods 14356--noincompatible_struct_has_no_methods 14357--incompatible_top_level_aspects_require_providers 14358--noincompatible_top_level_aspects_require_providers 14359--incompatible_unambiguous_label_stringification 14360--noincompatible_unambiguous_label_stringification 14361--incompatible_use_cc_configure_from_rules_cc 14362--noincompatible_use_cc_configure_from_rules_cc 14363--incompatible_use_host_features 14364--noincompatible_use_host_features 14365--incompatible_use_python_toolchains 14366--noincompatible_use_python_toolchains 14367--incompatible_validate_top_level_header_inclusions 14368--noincompatible_validate_top_level_header_inclusions 14369--incompatible_visibility_private_attributes_at_definition 14370--noincompatible_visibility_private_attributes_at_definition 14371--incremental_dexing 14372--noincremental_dexing 14373--instrument_test_targets 14374--noinstrument_test_targets 14375--instrumentation_filter= 14376--interface_shared_objects 14377--nointerface_shared_objects 14378--internal_spawn_scheduler 14379--nointernal_spawn_scheduler 14380--ios_memleaks 14381--noios_memleaks 14382--ios_minimum_os= 14383--ios_multi_cpus= 14384--ios_sdk_version= 14385--ios_signing_cert_name= 14386--ios_simulator_device= 14387--ios_simulator_version= 14388--j2objc_translation_flags= 14389--java_debug 14390--java_deps 14391--nojava_deps 14392--java_header_compilation 14393--nojava_header_compilation 14394--java_language_version= 14395--java_launcher=label 14396--java_runtime_version= 14397--javacopt= 14398--jobs= 14399--jvmopt= 14400--keep_going 14401--nokeep_going 14402--keep_state_after_build 14403--nokeep_state_after_build 14404--legacy_external_runfiles 14405--nolegacy_external_runfiles 14406--legacy_important_outputs 14407--nolegacy_important_outputs 14408--legacy_main_dex_list_generator=label 14409--legacy_whole_archive 14410--nolegacy_whole_archive 14411--linkopt= 14412--loading_phase_threads= 14413--local_cpu_resources= 14414--local_extra_resources= 14415--local_ram_resources= 14416--local_termination_grace_seconds= 14417--local_test_jobs= 14418--lockfile_mode={off,update,error} 14419--logging= 14420--ltobackendopt= 14421--ltoindexopt= 14422--macos_cpus= 14423--macos_minimum_os= 14424--macos_sdk_version= 14425--materialize_param_files 14426--nomaterialize_param_files 14427--max_computation_steps= 14428--max_config_changes_to_show= 14429--max_test_output_bytes= 14430--memory_profile=path 14431--memory_profile_stable_heap_parameters= 14432--memprof_profile=label 14433--minimum_os_version= 14434--modify_execution_info= 14435--nested_set_depth_limit= 14436--objc_debug_with_GLIBCXX 14437--noobjc_debug_with_GLIBCXX 14438--objc_enable_binary_stripping 14439--noobjc_enable_binary_stripping 14440--objc_generate_linkmap 14441--noobjc_generate_linkmap 14442--objc_use_dotd_pruning 14443--noobjc_use_dotd_pruning 14444--objccopt= 14445--optimizing_dexer=label 14446--output_filter= 14447--output_groups= 14448--override_module= 14449--override_repository= 14450--package_path= 14451--per_file_copt= 14452--per_file_ltobackendopt= 14453--persistent_android_dex_desugar 14454--persistent_android_resource_processor 14455--persistent_multiplex_android_dex_desugar 14456--persistent_multiplex_android_resource_processor 14457--persistent_multiplex_android_tools 14458--platform_mappings=path 14459--platform_suffix= 14460--platforms= 14461--plugin= 14462--print_relative_test_log_paths 14463--noprint_relative_test_log_paths 14464--process_headers_in_dependencies 14465--noprocess_headers_in_dependencies 14466--profile=path 14467--progress_in_terminal_title 14468--noprogress_in_terminal_title 14469--progress_report_interval= 14470--proguard_top=label 14471--propeller_optimize=label 14472--propeller_optimize_absolute_cc_profile= 14473--propeller_optimize_absolute_ld_profile= 14474--proto_compiler=label 14475--proto_toolchain_for_cc=label 14476--proto_toolchain_for_j2objc=label 14477--proto_toolchain_for_java=label 14478--proto_toolchain_for_javalite=label 14479--protocopt= 14480--python2_path= 14481--python3_path= 14482--python_native_rules_allowlist=label 14483--python_path= 14484--python_top=label 14485--python_version={py2,py3,py2and3,py2only,py3only,_internal_sentinel} 14486--record_full_profiler_data 14487--norecord_full_profiler_data 14488--registry= 14489--remote_accept_cached 14490--noremote_accept_cached 14491--remote_build_event_upload={all,minimal} 14492--remote_bytestream_uri_prefix= 14493--remote_cache= 14494--remote_cache_compression 14495--noremote_cache_compression 14496--remote_cache_header= 14497--remote_default_exec_properties= 14498--remote_default_platform_properties= 14499--remote_download_all 14500--remote_download_minimal 14501--remote_download_outputs={all,minimal,toplevel} 14502--remote_download_regex= 14503--remote_download_symlink_template= 14504--remote_download_toplevel 14505--remote_downloader_header= 14506--remote_exec_header= 14507--remote_execution_priority= 14508--remote_executor= 14509--remote_grpc_log=path 14510--remote_header= 14511--remote_instance_name= 14512--remote_local_fallback 14513--noremote_local_fallback 14514--remote_local_fallback_strategy= 14515--remote_max_connections= 14516--remote_print_execution_messages={failure,success,all} 14517--remote_proxy= 14518--remote_result_cache_priority= 14519--remote_retries= 14520--remote_retry_max_delay= 14521--remote_timeout= 14522--remote_upload_local_results 14523--noremote_upload_local_results 14524--remote_verify_downloads 14525--noremote_verify_downloads 14526--repo_env= 14527--repository_cache=path 14528--repository_cache_urls_as_default_canonical_id 14529--norepository_cache_urls_as_default_canonical_id 14530--repository_disable_download 14531--norepository_disable_download 14532--reuse_sandbox_directories 14533--noreuse_sandbox_directories 14534--run_under= 14535--run_validations 14536--norun_validations 14537--runs_per_test= 14538--runs_per_test_detects_flakes 14539--noruns_per_test_detects_flakes 14540--sandbox_add_mount_pair= 14541--sandbox_base= 14542--sandbox_block_path= 14543--sandbox_debug 14544--nosandbox_debug 14545--sandbox_default_allow_network 14546--nosandbox_default_allow_network 14547--sandbox_explicit_pseudoterminal 14548--nosandbox_explicit_pseudoterminal 14549--sandbox_fake_hostname 14550--nosandbox_fake_hostname 14551--sandbox_fake_username 14552--nosandbox_fake_username 14553--sandbox_tmpfs_path= 14554--sandbox_writable_path= 14555--save_temps 14556--nosave_temps 14557--share_native_deps 14558--noshare_native_deps 14559--shell_executable=path 14560--show_loading_progress 14561--noshow_loading_progress 14562--show_progress 14563--noshow_progress 14564--show_progress_rate_limit= 14565--show_result= 14566--show_timestamps 14567--noshow_timestamps 14568--skip_incompatible_explicit_targets 14569--noskip_incompatible_explicit_targets 14570--skyframe_high_water_mark_full_gc_drops_per_invocation= 14571--skyframe_high_water_mark_minor_gc_drops_per_invocation= 14572--skyframe_high_water_mark_threshold= 14573--slim_profile 14574--noslim_profile 14575--spawn_strategy= 14576--stamp 14577--nostamp 14578--starlark_cpu_profile= 14579--strategy= 14580--strategy_regexp= 14581--strict_filesets 14582--nostrict_filesets 14583--strict_proto_deps={off,warn,error,strict,default} 14584--strict_public_imports={off,warn,error,strict,default} 14585--strict_system_includes 14586--nostrict_system_includes 14587--strip={always,sometimes,never} 14588--stripopt= 14589--subcommands={true,pretty_print,false} 14590--swiftcopt= 14591--symlink_prefix= 14592--target_environment= 14593--target_pattern_file= 14594--target_platform_fallback= 14595--test_arg= 14596--test_env= 14597--test_filter= 14598--test_keep_going 14599--notest_keep_going 14600--test_lang_filters= 14601--test_output={summary,errors,all,streamed} 14602--test_result_expiration= 14603--test_runner_fail_fast 14604--notest_runner_fail_fast 14605--test_sharding_strategy= 14606--test_size_filters= 14607--test_strategy= 14608--test_summary={short,terse,detailed,none,testcase} 14609--test_tag_filters= 14610--test_timeout= 14611--test_timeout_filters= 14612--test_tmpdir=path 14613--test_verbose_timeout_warnings 14614--notest_verbose_timeout_warnings 14615--tls_certificate= 14616--tls_client_certificate= 14617--tls_client_key= 14618--tool_java_language_version= 14619--tool_java_runtime_version= 14620--tool_tag= 14621--toolchain_resolution_debug= 14622--track_incremental_state 14623--notrack_incremental_state 14624--trim_test_configuration 14625--notrim_test_configuration 14626--tvos_cpus= 14627--tvos_minimum_os= 14628--tvos_sdk_version= 14629--ui_actions_shown= 14630--ui_event_filters= 14631--use_ijars 14632--nouse_ijars 14633--use_target_platform_for_tests 14634--nouse_target_platform_for_tests 14635--verbose_explanations 14636--noverbose_explanations 14637--verbose_failures 14638--noverbose_failures 14639--verbose_test_summary 14640--noverbose_test_summary 14641--visionos_cpus= 14642--watchfs 14643--nowatchfs 14644--watchos_cpus= 14645--watchos_minimum_os= 14646--watchos_sdk_version= 14647--worker_extra_flag= 14648--worker_max_instances= 14649--worker_max_multiplex_instances= 14650--worker_multiplex 14651--noworker_multiplex 14652--worker_quit_after_build 14653--noworker_quit_after_build 14654--worker_sandboxing 14655--noworker_sandboxing 14656--worker_verbose 14657--noworker_verbose 14658--workspace_status_command=path 14659--xbinary_fdo=label 14660--xcode_version= 14661--xcode_version_config=label 14662--zip_undeclared_test_outputs 14663--nozip_undeclared_test_outputs 14664" 14665BAZEL_COMMAND_VERSION_FLAGS=" 14666--allow_yanked_versions= 14667--announce_rc 14668--noannounce_rc 14669--attempt_to_print_relative_paths 14670--noattempt_to_print_relative_paths 14671--bep_maximum_open_remote_upload_files= 14672--bes_backend= 14673--bes_check_preceding_lifecycle_events 14674--nobes_check_preceding_lifecycle_events 14675--bes_header= 14676--bes_instance_name= 14677--bes_keywords= 14678--bes_lifecycle_events 14679--nobes_lifecycle_events 14680--bes_oom_finish_upload_timeout= 14681--bes_outerr_buffer_size= 14682--bes_outerr_chunk_size= 14683--bes_proxy= 14684--bes_results_url= 14685--bes_system_keywords= 14686--bes_timeout= 14687--bes_upload_mode={wait_for_upload_complete,nowait_for_upload_complete,fully_async} 14688--build_event_binary_file= 14689--build_event_binary_file_path_conversion 14690--nobuild_event_binary_file_path_conversion 14691--build_event_json_file= 14692--build_event_json_file_path_conversion 14693--nobuild_event_json_file_path_conversion 14694--build_event_max_named_set_of_file_entries= 14695--build_event_publish_all_actions 14696--nobuild_event_publish_all_actions 14697--build_event_text_file= 14698--build_event_text_file_path_conversion 14699--nobuild_event_text_file_path_conversion 14700--build_metadata= 14701--check_bazel_compatibility={error,warning,off} 14702--check_bzl_visibility 14703--nocheck_bzl_visibility 14704--check_direct_dependencies={off,warning,error} 14705--color={yes,no,auto} 14706--config= 14707--credential_helper= 14708--credential_helper_cache_duration= 14709--credential_helper_timeout= 14710--curses={yes,no,auto} 14711--disk_cache=path 14712--distdir= 14713--enable_bzlmod 14714--noenable_bzlmod 14715--enable_platform_specific_config 14716--noenable_platform_specific_config 14717--experimental_action_resource_set 14718--noexperimental_action_resource_set 14719--experimental_announce_profile_path 14720--noexperimental_announce_profile_path 14721--experimental_bep_target_summary 14722--noexperimental_bep_target_summary 14723--experimental_build_event_expand_filesets 14724--noexperimental_build_event_expand_filesets 14725--experimental_build_event_fully_resolve_fileset_symlinks 14726--noexperimental_build_event_fully_resolve_fileset_symlinks 14727--experimental_build_event_upload_max_retries= 14728--experimental_build_event_upload_retry_minimum_delay= 14729--experimental_build_event_upload_strategy= 14730--experimental_bzl_visibility 14731--noexperimental_bzl_visibility 14732--experimental_cc_shared_library 14733--noexperimental_cc_shared_library 14734--experimental_circuit_breaker_strategy={failure} 14735--experimental_collect_load_average_in_profiler 14736--noexperimental_collect_load_average_in_profiler 14737--experimental_collect_pressure_stall_indicators 14738--noexperimental_collect_pressure_stall_indicators 14739--experimental_collect_resource_estimation 14740--noexperimental_collect_resource_estimation 14741--experimental_collect_system_network_usage 14742--noexperimental_collect_system_network_usage 14743--experimental_collect_worker_data_in_profiler 14744--noexperimental_collect_worker_data_in_profiler 14745--experimental_command_profile 14746--noexperimental_command_profile 14747--experimental_disable_external_package 14748--noexperimental_disable_external_package 14749--experimental_downloader_config= 14750--experimental_enable_android_migration_apis 14751--noexperimental_enable_android_migration_apis 14752--experimental_enable_scl_dialect 14753--noexperimental_enable_scl_dialect 14754--experimental_google_legacy_api 14755--noexperimental_google_legacy_api 14756--experimental_guard_against_concurrent_changes 14757--noexperimental_guard_against_concurrent_changes 14758--experimental_isolated_extension_usages 14759--noexperimental_isolated_extension_usages 14760--experimental_java_library_export 14761--noexperimental_java_library_export 14762--experimental_platforms_api 14763--noexperimental_platforms_api 14764--experimental_profile_additional_tasks= 14765--experimental_profile_include_primary_output 14766--noexperimental_profile_include_primary_output 14767--experimental_profile_include_target_label 14768--noexperimental_profile_include_target_label 14769--experimental_record_metrics_for_all_mnemonics 14770--noexperimental_record_metrics_for_all_mnemonics 14771--experimental_remote_cache_async 14772--noexperimental_remote_cache_async 14773--experimental_remote_cache_lease_extension 14774--noexperimental_remote_cache_lease_extension 14775--experimental_remote_cache_ttl= 14776--experimental_remote_capture_corrupted_outputs=path 14777--experimental_remote_discard_merkle_trees 14778--noexperimental_remote_discard_merkle_trees 14779--experimental_remote_downloader= 14780--experimental_remote_downloader_local_fallback 14781--noexperimental_remote_downloader_local_fallback 14782--experimental_remote_execution_keepalive 14783--noexperimental_remote_execution_keepalive 14784--experimental_remote_failure_rate_threshold= 14785--experimental_remote_failure_window_interval= 14786--experimental_remote_mark_tool_inputs 14787--noexperimental_remote_mark_tool_inputs 14788--experimental_remote_merkle_tree_cache 14789--noexperimental_remote_merkle_tree_cache 14790--experimental_remote_merkle_tree_cache_size= 14791--experimental_remote_require_cached 14792--noexperimental_remote_require_cached 14793--experimental_repo_remote_exec 14794--noexperimental_repo_remote_exec 14795--experimental_repository_cache_hardlinks 14796--noexperimental_repository_cache_hardlinks 14797--experimental_repository_downloader_retries= 14798--experimental_resolved_file_instead_of_workspace= 14799--experimental_run_bep_event_include_residue 14800--noexperimental_run_bep_event_include_residue 14801--experimental_scale_timeouts= 14802--experimental_sibling_repository_layout 14803--noexperimental_sibling_repository_layout 14804--experimental_stream_log_file_uploads 14805--noexperimental_stream_log_file_uploads 14806--experimental_ui_max_stdouterr_bytes= 14807--experimental_windows_watchfs 14808--noexperimental_windows_watchfs 14809--experimental_worker_for_repo_fetching={off,platform,virtual} 14810--experimental_workspace_rules_log_file=path 14811--gc_thrashing_limits= 14812--gc_thrashing_threshold= 14813--generate_json_trace_profile={auto,yes,no} 14814--nogenerate_json_trace_profile 14815--gnu_format 14816--nognu_format 14817--google_auth_scopes= 14818--google_credentials= 14819--google_default_credentials 14820--nogoogle_default_credentials 14821--grpc_keepalive_time= 14822--grpc_keepalive_timeout= 14823--heap_dump_on_oom 14824--noheap_dump_on_oom 14825--heuristically_drop_nodes 14826--noheuristically_drop_nodes 14827--http_connector_attempts= 14828--http_connector_retry_max_timeout= 14829--http_timeout_scaling= 14830--ignore_dev_dependency 14831--noignore_dev_dependency 14832--incompatible_allow_tags_propagation 14833--noincompatible_allow_tags_propagation 14834--incompatible_always_check_depset_elements 14835--noincompatible_always_check_depset_elements 14836--incompatible_depset_for_java_output_source_jars 14837--noincompatible_depset_for_java_output_source_jars 14838--incompatible_depset_for_libraries_to_link_getter 14839--noincompatible_depset_for_libraries_to_link_getter 14840--incompatible_disable_non_executable_java_binary 14841--noincompatible_disable_non_executable_java_binary 14842--incompatible_disable_objc_library_transition 14843--noincompatible_disable_objc_library_transition 14844--incompatible_disable_starlark_host_transitions 14845--noincompatible_disable_starlark_host_transitions 14846--incompatible_disable_target_provider_fields 14847--noincompatible_disable_target_provider_fields 14848--incompatible_disallow_empty_glob 14849--noincompatible_disallow_empty_glob 14850--incompatible_disallow_struct_provider_syntax 14851--noincompatible_disallow_struct_provider_syntax 14852--incompatible_disallow_symlink_file_to_dir 14853--noincompatible_disallow_symlink_file_to_dir 14854--incompatible_do_not_split_linking_cmdline 14855--noincompatible_do_not_split_linking_cmdline 14856--incompatible_enable_proto_toolchain_resolution 14857--noincompatible_enable_proto_toolchain_resolution 14858--incompatible_existing_rules_immutable_view 14859--noincompatible_existing_rules_immutable_view 14860--incompatible_fail_on_unknown_attributes 14861--noincompatible_fail_on_unknown_attributes 14862--incompatible_fix_package_group_reporoot_syntax 14863--noincompatible_fix_package_group_reporoot_syntax 14864--incompatible_java_common_parameters 14865--noincompatible_java_common_parameters 14866--incompatible_merge_fixed_and_default_shell_env 14867--noincompatible_merge_fixed_and_default_shell_env 14868--incompatible_new_actions_api 14869--noincompatible_new_actions_api 14870--incompatible_no_attr_license 14871--noincompatible_no_attr_license 14872--incompatible_no_implicit_file_export 14873--noincompatible_no_implicit_file_export 14874--incompatible_no_rule_outputs_param 14875--noincompatible_no_rule_outputs_param 14876--incompatible_objc_provider_remove_linking_info 14877--noincompatible_objc_provider_remove_linking_info 14878--incompatible_package_group_has_public_syntax 14879--noincompatible_package_group_has_public_syntax 14880--incompatible_remote_build_event_upload_respect_no_cache 14881--noincompatible_remote_build_event_upload_respect_no_cache 14882--incompatible_remote_dangling_symlinks 14883--noincompatible_remote_dangling_symlinks 14884--incompatible_remote_disallow_symlink_in_tree_artifact 14885--noincompatible_remote_disallow_symlink_in_tree_artifact 14886--incompatible_remote_downloader_send_all_headers 14887--noincompatible_remote_downloader_send_all_headers 14888--incompatible_remote_output_paths_relative_to_input_root 14889--noincompatible_remote_output_paths_relative_to_input_root 14890--incompatible_remote_results_ignore_disk 14891--noincompatible_remote_results_ignore_disk 14892--incompatible_remote_symlinks 14893--noincompatible_remote_symlinks 14894--incompatible_require_linker_input_cc_api 14895--noincompatible_require_linker_input_cc_api 14896--incompatible_run_shell_command_string 14897--noincompatible_run_shell_command_string 14898--incompatible_stop_exporting_language_modules 14899--noincompatible_stop_exporting_language_modules 14900--incompatible_struct_has_no_methods 14901--noincompatible_struct_has_no_methods 14902--incompatible_top_level_aspects_require_providers 14903--noincompatible_top_level_aspects_require_providers 14904--incompatible_unambiguous_label_stringification 14905--noincompatible_unambiguous_label_stringification 14906--incompatible_use_cc_configure_from_rules_cc 14907--noincompatible_use_cc_configure_from_rules_cc 14908--incompatible_visibility_private_attributes_at_definition 14909--noincompatible_visibility_private_attributes_at_definition 14910--keep_state_after_build 14911--nokeep_state_after_build 14912--legacy_important_outputs 14913--nolegacy_important_outputs 14914--lockfile_mode={off,update,error} 14915--logging= 14916--max_computation_steps= 14917--memory_profile=path 14918--memory_profile_stable_heap_parameters= 14919--nested_set_depth_limit= 14920--override_module= 14921--override_repository= 14922--profile=path 14923--progress_in_terminal_title 14924--noprogress_in_terminal_title 14925--record_full_profiler_data 14926--norecord_full_profiler_data 14927--registry= 14928--remote_accept_cached 14929--noremote_accept_cached 14930--remote_build_event_upload={all,minimal} 14931--remote_bytestream_uri_prefix= 14932--remote_cache= 14933--remote_cache_compression 14934--noremote_cache_compression 14935--remote_cache_header= 14936--remote_default_exec_properties= 14937--remote_default_platform_properties= 14938--remote_download_all 14939--remote_download_minimal 14940--remote_download_outputs={all,minimal,toplevel} 14941--remote_download_regex= 14942--remote_download_symlink_template= 14943--remote_download_toplevel 14944--remote_downloader_header= 14945--remote_exec_header= 14946--remote_execution_priority= 14947--remote_executor= 14948--remote_grpc_log=path 14949--remote_header= 14950--remote_instance_name= 14951--remote_local_fallback 14952--noremote_local_fallback 14953--remote_local_fallback_strategy= 14954--remote_max_connections= 14955--remote_print_execution_messages={failure,success,all} 14956--remote_proxy= 14957--remote_result_cache_priority= 14958--remote_retries= 14959--remote_retry_max_delay= 14960--remote_timeout= 14961--remote_upload_local_results 14962--noremote_upload_local_results 14963--remote_verify_downloads 14964--noremote_verify_downloads 14965--repo_env= 14966--repository_cache=path 14967--repository_cache_urls_as_default_canonical_id 14968--norepository_cache_urls_as_default_canonical_id 14969--repository_disable_download 14970--norepository_disable_download 14971--show_progress 14972--noshow_progress 14973--show_progress_rate_limit= 14974--show_timestamps 14975--noshow_timestamps 14976--skyframe_high_water_mark_full_gc_drops_per_invocation= 14977--skyframe_high_water_mark_minor_gc_drops_per_invocation= 14978--skyframe_high_water_mark_threshold= 14979--slim_profile 14980--noslim_profile 14981--starlark_cpu_profile= 14982--tls_certificate= 14983--tls_client_certificate= 14984--tls_client_key= 14985--tool_tag= 14986--track_incremental_state 14987--notrack_incremental_state 14988--ui_actions_shown= 14989--ui_event_filters= 14990--watchfs 14991--nowatchfs 14992" 14993