8000 feat: add public entry point for PyCcLinkParamsInfo · bazel-contrib/rules_python@aace4a4 · GitHub
[go: up one dir, main page]

Skip to content

Commit aace4a4

Browse files
committed
feat: add public entry point for PyCcLinkParamsInfo
This provides a public entry point for loading the underlying `PyCcLinkParamsProvider` provider that is built into Bazel. This provider isn't yet usable from Bazel, but adding a loadable way for it to migrate off the built-in rules is the first step. Work towards #1069
1 parent 756264a commit aace4a4

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

python/BUILD.bazel

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,11 @@ bzl_library(
7979
deps = ["//python/private:reexports_bzl"],
8080
)
8181

82+
bzl_library(
83+
name = "py_cc_link_params_info_bzl",
84+
srcs = ["py_cc_link_params_info.bzl"],
85+
)
86+
8287
bzl_library(
8388
name = "py_import_bzl",
8489
srcs = ["py_import.bzl"],

tests/BUILD.bazel

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ build_test(
2020
"//python:defs_bzl",
2121
"//python:proto_bzl",
2222
"//python:py_binary_bzl",
23+
"//python:py_cc_link_params_info_bzl",
2324
"//python:py_import_bzl",
2425
"//python:py_info_bzl",
2526
"//python:py_library_bzl",

0 commit comments

Comments
 (0)
0