| # Copyright 2023 The Pigweed Authors | 
 | # | 
 | # Licensed under the Apache License, Version 2.0 (the "License"); you may not | 
 | # use this file except in compliance with the License. You may obtain a copy of | 
 | # the License at | 
 | # | 
 | #     https://www.apache.org/licenses/LICENSE-2.0 | 
 | # | 
 | # Unless required by applicable law or agreed to in writing, software | 
 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT | 
 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the | 
 | # License for the specific language governing permissions and limitations under | 
 | # the License. | 
 |  | 
 | # TODO: https://pwbug.dev/319665090: Disable hermetic sandbox tmp due to issues | 
 | # with arm toolchain. | 
 | build --noincompatible_sandbox_hermetic_tmp | 
 |  | 
 | # Do not attempt to configure an autodetected (local) toolchain. We vendor all | 
 | # our toolchains, and CI VMs may not have any local toolchain to detect. | 
 | common --repo_env=BAZEL_DO_NOT_DETECT_CPP_TOOLCHAIN=1 | 
 |  | 
 | common --custom_malloc=//targets:malloc | 
 |  | 
 | # Ignore all warnings in third-party code. | 
 | common --per_file_copt=external/.*@-w | 
 | common --host_per_file_copt=external/.*@-w | 
 |  | 
 | # Required for new toolchain resolution API. | 
 | build --incompatible_enable_cc_toolchain_resolution | 
 |  | 
 | # Expose exec toolchains for Python. | 
 | build --@rules_python//python/config_settings:exec_tools_toolchain=enabled | 
 |  | 
 | # Default targets to build when running: | 
 | # bazel build --config=presubmit | 
 | build:presubmit -- \ | 
 |   //... \ | 
 |   //examples/01_blinky:blinky \ | 
 |   //examples/01_blinky:rp2040_blinky.elf \ | 
 |   //examples/01_blinky:simulator_blinky \ | 
 |   //examples/01_blinky:simulator_console \ | 
 |   //examples/01_blinky:stm32_blinky.elf \ | 
 |   //examples/02_unit_testing:rp2040_test_runner_app.elf \ | 
 |   //examples/02_unit_testing:stm32_test_runner_app.elf \ | 
 |   //examples/02_unit_testing:test_runner_app \ | 
 |   //examples/03_rpc:rp2040_rpc_main.elf \ | 
 |   //examples/03_rpc:rpc_main \ | 
 |   //examples/03_rpc:simulator_console \ | 
 |   //examples/03_rpc:simulator_rpc \ | 
 |   //examples/03_rpc:stm32_rpc_main.elf \ | 
 |   //tools:console \ | 
 |   //tools:device_sim | 
 |  | 
 |  | 
 | # Don't automatically create __init__.py files. | 
 | # | 
 | # This prevents spurious package name collisions at import time, and should be | 
 | # the default (https://github.com/bazelbuild/bazel/issues/7386). It's | 
 | # particularly helpful for Pigweed, because we have many potential package name | 
 | # collisions due to a profusion of stuttering paths like | 
 | # pw_transfer/py/pw_transfer. | 
 | common --incompatible_default_to_explicit_init_py | 
 |  | 
 | # Error output settings. | 
 | common --verbose_failures | 
 | test --test_output=errors | 
 |  | 
 | # Use the remote cache. This will only work for users who have permission to access it. | 
 | common:remote_cache --remote_cache=grpcs://remotebuildexecution.googleapis.com | 
 | common:remote_cache --google_default_credentials=true | 
 | common:remote_cache --remote_instance_name=projects/pigweed-rbe-open/instances/default-instance | 
 | common:remote_cache --remote_upload_local_results=false | 
 |  | 
 | # User bazelrc file; see | 
 | # https://bazel.build/configure/best-practices#bazelrc-file | 
 | # | 
 | # Note: this should be at the bottom of the file, so that user-specified | 
 | # options override anything in this file | 
 | # (https://bazel.build/run/bazelrc#imports) | 
 | try-import %workspace%/user.bazelrc |