mirror of
https://github.com/bazelbuild/rules_cc
synced 2024-11-30 22:41:22 +00:00
db087578f7
Implement cc_feature_set and cc_feature_constraint. END_PUBLIC PiperOrigin-RevId: 610713183 Change-Id: Ia009ac536b71cd9aa44578f823f13361c1580e37
58 lines
1.6 KiB
Python
58 lines
1.6 KiB
Python
# Copyright 2024 The Bazel Authors. All rights reserved.
|
|
#
|
|
# 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
|
|
#
|
|
# http://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.
|
|
"""Implementation of the cc_feature_set rule."""
|
|
|
|
load("//cc/toolchains/impl:collect.bzl", "collect_features")
|
|
load("//cc/toolchains/impl:features_attr.bzl", "require_features_attr")
|
|
load(
|
|
":cc_toolchain_info.bzl",
|
|
"FeatureConstraintInfo",
|
|
"FeatureSetInfo",
|
|
)
|
|
|
|
def _cc_feature_set_impl(ctx):
|
|
features = collect_features(ctx.attr.features_)
|
|
return [
|
|
FeatureSetInfo(label = ctx.label, features = features),
|
|
FeatureConstraintInfo(
|
|
label = ctx.label,
|
|
all_of = features,
|
|
none_of = depset([]),
|
|
),
|
|
]
|
|
|
|
_cc_feature_set = rule(
|
|
implementation = _cc_feature_set_impl,
|
|
attrs = {
|
|
"features_": attr.label_list(
|
|
providers = [FeatureSetInfo],
|
|
doc = "A set of features",
|
|
),
|
|
},
|
|
provides = [FeatureSetInfo],
|
|
doc = """Defines a set of features.
|
|
|
|
Example:
|
|
|
|
cc_feature_set(
|
|
name = "thin_lto_requirements",
|
|
all_of = [
|
|
":thin_lto",
|
|
":opt",
|
|
],
|
|
)
|
|
""",
|
|
)
|
|
cc_feature_set = require_features_attr(_cc_feature_set)
|