blob: 8aaa316a0aa68722cbb7c258e5c4cb2fbf20835c [file] [edit]
load("@rules_testing//lib:util.bzl", "util")
load("//cc/toolchains:args.bzl", "cc_args")
load("//cc/toolchains:feature.bzl", "cc_feature")
load("//cc/toolchains:feature_set.bzl", "cc_feature_set")
load("//cc/toolchains:legacy_tool.bzl", "cc_legacy_tool")
load("//cc/toolchains:make_variable.bzl", "cc_make_variable")
load("//cc/toolchains:tool.bzl", "cc_tool")
load("//cc/toolchains:tool_map.bzl", "cc_tool_map")
load("//cc/toolchains:toolchain.bzl", "cc_toolchain")
load("//cc/toolchains/args:sysroot.bzl", "cc_sysroot")
load("//cc/toolchains/impl:external_feature.bzl", "cc_external_feature")
load("//cc/toolchains/impl:toolchain_config.bzl", "cc_legacy_file_group", "cc_toolchain_config")
load("//tests/rule_based_toolchain:analysis_test_suite.bzl", "analysis_test_suite")
load(":toolchain_config_test.bzl", "TARGETS", "TESTS")
util.helper_target(
cc_feature_set,
name = "all_simple_features",
all_of = [
":simple_feature",
"simple_feature2",
],
)
util.helper_target(
cc_external_feature,
name = "builtin_feature",
feature_name = "builtin_feature",
overridable = True,
)
util.helper_target(
cc_args,
name = "c_compile_args",
actions = ["//tests/rule_based_toolchain/actions:c_compile"],
allowlist_include_directories = ["//tests/rule_based_toolchain/testdata:subdirectory_1"],
args = ["c_compile_args"],
data = [
"//tests/rule_based_toolchain/testdata:file1",
"//tests/rule_based_toolchain/testdata:subdirectory_1",
],
)
util.helper_target(
cc_args,
name = "cpp_compile_args",
actions = ["//tests/rule_based_toolchain/actions:cpp_compile"],
args = ["cpp_compile_args"],
env = {"CPP_COMPILE": "1"},
)
util.helper_target(
cc_args,
name = "c_compile_env_args",
actions = ["//tests/rule_based_toolchain/actions:c_compile"],
env = {"FROM_ARGS": "args-env"},
)
cc_tool(
name = "c_compile_tool",
src = "//tests/rule_based_toolchain/testdata:bin_wrapper",
allowlist_include_directories = ["//tests/rule_based_toolchain/testdata:subdirectory_3"],
capabilities = ["//cc/toolchains/capabilities:supports_pic"],
data = ["//tests/rule_based_toolchain/testdata:subdirectory_3"],
)
cc_sysroot(
name = "sysroot",
actions = [
"//cc/toolchains/actions:cpp_compile_actions",
"//cc/toolchains/actions:c_compile",
"//cc/toolchains/actions:link_actions",
"//tests/rule_based_toolchain/actions:c_compile",
"//tests/rule_based_toolchain/actions:cpp_compile",
],
sysroot = "//tests/rule_based_toolchain/testdata:directory",
)
util.helper_target(
cc_toolchain_config,
name = "collects_files_toolchain_config",
args = [
":sysroot",
":c_compile_args",
],
enabled_features = [":simple_feature"],
known_features = [":compile_feature"],
tool_map = ":compile_tool_map",
)
util.helper_target(
cc_legacy_file_group,
name = "collects_files_c_compile",
actions = ["//tests/rule_based_toolchain/actions:c_compile"],
config = ":collects_files_toolchain_config",
)
util.helper_target(
cc_legacy_file_group,
name = "collects_files_cpp_compile",
actions = ["//tests/rule_based_toolchain/actions:cpp_compile"],
config = ":collects_files_toolchain_config",
)
util.helper_target(
cc_args,
name = "compile_args",
actions = ["//tests/rule_based_toolchain/actions:all_compile"],
allowlist_include_directories = ["//tests/rule_based_toolchain/testdata:subdirectory_2"],
args = ["compile_args"],
data = [
"//tests/rule_based_toolchain/testdata:file2",
"//tests/rule_based_toolchain/testdata:subdirectory_2",
],
)
util.helper_target(
cc_tool_map,
name = "compile_tool_map",
tools = {
"//tests/rule_based_toolchain/actions:c_compile": ":c_compile_tool",
"//tests/rule_based_toolchain/actions:cpp_compile": "//tests/rule_based_toolchain/tool:wrapped_tool",
},
)
util.helper_target(
cc_tool_map,
name = "tool_env_tool_map",
tools = {
"//tests/rule_based_toolchain/actions:c_compile": "//tests/rule_based_toolchain/tool:tool_with_env",
},
)
util.helper_target(
cc_feature,
name = "compile_feature",
args = [":compile_args"],
feature_name = "compile_feature",
)
util.helper_target(
cc_tool_map,
name = "c_compile_tool_map",
tools = {
"//tests/rule_based_toolchain/actions:c_compile": "//tests/rule_based_toolchain/tool:wrapped_tool",
},
)
util.helper_target(
cc_tool_map,
name = "empty_tool_map",
tools = {},
)
util.helper_target(
cc_feature,
name = "implies_simple_feature",
args = [":c_compile_args"],
feature_name = "implies",
implies = [":simple_feature"],
)
util.helper_target(
cc_feature,
name = "overrides_feature",
args = [":c_compile_args"],
overrides = ":builtin_feature",
)
util.helper_target(
cc_args,
name = "requires_all_simple_args",
actions = ["//tests/rule_based_toolchain/actions:c_compile"],
args = ["--foo"],
requires_any_of = [":all_simple_features"],
)
util.helper_target(
cc_args,
name = "requires_supports_pic_args",
actions = ["//tests/rule_based_toolchain/actions:c_compile"],
args = ["--pic"],
requires_any_of = ["//cc/toolchains/capabilities:supports_pic"],
)
util.helper_target(
cc_feature,
name = "requires_all_simple_feature",
args = [":c_compile_args"],
feature_name = "requires_any_simple",
requires_any_of = [":all_simple_features"],
)
util.helper_target(
cc_feature,
name = "requires_any_simple_feature",
args = [":c_compile_args"],
feature_name = "requires_any_simple",
requires_any_of = [
":simple_feature",
":simple_feature2",
],
)
util.helper_target(
cc_feature,
name = "same_feature_name",
args = [":c_compile_args"],
feature_name = "simple_feature",
visibility = ["//tests/rule_based_toolchain:__subpackages__"],
)
util.helper_target(
cc_feature,
name = "simple_feature",
args = [":c_compile_args"],
feature_name = "simple_feature",
)
util.helper_target(
cc_feature,
name = "simple_feature2",
args = [":c_compile_args"],
feature_name = "simple_feature2",
visibility = ["//tests/rule_based_toolchain:__subpackages__"],
)
util.helper_target(
cc_toolchain_config,
name = "tool_env_toolchain_config",
args = [":c_compile_env_args"],
tool_map = ":tool_env_tool_map",
)
cc_legacy_tool(
name = "legacy_gcov",
path = "/usr/bin/gcov",
tool_name = "gcov",
)
cc_make_variable(
name = "rules_based_make_variable",
value = "rules-based-value",
variable_name = "RULES_BASED_VAR",
)
util.helper_target(
cc_toolchain_config,
name = "toolchain_config_with_legacy_tools",
legacy_tools = [
":legacy_gcov",
],
tool_map = ":empty_tool_map",
)
cc_toolchain(
name = "rules_based_cc_toolchain",
compiler = "rules-based-compiler",
legacy_tools = [
":legacy_gcov",
],
make_variables = [":rules_based_make_variable"],
tags = ["manual"],
target_system_name = "rules-based-system",
tool_map = ":empty_tool_map",
)
alias(
name = "rules_based_cc_toolchain_generated_config",
actual = ":_rules_based_cc_toolchain_config",
tags = ["manual"],
)
analysis_test_suite(
name = "test_suite",
targets = TARGETS,
tests = TESTS,
)