From 8e0560c60165fdbc51a881f8c3ab1cb41e53eed8 Mon Sep 17 00:00:00 2001 From: Justin Yun Date: Tue, 13 Sep 2022 09:57:04 +0900 Subject: [PATCH] Add comments to ninja_metrics.proto Bug: 241033491 Test: na Change-Id: I421189fbcdd05f5d7b7e20e1a772c23abfd37f1e --- .../ninja_metrics_proto/ninja_metrics.proto | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/tools/ninja_dependency_analysis/ninja_metrics_proto/ninja_metrics.proto b/tools/ninja_dependency_analysis/ninja_metrics_proto/ninja_metrics.proto index f6294f07a..dafe91b2d 100644 --- a/tools/ninja_dependency_analysis/ninja_metrics_proto/ninja_metrics.proto +++ b/tools/ninja_dependency_analysis/ninja_metrics_proto/ninja_metrics.proto @@ -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; -} \ No newline at end of file +}