| # Copyright 2022 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. | 
 |  | 
 | import("//build_overrides/pigweed.gni") | 
 |  | 
 | # Inherit from a Pigweed upstream toolchain and override backends as needed. | 
 | toolchain_overrides = { | 
 |   # Configure backend for assert facade. | 
 |   pw_assert_BACKEND = dir_pw_assert_basic | 
 |  | 
 |   pw_async_EXPERIMENTAL_MODULE_VISIBILITY = [ "$dir_pw_async_bench:*" ] | 
 |   pw_async_TASK_BACKEND = "$dir_pw_async_basic:task" | 
 |  | 
 |   # Configure the pw_log facade for Base64 tokenized logging. | 
 |   # pw_log_BACKEND = dir_pw_log_tokenized | 
 |   # pw_tokenizer_GLOBAL_HANDLER_WITH_PAYLOAD_BACKEND = | 
 |   #     "$dir_pw_log_tokenized:base64_over_hdlc" | 
 |  | 
 |   # Alternately, configure pw_log for plain text logging | 
 |   pw_log_BACKEND = dir_pw_log_basic | 
 |  | 
 |   # Path to the nanopb installation. Defaults to included git module. | 
 |   dir_pw_third_party_nanopb = "//third_party/nanopb" | 
 |  | 
 |   pw_build_LINK_DEPS = [ | 
 |     "$dir_pw_assert:impl", | 
 |     "$dir_pw_log:impl", | 
 |   ] | 
 | } |