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("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime") 5load(":targets.bzl", "define_common_targets") 6 7oncall("executorch") 8 9define_common_targets() 10 11runtime.python_library( 12 name = "bundled_program_schema_py", 13 srcs = [ 14 "__init__.py", 15 "bundled_program_schema.py", 16 ], 17 visibility = [ 18 "//executorch/devtools/bundled_program/...", 19 "//executorch/devtools/etrecord/...", 20 ], 21 deps = [ 22 "//executorch/exir:scalar_type", 23 ], 24) 25