xref: /aosp_15_r20/tools/asuite/atest/proto/file_md5.proto (revision c2e18aaa1096c836b086f94603d04f4eb9cf37f5)
1syntax = "proto3";
2
3enum RootType {
4  SRC_ROOT = 0;
5  RESOURCE_ROOT = 1;
6  ABS_PATH = 2;
7  PRODUCT_OUT = 3;
8}
9
10message FileChecksum {
11  RootType root_type = 1;
12  string rel_path = 2;
13  string md5sum = 3;
14}
15
16message FileChecksumList {
17  repeated FileChecksum file_checksums = 1;
18}
19