mirror of
https://github.com/bazelbuild/rules_cc
synced 2024-11-27 20:43:26 +00:00
083ace4f11
Otherwise rules_cc is transitively incompatible with Bazel 6 through the chain stardoc 0.7.0 -> rules_java 7.6.1. `stardoc` targets are not needed by consumers of the ruleset.
17 lines
545 B
Plaintext
17 lines
545 B
Plaintext
module(
|
|
name = "rules_cc",
|
|
version = "0.0.10",
|
|
compatibility_level = 1,
|
|
)
|
|
|
|
bazel_dep(name = "bazel_skylib", version = "1.7.1")
|
|
bazel_dep(name = "platforms", version = "0.0.10")
|
|
|
|
cc_configure = use_extension("//cc:extensions.bzl", "cc_configure_extension")
|
|
use_repo(cc_configure, "local_config_cc", "local_config_cc_toolchains")
|
|
|
|
register_toolchains("@local_config_cc_toolchains//:all")
|
|
|
|
bazel_dep(name = "rules_testing", version = "0.6.0", dev_dependency = True)
|
|
bazel_dep(name = "stardoc", version = "0.7.0", dev_dependency = True)
|