Make all .pyi.in files exportable from torch/_C/ folder (#74962)

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)
This commit is contained in:
Nikita Shulga
2022-03-31 05:46:35 -07:00
committed by PyTorch MergeBot
parent fa1a41ca71
commit a78eb243ad

6
torch/_C/build.bzl Normal file
View File

@ -0,0 +1,6 @@
def define_targets(rules):
rules.filegroup(
name = "pyi.in",
srcs = rules.glob(["*.pyi.in"]),
visibility = ["//visibility:public"],
)