blob: 51c004cbec0158b649cf865d52c92a7a0cf93139 [file] [log] [blame]
# Any targets that should be shared between fbcode and xplat must be defined in
# targets.bzl. This file can contain fbcode-only targets.
load("@fbsource//xplat/executorch/build:runtime_wrapper.bzl", "runtime")
load(":targets.bzl", "define_common_targets")
oncall("executorch")
define_common_targets()
runtime.python_library(
name = "bundled_program_schema_py",
srcs = [
"__init__.py",
"bundled_program_schema.py",
],
visibility = [
"//executorch/devtools/bundled_program/...",
"//executorch/devtools/etrecord/...",
],
deps = [
"//executorch/exir:scalar_type",
],
)