xref: /aosp_15_r20/external/autotest/server/hosts/android_constants.py (revision 9c5db1993ded3edbeafc8092d69fe5de2ee02df7)
1# Copyright (c) 2022 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5ANDROID_PHONE_STATION_ATTR = 'phone_station'
6ANDROID_PHONE_STATION_SSH_PORT_ATTR = 'phone_station_ssh_port'
7ANDROID_SERIAL_NUMBER_ATTR = 'android_serial'
8
9ALL_ANDROID_ATTRS = (ANDROID_PHONE_STATION_ATTR,
10                     ANDROID_PHONE_STATION_SSH_PORT_ATTR,
11                     ANDROID_SERIAL_NUMBER_ATTR)
12
13CRITICAL_ANDROID_ATTRS = (ANDROID_PHONE_STATION_ATTR,
14                          ANDROID_SERIAL_NUMBER_ATTR)
15