| // Copyright (c) 2022, the Dart project 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 = "proto3"; |
| |
| package recipes.dart.release.sdk; |
| |
| |
| message BuildOptions { |
| // Architectures to build. |
| repeated string archs = 1; |
| |
| // Additional arguments to build.py. |
| repeated string args = 2; |
| |
| // Whether to disable generating the BCID provenance. |
| bool disable_bcid = 3; |
| |
| // Build dartdocs on this architecture if set. |
| string dartdoc_arch = 4; |
| } |