Skip to content

Commit 056b7dc

Browse files
committed
cleanup: remove support for extra actions
1 parent cebfc9d commit 056b7dc

File tree

2 files changed

+0
-16
lines changed

2 files changed

+0
-16
lines changed

python/private/py_executable.bzl

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1848,14 +1848,6 @@ def _create_providers(
18481848
imports = imports,
18491849
)
18501850

1851-
# TODO(b/253059598): Remove support for extra actions; https://github.com/bazelbuild/bazel/issues/16455
1852-
listeners_enabled = _py_builtins.are_action_listeners_enabled(ctx)
1853-
if listeners_enabled:
1854-
_py_builtins.add_py_extra_pseudo_action(
1855-
ctx = ctx,
1856-
dependency_transitive_python_sources = deps_transitive_sources,
1857-
)
1858-
18591851
providers.append(py_info)
18601852
if builtin_py_info:
18611853
providers.append(builtin_py_info)

python/private/py_library.bzl

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -175,14 +175,6 @@ def py_library_impl(ctx, *, semantics):
175175
venv_symlinks = venv_symlinks,
176176
)
177177

178-
# TODO(b/253059598): Remove support for extra actions; https://github.com/bazelbuild/bazel/issues/16455
179-
listeners_enabled = _py_builtins.are_action_listeners_enabled(ctx)
180-
if listeners_enabled:
181-
_py_builtins.add_py_extra_pseudo_action(
182-
ctx = ctx,
183-
dependency_transitive_python_sources = deps_transitive_sources,
184-
)
185-
186178
providers = [
187179
DefaultInfo(files = default_outputs, runfiles = runfiles),
188180
py_info,

0 commit comments

Comments
 (0)