File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
src/main/starlark/builtins_bzl/common/cc Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -824,6 +824,10 @@ def _implementation_deps_allowed_by_allowlist(*, ctx):
824
824
cc_common_internal .check_private_api (allowlist = _PRIVATE_STARLARKIFICATION_ALLOWLIST )
825
825
return cc_common_internal .implementation_deps_allowed_by_allowlist (ctx = ctx )
826
826
827
+ def _get_cc_native_library_info_provider ():
828
+ cc_common_internal .check_private_api (allowlist = _PRIVATE_STARLARKIFICATION_ALLOWLIST )
829
+ return CcNativeLibraryInfo
830
+
827
831
def _get_artifact_name_for_category (* , cc_toolchain , category , output_name ):
828
832
cc_common_internal .check_private_api (allowlist = _PRIVATE_STARLARKIFICATION_ALLOWLIST )
829
833
return _builtins .internal .cc_internal .get_artifact_name_for_category (
@@ -905,6 +909,7 @@ cc_common = struct(
905
909
implementation_deps_allowed_by_allowlist = _implementation_deps_allowed_by_allowlist ,
906
910
CcSharedLibraryHintInfo = CcSharedLibraryHintInfo ,
907
911
build_extra_link_time_libraries = build_libraries ,
912
+ get_cc_native_library_info_provider = _get_cc_native_library_info_provider ,
908
913
get_artifact_name_for_category = _get_artifact_name_for_category ,
909
914
absolute_symlink = _absolute_symlink ,
910
915
objc_expand_and_tokenize = _objc_expand_and_tokenize ,
You can’t perform that action at this time.
0 commit comments