@@ -1292,7 +1292,6 @@ def py_executable_base_impl(ctx, *, semantics, is_test, inherited_environment =
12921292
12931293 return providers
12941294
1295-
12961295def _get_build_info (ctx , cc_toolchain ):
12971296 build_info_files = py_internal .cc_toolchain_build_info_files (cc_toolchain )
12981297 if cc_helper .is_stamping_enabled (ctx ):
@@ -1921,6 +1920,7 @@ def _add_provider_py_runtime_info(providers, runtime_details):
19211920 providers: list of providers to append to.
19221921 runtime_details: struct of runtime information; see _get_runtime_details()
19231922 """
1923+
19241924 # TODO - The effective runtime can be None for Windows + auto detecting toolchain.
19251925 # This can be removed once that's fixed; see maybe_get_runtime_from_ctx().
19261926 if runtime_details .effective_runtime :
@@ -1956,6 +1956,7 @@ def _add_provider_py_cc_link_params_info(providers, cc_info):
19561956 PyCcLinkParamsInfo. Note that only the linking information
19571957 is propagated, not the whole CcInfo.
19581958 """
1959+
19591960 # TODO(b/163083591): Remove the PyCcLinkParamsInfo once binaries-in-deps
19601961 # are cleaned up.
19611962 if cc_info :
@@ -2018,7 +2019,6 @@ def _add_provider_output_group_info(providers, py_info, output_groups):
20182019 """
20192020 providers .append (create_output_group_info (py_info .transitive_sources , output_groups ))
20202021
2021-
20222022def _add_config_setting_defaults (kwargs ):
20232023 config_settings = kwargs .get ("config_settings" , None )
20242024 if config_settings == None :
0 commit comments