Merge "Add comments to ninja_metrics.proto" am: 511583f2b3

Original change: https://android-review.googlesource.com/c/platform/development/+/2216241

Change-Id: I85cb5832401620a284dc1559038a368deece69c0
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2022-09-13 02:57:07 +00:00
committed by Automerger Merge Worker

View File

@@ -16,13 +16,26 @@ syntax = "proto3";
package ninja_metrics;
// NinjaMetrics is to deliver the information of input files to build a target
// device or an image. These information is captured from ninja analysis
message NinjaMetrics {
// Total number of input files to build a target or an image
uint32 num_input_files = 1;
// The number of git projects that need to be checked out to build a target
// or an image
uint32 num_projects = 2;
// Details of the all required git projects
repeated ProjectInfo project_infos = 3;
}
// ProjectInfo is to describe each git project
message ProjectInfo {
// Path of the git project
string name = 1;
// The number of required files in the git project to build a target or an
// image
uint32 num_input_files = 2;
}
}