| // Copyright 2019 The Flutter Authors. All rights reserved. | |
| // Use of this source code is governed by a BSD-style license that can be | |
| // found in the LICENSE file. | |
| syntax = "proto2"; | |
| enum EnumBuildStatus { | |
| success = 1; | |
| failure = 2; | |
| } | |
| message BuildStatusResponse { | |
| optional EnumBuildStatus build_status = 1; | |
| repeated string failing_tasks = 2; | |
| } |