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