Merge "Add comments to ninja_metrics.proto" am: 511583f2b3 am: 05a56ece6d am: ef0ca87692 am: 2c974958a0

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

Change-Id: I1eadd065f300ddf2f2eb980f1c3f1b4ea1be6ba8
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Treehugger Robot
2022-09-13 04:55:51 +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;
}
}