Skip to content

Commit 8a4310e

Browse files
allevatoswiple-rules-gardener
authored andcommitted
No public description
PiperOrigin-RevId: 750985667
1 parent a3daf67 commit 8a4310e

File tree

5 files changed

+1
-17
lines changed

5 files changed

+1
-17
lines changed

swift/swift_binary.bzl

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414

1515
"""Implementation of the `swift_binary` rule."""
1616

17-
load("@bazel_skylib//lib:dicts.bzl", "dicts")
1817
load(
1918
"@build_bazel_rules_swift//swift/internal:binary_attrs.bzl",
2019
"binary_rule_attrs",
@@ -226,13 +225,7 @@ def _swift_binary_impl(ctx):
226225
return providers
227226

228227
swift_binary = rule(
229-
attrs = dicts.add(
230-
binary_rule_attrs(stamp_default = -1),
231-
{
232-
# TODO(b/301253335): Enable AEGs and switch from `swift` exec_group to swift `toolchain` param.
233-
"_use_auto_exec_groups": attr.bool(default = False),
234-
},
235-
),
228+
attrs = binary_rule_attrs(stamp_default = -1),
236229
doc = """\
237230
Compiles and links Swift code into an executable binary.
238231

swift/swift_compiler_plugin.bzl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -208,8 +208,6 @@ swift_compiler_plugin = rule(
208208
stamp_default = 0,
209209
),
210210
{
211-
# TODO(b/301253335): Enable AEGs and switch from `swift` exec_group to swift `toolchain` param.
212-
"_use_auto_exec_groups": attr.bool(default = False),
213211
},
214212
),
215213
doc = """\

swift/swift_library.bzl

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -287,9 +287,6 @@ dependent for linking, but artifacts/flags required for compilation (such as
287287
.swiftmodule files, C headers, and search paths) will not be propagated.
288288
""",
289289
),
290-
# TODO(b/301253335): Once AEGs are enabled in Bazel, set the swift toolchain type in the
291-
# exec configuration of `plugins` attribute and enable AEGs in swift_library.
292-
"_use_auto_exec_groups": attr.bool(default = False),
293290
},
294291
),
295292
doc = """\

swift/swift_test.bzl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -522,8 +522,6 @@ environment when the test is executed by `bazel test`.
522522
"@build_bazel_rules_swift//tools/test_observer",
523523
],
524524
),
525-
# TODO(b/301253335): Enable AEGs and switch from `swift` exec_group to swift `toolchain` param.
526-
"_use_auto_exec_groups": attr.bool(default = False),
527525
},
528526
),
529527
doc = """\

swift/toolchains/xcode_swift_toolchain.bzl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -924,8 +924,6 @@ for incremental compilation using a persistent mode.
924924
fragment = "apple",
925925
),
926926
),
927-
# TODO(b/301253335): Enable AEGs later.
928-
"_use_auto_exec_groups": attr.bool(default = False),
929927
},
930928
),
931929
doc = "Represents a Swift compiler toolchain provided by Xcode.",

0 commit comments

Comments
 (0)