File tree 1 file changed +23
-0
lines changed
src/devtools/mobileharness/api/deviceconfig/proto
1 file changed +23
-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 detector specifications of the lab.
40
+ DetectorSpecs detector_specs = 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,26 @@ message OverSshDevice {
80
83
string ssh_device_type = 4 ;
81
84
}
82
85
86
+ // The configuration of a device type.
87
+ message DetectorSpecs {
88
+ ManekiDetectorSpecs maneki_detector_specs = 1 ;
89
+
90
+ message ManekiDetectorSpecs {
91
+ repeated ManekiAndroidDeviceDiscoverySpec
92
+ maneki_android_device_discovery_spec = 1;
93
+ repeated ManekiRokuDeviceDiscoverySpec maneki_roku_device_discovery_spec =
94
+ 2;
95
+
96
+ message ManekiAndroidDeviceDiscoverySpec {
97
+ string mac_address = 1 ;
98
+ }
99
+
100
+ message ManekiRokuDeviceDiscoverySpec {
101
+ string mac_address = 1 ;
102
+ }
103
+ }
104
+ }
105
+
83
106
// The configuration of an USB device.
84
107
message UsbDevice {
85
108
// Device ID in the format of "idVendor:idProduct", e.g. "0403:0001".
You can’t perform that action at this time.
0 commit comments