• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.api;
8
9option go_package = "go.chromium.org/chromiumos/config/go/test/api";
10
11// Defines API for common chameleon client libraries that are shared
12// across different test harnesses/content (e.g. tast, tauto, ...).
13service ChameleonLibService {
14  // Verifies the connection/status of the chameleon device
15  rpc CheckChameleonHealth(CheckChameleonHealthRequest)
16      returns (stream CheckChameleonHealthResponse);
17}
18
19message CheckChameleonHealthRequest {
20}
21message CheckChameleonHealthResponse {
22}
23