Skip to content

Commit

Permalink
Internal change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 702979026
  • Loading branch information
houshian authored and copybara-github committed Dec 5, 2024
1 parent ad3bda7 commit bc3d571
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/java/com/google/devtools/mobileharness/api/messaging/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,19 @@ java_library(
],
deps = [
"@com_google_protobuf//:protobuf_java",
"@maven//:com_google_errorprone_error_prone_annotations",
],
)

java_library(
name = "messaging_util",
srcs = [
"MessagingUtil.java",
],
deps = [
":exception",
"//src/devtools/mobileharness/api/messaging:messaging_java_proto",
"//src/java/com/google/devtools/mobileharness/infra/controller/messaging:messaging_manager_holder",
],
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@

package com.google.devtools.mobileharness.api.messaging;

import com.google.errorprone.annotations.Keep;
import java.lang.annotation.Documented;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down Expand Up @@ -55,4 +56,5 @@
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
@Documented
@Keep
public @interface SubscribeMessage {}

0 comments on commit bc3d571

Please sign in to comment.