mirror of
https://github.com/pytorch/pytorch.git
synced 2025-10-20 12:54:11 +08:00
Summary: All buck targets that points to caffe2/tools folder are now moved to tools/BUCK. This also eliminates all python library/binary import in pt_defs.bzl, which caused T124308913. Test Plan: CI Differential Revision: D37468313 Pull Request resolved: https://github.com/pytorch/pytorch/pull/80408 Approved by: https://github.com/seemethere, https://github.com/malfet
11 lines
284 B
Plaintext
11 lines
284 B
Plaintext
load("//:buckbuild.bzl", "third_party")
|
|
load(":BUCK.bzl", "define_tools_targets")
|
|
|
|
define_tools_targets(
|
|
python_binary = python_binary,
|
|
python_library = python_library,
|
|
python_test = python_test,
|
|
third_party = third_party,
|
|
torchgen_deps = "//torchgen:torchgen",
|
|
)
|