xref: /aosp_15_r20/external/mesa3d/meson_to_hermetic/templates/soong/py_binary.txt (revision 6104692788411f58d303aa86923a9ff6ecaded22)
1{# Copyright © 2024 Google Inc.
2   SPDX-License-Identifier: MIT
3#}
4python_binary_host {
5  name: "{{ name }}",
6  main: "{{ main }}",
7  srcs: [
8  {%- for src in srcs %}
9    "{{ src }}",
10  {%- endfor %}
11  ],
12  libs: ["mako"],
13  version: {
14    py3: {
15      embedded_launcher: false,
16    },
17  },
18}
19