blob: 78c268e0de77350d8fd2c10a31836db849aa30d1 [file] [log] [blame]
// Copyright 2020 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
package build
// Tool represents a host tool in the build.
type Tool struct {
// Name is the canonical name of the image.
Name string `json:"name"`
// Path is relative path to the tool within the build directory.
Path string `json:"path"`
// OS is the operating system the tool is meant to run on.
OS string
// CPU is the architecture the tool is meant to run on.
CPU string
}