We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de3ba93 commit a6cc07dCopy full SHA for a6cc07d
1 file changed
src/java/com/google/wireless/qa/mobileharness/shared/proto/communication.proto
@@ -90,6 +90,19 @@ message Communication {
90
ADBOverUSB adb_over_usb = 4;
91
// For video device.
92
VIDEO video = 5;
93
+ // New communication type for goldfish emulator control
94
+ GoldfishEmulatorControl goldfish_emulator_control = 6;
95
+ }
96
+}
97
+
98
+// New message to support goldfish emulator control
99
+message GoldfishEmulatorControl {
100
+ oneof port {
101
+ // The name of the port, originating from LHP's port registry.
102
+ string port_name = 1;
103
104
+ // The direct port number if available.
105
+ int32 port_number = 2;
106
}
107
108
0 commit comments