1# Any targets that should be shared between fbcode and xplat must be defined in 2# targets.bzl. This file can contain fbcode-only targets. 3 4load("@fbcode_macros//build_defs:python_library.bzl", "python_library") 5load(":targets.bzl", "define_common_targets") 6 7oncall("executorch") 8 9define_common_targets() 10 11python_library( 12 name = "lib", 13 srcs = [ 14 "__init__.py", 15 ], 16 deps = [ 17 "//executorch/extension/training/pybindings:_training_lib", 18 "//executorch/extension/training/pybindings:_training_module", 19 ], 20) 21