1// Copyright 2021 The ChromiumOS Authors 2// Use of this source code is governed by a BSD-style license that can be 3// found in the LICENSE file. 4 5syntax = "proto3"; 6 7package chromiumos.test.artifact; 8 9option go_package = "go.chromium.org/chromiumos/config/go/test/artifact"; 10 11import "chromiumos/test/api/v1/plan.proto"; 12 13// Captures artifact for test plans. 14// NEXT TAG: 2 15message TestPlanArtifact { 16 17 // Captures hardware test plans 18 repeated chromiumos.test.api.v1.HWTestPlan hw_test_plans = 1; 19} 20