Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 1 | syntax = "proto3"; |
| 2 | |
| 3 | package android.incremental.metadata; |
| 4 | |
| 5 | message BindPoint { |
| 6 | int32 storage_id = 1; |
| 7 | string source_subdir = 2; |
| 8 | string dest_path = 3; |
| 9 | } |
| 10 | |
| 11 | message DataLoader { |
| 12 | string package_name = 1; |
Alex Buynytskyy | 1ecfcec | 2019-12-17 12:10:41 -0800 | [diff] [blame] | 13 | string class_name = 3; |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 14 | string arguments = 2; |
Alex Buynytskyy | 1ecfcec | 2019-12-17 12:10:41 -0800 | [diff] [blame] | 15 | int32 type = 4; |
Songchun Fan | 3c82a30 | 2019-11-29 14:23:45 -0800 | [diff] [blame] | 16 | } |
| 17 | |
| 18 | message Storage { |
| 19 | int32 id = 1; |
| 20 | } |
| 21 | |
| 22 | message Mount { |
| 23 | Storage storage = 1; |
| 24 | DataLoader loader = 2; |
| 25 | } |