• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{# Copyright © 2024 Google Inc.
2   SPDX-License-Identifier: MIT
3#}
4genrule(
5  name = "{{ name }}",
6  srcs = [
7  {%- for src in srcs %}
8    "{{ src }}",
9  {%- endfor %}
10  ],
11  outs = [
12  {%- for out in outs %}
13    "{{ out }}",
14  {%- endfor %}
15  ],
16  tools = [
17  {%- for tool in tools %}
18    "{{ tool }}",
19  {%- endfor %}
20  ],
21  cmd = "{{ cmd }}"
22)
23