Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(480)

Unified Diff: recipe_engine/result.proto

Issue 2802693003: include Package proto into Result proto (Closed)
Patch Set: rebased and addressed comments Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « recipe_engine/package.py ('k') | recipe_engine/result_pb2.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: recipe_engine/result.proto
diff --git a/recipe_engine/result.proto b/recipe_engine/result.proto
index 050e36e2b947d6531fb3f9172f1b076c52d10294..86daa3fba7aef63336bcc2ae9b2945a42dfc6078 100644
--- a/recipe_engine/result.proto
+++ b/recipe_engine/result.proto
@@ -2,6 +2,8 @@ syntax = "proto3";
package recipe_engine;
+import "package.proto";
+
// The result of a recipe execution.
message Result {
oneof oneof_result {
@@ -12,6 +14,9 @@ message Result {
// The cause of the failure of a recipe.
Failure failure = 2;
}
+
+ // Initial recipe repo's package spec (recipes.cfg).
+ Package recipe_package = 3;
}
message Failure {
« no previous file with comments | « recipe_engine/package.py ('k') | recipe_engine/result_pb2.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698