• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
3load("@fbcode_macros//build_defs:python_binary.bzl", "python_binary")
4
5python_binary(
6    name = "export",
7    srcs = [
8        "export.py",
9    ],
10    main_function = "executorch.examples.apple.coreml.scripts.export.main",
11    deps = [
12        "//executorch/backends/apple/coreml:backend",
13        "//executorch/backends/apple/coreml:partitioner",
14        "//executorch/backends/apple/coreml:quantizer",
15        "//executorch/devtools/etrecord:etrecord",
16        "//executorch/examples/models:models",
17    ],
18)
19