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

Unified Diff: recipe_engine/result.proto

Issue 2802693003: include Package proto into Result proto (Closed)
Patch Set: comment Created 3 years, 8 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
Index: recipe_engine/result.proto
diff --git a/recipe_engine/result.proto b/recipe_engine/result.proto
index 39330d859ba29bc61b412275fa5a87ca19c1dbc9..5affb08af1c2305f053309596c1af24fe888b90c 100644
--- a/recipe_engine/result.proto
+++ b/recipe_engine/result.proto
@@ -1,5 +1,9 @@
syntax = "proto3";
+package recipe_engine;
+
+import "package.proto";
+
// The result of a recipe execution.
message Result {
oneof oneof_result {
@@ -10,6 +14,9 @@ message Result {
// The cause of the failure of a recipe.
Failure failure = 2;
}
+
+ // Description of the recipe's package.
iannucci 2017/04/05 19:33:53 "Initial recipe repo's package spec (recipes.cfg)"
+ Package recipe_package = 3;
}
message Failure {

Powered by Google App Engine
This is Rietveld 408576698