blob: 20c10a3eb68dd13fb33e90d91053e4038932c5fa [file] [log] [blame]
# Copyright 2020 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.
# gn-format disable
import("//build_overrides/pigweed.gni")
import("$dir_pw_protobuf_compiler/nanopb.gni")
import("$dir_pw_protobuf_compiler/proto.gni")
import("$dir_pw_toolchain/host_clang/toolchains.gni")
import("$dir_pw_toolchain/host_gcc/toolchains.gni")
_host_common = {
# Use logging-based test output on host.
pw_unit_test_MAIN = "$dir_pw_unit_test:logging_main"
# Configure backend for assert facade.
pw_assert_BACKEND = "$dir_pw_assert_basic"
# Configure backend for logging facade.
pw_log_BACKEND = "$dir_pw_log_basic"
# Configure backend for pw_sys_io facade.
pw_sys_io_BACKEND = "$dir_pw_sys_io_stdio"
# Allow nanopb to be toggled via a build arg on host for easy testing.
_has_nanopb = pw_protobuf_GENERATORS + [ "nanopb" ] - [ "nanopb" ] !=
pw_protobuf_GENERATORS
if (dir_pw_third_party_nanopb != "" && !_has_nanopb) {
pw_protobuf_GENERATORS += [ "nanopb" ]
}
pw_IS_HOST_TOOLCHAIN = true
}
# Linux-specific target configuration.
_linux_config = {
pw_bloat_BLOATY_CONFIG = get_path_info("linux.bloaty", "abspath")
pw_unit_test_AUTOMATIC_RUNNER = get_path_info("run_test", "abspath")
}
# macOS-specific target configuration.
_mac_config = {
pw_bloat_BLOATY_CONFIG = get_path_info("macos.bloaty", "abspath")
pw_unit_test_AUTOMATIC_RUNNER = get_path_info("run_test", "abspath")
}
# Windows-specific target configuration.
_win_config = {
# This is here as bloaty_config_file cannot be an empty string or GN fails.
# TODO(frolv): Add this file and enable size reports on Windows.
pw_bloat_BLOATY_CONFIG = get_path_info("windows.bloaty", "abspath")
pw_unit_test_AUTOMATIC_RUNNER = get_path_info("run_test.bat", "abspath")
}
_os_specific_config = {
if (host_os == "linux") {
forward_variables_from(_linux_config, "*")
} else if (host_os == "mac") {
forward_variables_from(_mac_config, "*")
} else if (host_os == "win") {
forward_variables_from(_win_config, "*")
}
}
pw_target_toolchain_host = {
_excluded_members = [
"defaults",
"name",
]
clang_debug = {
name = "host_clang_debug"
_toolchain_base = pw_toolchain_host_clang.debug
forward_variables_from(_toolchain_base, "*", _excluded_members)
defaults = {
forward_variables_from(_toolchain_base.defaults, "*")
forward_variables_from(_host_common, "*")
forward_variables_from(_os_specific_config, "*")
}
}
clang_speed_optimized = {
name = "host_clang_speed_optimized"
_toolchain_base = pw_toolchain_host_clang.speed_optimized
forward_variables_from(_toolchain_base, "*", _excluded_members)
defaults = {
forward_variables_from(_toolchain_base.defaults, "*")
forward_variables_from(_host_common, "*")
forward_variables_from(_os_specific_config, "*")
}
}
clang_size_optimized = {
name = "host_clang_size_optimized"
_toolchain_base = pw_toolchain_host_clang.size_optimized
forward_variables_from(_toolchain_base, "*", _excluded_members)
defaults = {
forward_variables_from(_toolchain_base.defaults, "*")
forward_variables_from(_host_common, "*")
forward_variables_from(_os_specific_config, "*")
}
}
gcc_debug = {
name = "host_gcc_debug"
_toolchain_base = pw_toolchain_host_gcc.debug
forward_variables_from(_toolchain_base, "*", _excluded_members)
defaults = {
forward_variables_from(_toolchain_base.defaults, "*")
forward_variables_from(_host_common, "*")
forward_variables_from(_os_specific_config, "*")
}
}
gcc_speed_optimized = {
name = "host_gcc_speed_optimized"
_toolchain_base = pw_toolchain_host_gcc.speed_optimized
forward_variables_from(_toolchain_base, "*", _excluded_members)
defaults = {
forward_variables_from(_toolchain_base.defaults, "*")
forward_variables_from(_host_common, "*")
forward_variables_from(_os_specific_config, "*")
}
}
gcc_size_optimized = {
name = "host_gcc_size_optimized"
_toolchain_base = pw_toolchain_host_gcc.size_optimized
forward_variables_from(_toolchain_base, "*", _excluded_members)
defaults = {
forward_variables_from(_toolchain_base.defaults, "*")
forward_variables_from(_host_common, "*")
forward_variables_from(_os_specific_config, "*")
}
}
}
# This list just contains the members of the above scope for convenience to make
# it trivial to generate all the toolchains in this file via a
# `generate_toolchains` target.
pw_target_toolchain_host_list = [
pw_target_toolchain_host.clang_debug,
pw_target_toolchain_host.clang_speed_optimized,
pw_target_toolchain_host.clang_size_optimized,
pw_target_toolchain_host.gcc_debug,
pw_target_toolchain_host.gcc_speed_optimized,
pw_target_toolchain_host.gcc_size_optimized,
]