• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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