Skip to content

Commit 4677fc7

Browse files
DeviceInfracopybara-github
DeviceInfra
authored andcommitted
Internal change
PiperOrigin-RevId: 748600406
1 parent eb2cb80 commit 4677fc7

File tree

1 file changed

+15
-0
lines changed
  • src/devtools/mobileharness/api/deviceconfig/proto

1 file changed

+15
-0
lines changed

src/devtools/mobileharness/api/deviceconfig/proto/lab.proto

+15
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,9 @@ message LabConfig {
3636
// by default, in the format of "ip, username, password".
3737
repeated OverSshDevice over_ssh = 6;
3838

39+
// The device type of the lab.
40+
repeated DeviceType device_type = 13;
41+
3942
// The UUID of devices which will be monitored by the lab.
4043
repeated string monitored_device_uuid = 3;
4144

@@ -80,6 +83,18 @@ message OverSshDevice {
8083
string ssh_device_type = 4;
8184
}
8285

86+
// The configuration of a device type.
87+
message DeviceType {
88+
oneof device_type {
89+
LivingRoomAndroidNetworkDevice living_room_android_via_network_device = 1;
90+
}
91+
}
92+
93+
// The configuration of a living room android via network device.
94+
message LivingRoomAndroidNetworkDevice {
95+
string mac_address = 2;
96+
}
97+
8398
// The configuration of an USB device.
8499
message UsbDevice {
85100
// Device ID in the format of "idVendor:idProduct", e.g. "0403:0001".

0 commit comments

Comments
 (0)