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 out: [ 12 {%- for out in outs %} 13 "{{ out }}", 14 {%- endfor %} 15 ], 16 tools: [ 17 {%- for tool in tools %} 18 "{{ tool }}", 19 {%- endfor %} 20 ], 21 {% if export %} 22 export_include_dirs: [ 23 {% for export_include_dir in export_include_dirs %} 24 "{{ export_include_dir }}", 25 {% endfor %} 26 ], 27 {% endif %} 28 cmd: "{{ cmd }}" 29} 30