File tree Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Expand file tree Collapse file tree 2 files changed +0
-16
lines changed Original file line number Diff line number Diff line change 1313# limitations under the License.
1414"""All providers for rule-based bazel toolchain config."""
1515
16- # Until the providers are stabilized, ensure that rules_cc is the only place
17- # that can access the providers directly.
18- # Once it's stabilized, we *may* consider opening up parts of the API, or we may
19- # decide to just require users to use the public user-facing rules.
20- visibility ([
21- "//cc/toolchains/..." ,
22- "//cc/private/toolchain/..." ,
23- "//tests/rule_based_toolchain/..." ,
24- ])
25-
2616# Note that throughout this file, we never use a list. This is because mutable
2717# types cannot be stored in depsets. Thus, we type them as a sequence in the
2818# provider, and convert them to a tuple in the constructor to ensure
Original file line number Diff line number Diff line change 2727 legacy_with_feature_set = "with_feature_set" ,
2828)
2929
30- visibility ([
31- "//cc/toolchains/..." ,
32- "//cc/private/toolchain/..." ,
33- "//tests/rule_based_toolchain/..." ,
34- ])
35-
3630# Note that throughout this file, we sort anything for which the order is
3731# nondeterministic (eg. depset's .to_list(), dictionary iteration).
3832# This allows our tests to call equals() on the output,
You can’t perform that action at this time.
0 commit comments