mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
Summary: Pull Request resolved: https://github.com/pytorch/pytorch/pull/74962 This would eliminate the need for build system changes when new .pyi.in files is added Test Plan: CI Reviewed By: seemethere Differential Revision: D35255502 fbshipit-source-id: 9aa84d2fc0f7933293cac4c6588da72a9d649df0 (cherry picked from commit 4931ec5411362692427adca348f409ce4d2a01fc)
7 lines
166 B
Python
7 lines
166 B
Python
def define_targets(rules):
|
|
rules.filegroup(
|
|
name = "pyi.in",
|
|
srcs = rules.glob(["*.pyi.in"]),
|
|
visibility = ["//visibility:public"],
|
|
)
|