blob: c24c6463f5b1aed1f8957646bd669ed962667f08 [file] [log] [blame]
// 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;
}