# Any targets that should be shared between fbcode and xplat must be defined in # targets.bzl. This file can contain fbcode-only targets. load("@fbcode_macros//build_defs:python_binary.bzl", "python_binary") python_binary( name = "export", srcs = [ "export.py", ], main_function = "executorch.examples.apple.coreml.scripts.export.main", deps = [ "//executorch/backends/apple/coreml:backend", "//executorch/backends/apple/coreml:partitioner", "//executorch/backends/apple/coreml:quantizer", "//executorch/devtools/etrecord:etrecord", "//executorch/examples/models:models", ], )