File tree 1 file changed +15
-0
lines changed
src/devtools/mobileharness/api/deviceconfig/proto
1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -36,6 +36,9 @@ message LabConfig {
36
36
// by default, in the format of "ip, username, password".
37
37
repeated OverSshDevice over_ssh = 6 ;
38
38
39
+ // The device type of the lab.
40
+ repeated DeviceType device_type = 13 ;
41
+
39
42
// The UUID of devices which will be monitored by the lab.
40
43
repeated string monitored_device_uuid = 3 ;
41
44
@@ -80,6 +83,18 @@ message OverSshDevice {
80
83
string ssh_device_type = 4 ;
81
84
}
82
85
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
+
83
98
// The configuration of an USB device.
84
99
message UsbDevice {
85
100
// Device ID in the format of "idVendor:idProduct", e.g. "0403:0001".
You can’t perform that action at this time.
0 commit comments