• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1python_library(
2    name = "torchgen",
3    srcs = glob(
4        ["**/*.py"],
5    ),
6    base_module = "torchgen",
7    visibility = ["PUBLIC"],
8    deps = [
9        "//third_party:pyyaml",
10        "//third_party:typing-extensions",
11    ],
12)
13
14python_binary(
15    name = "gen",
16    main_module = "torchgen.gen",
17    visibility = [
18        "PUBLIC",
19    ],
20    deps = [
21        ":torchgen",
22    ],
23)
24