xref: /aosp_15_r20/external/pytorch/torchgen/BUCK.oss (revision da0073e96a02ea20f0ac840b70461e3646d07c45)
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