• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2024 The Chromium Authors
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5syntax = "proto3";
6package domatolpm.generated.{{template_name}};
7
8{% for grammar in grammars %}
9import "{{template_path}}/{{grammar['proto_type']}}.proto";
10{% endfor %}
11
12message fuzzcase {
13{% for grammar in grammar_elements|rejectattr("is_str") %}
14  domatolpm.generated.{{grammar['proto_type']}}.fuzzcase {{grammar['proto_field_name']}} = {{loop.index}};
15{% endfor %}
16}
17