From c04d2f04b13a4b8485082ae7f95d1b0cf5f03b14 Mon Sep 17 00:00:00 2001 From: OmniLab Team Date: Mon, 21 Sep 2026 01:09:15 -0700 Subject: [PATCH] Add DjarControl proto message to communication.proto. PiperOrigin-RevId: 985092345 --- .../mobileharness/shared/proto/communication.proto | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/java/com/google/wireless/qa/mobileharness/shared/proto/communication.proto b/src/java/com/google/wireless/qa/mobileharness/shared/proto/communication.proto index 533a288679..65ef035e57 100644 --- a/src/java/com/google/wireless/qa/mobileharness/shared/proto/communication.proto +++ b/src/java/com/google/wireless/qa/mobileharness/shared/proto/communication.proto @@ -92,6 +92,8 @@ message Communication { VIDEO video = 5; // New communication type for goldfish emulator control GoldfishEmulatorControl goldfish_emulator_control = 6; + // New communication type for dJar controller control + DjarControl djar_control = 7; } } @@ -106,6 +108,17 @@ message GoldfishEmulatorControl { } } +// New message to support dJar controller control +message DjarControl { + oneof port { + // The name of the port, originating from LHP's port registry. + string port_name = 1; + + // The direct port number if available. + int32 port_number = 2; + } +} + message CommunicationList { repeated Communication communication = 1; }