-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove use of rule.name from cc_test
The pair (resolved .bzl label, rule class name) ought to uniquely identify a starlark-defined rule class. Related: #16301 PiperOrigin-RevId: 475752728 Change-Id: Ie8698f34aa2c27e624276f36b7f4965be637dde9
- Loading branch information
1 parent
36afffa
commit 2cde45e
Showing
7 changed files
with
134 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
src/main/starlark/builtins_bzl/common/cc/cc_test_no_linkstatic.bzl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright 2022 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. | ||
|
||
"""cc_test Starlark implementation.""" | ||
|
||
load(":common/cc/cc_test.bzl", "make_cc_test") | ||
|
||
cc_test = make_cc_test() |
19 changes: 19 additions & 0 deletions
19
src/main/starlark/builtins_bzl/common/cc/cc_test_no_linkstatic_aspects.bzl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright 2022 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. | ||
|
||
"""cc_test Starlark implementation.""" | ||
|
||
load(":common/cc/cc_test.bzl", "make_cc_test") | ||
|
||
cc_test = make_cc_test(with_aspects = True) |
19 changes: 19 additions & 0 deletions
19
src/main/starlark/builtins_bzl/common/cc/cc_test_with_linkstatic.bzl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright 2022 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. | ||
|
||
"""cc_test Starlark implementation.""" | ||
|
||
load(":common/cc/cc_test.bzl", "make_cc_test") | ||
|
||
cc_test = make_cc_test(with_linkstatic = True) |
19 changes: 19 additions & 0 deletions
19
src/main/starlark/builtins_bzl/common/cc/cc_test_with_linkstatic_aspects.bzl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright 2022 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. | ||
|
||
"""cc_test Starlark implementation.""" | ||
|
||
load(":common/cc/cc_test.bzl", "make_cc_test") | ||
|
||
cc_test = make_cc_test(with_linkstatic = True, with_aspects = True) |
45 changes: 45 additions & 0 deletions
45
src/main/starlark/builtins_bzl/common/cc/cc_test_wrapper.bzl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 2022 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. | ||
|
||
"""cc_test Starlark implementation.""" | ||
|
||
load(":common/cc/cc_helper.bzl", "cc_helper") | ||
load(":common/cc/cc_test_no_linkstatic.bzl", _cc_test_no_linkstatic = "cc_test") | ||
load(":common/cc/cc_test_with_linkstatic.bzl", _cc_test_with_linkstatic = "cc_test") | ||
load(":common/cc/cc_test_no_linkstatic_aspects.bzl", _cc_test_no_linkstatic_aspects = "cc_test") | ||
load(":common/cc/cc_test_with_linkstatic_aspects.bzl", _cc_test_with_linkstatic_aspects = "cc_test") | ||
|
||
def cc_test_wrapper(**kwargs): | ||
"""Entry point for cc_test rules. | ||
This avoids propagating aspects on certain attributes if dynamic_deps attribute is unset. | ||
It also serves to detect if the `linkstatic` attribute was explicitly set or not. | ||
This is to workaround a deficiency in Starlark attributes. | ||
(See: https://github.com/bazelbuild/bazel/issues/14434) | ||
Args: | ||
**kwargs: Arguments suitable for cc_test. | ||
""" | ||
|
||
# Propagate an aspect if dynamic_deps attribute is specified. | ||
if "dynamic_deps" in kwargs and cc_helper.is_non_empty_list_or_select(kwargs["dynamic_deps"], "dynamic_deps"): | ||
if "linkstatic" in kwargs: | ||
_cc_test_with_linkstatic_aspects(**kwargs) | ||
else: | ||
_cc_test_no_linkstatic_aspects(**kwargs) | ||
elif "linkstatic" in kwargs: | ||
_cc_test_with_linkstatic(**kwargs) | ||
else: | ||
_cc_test_no_linkstatic(**kwargs) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters