Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit bd54238d authored by Makoto Onuki's avatar Makoto Onuki Committed by Android (Google) Code Review
Browse files

Merge "[HostStubGen] preserve policy reason in generated jar" into main

parents ec55e7f3 e0a23a40
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -29,4 +29,6 @@ import java.lang.annotation.Target;
public @interface HostStubGenProcessedAsIgnore {
    String CLASS_INTERNAL_NAME = HostTestUtils.getInternalName(HostStubGenProcessedAsIgnore.class);
    String CLASS_DESCRIPTOR = "L" + CLASS_INTERNAL_NAME + ";";

    String reason() default "";
}
+2 −0
Original line number Diff line number Diff line
@@ -32,4 +32,6 @@ import java.lang.annotation.Target;
public @interface HostStubGenProcessedAsKeep {
    String CLASS_INTERNAL_NAME = HostTestUtils.getInternalName(HostStubGenProcessedAsKeep.class);
    String CLASS_DESCRIPTOR = "L" + CLASS_INTERNAL_NAME + ";";

    String reason() default "";
}
+2 −0
Original line number Diff line number Diff line
@@ -33,4 +33,6 @@ public @interface HostStubGenProcessedAsSubstitute {
    String CLASS_INTERNAL_NAME = HostTestUtils.getInternalName(
            HostStubGenProcessedAsSubstitute.class);
    String CLASS_DESCRIPTOR = "L" + CLASS_INTERNAL_NAME + ";";

    String reason() default "";
}
+2 −0
Original line number Diff line number Diff line
@@ -29,4 +29,6 @@ import java.lang.annotation.Target;
public @interface HostStubGenProcessedAsThrow {
    String CLASS_INTERNAL_NAME = HostTestUtils.getInternalName(HostStubGenProcessedAsThrow.class);
    String CLASS_DESCRIPTOR = "L" + CLASS_INTERNAL_NAME + ";";

    String reason() default "";
}
+2 −0
Original line number Diff line number Diff line
@@ -33,4 +33,6 @@ public @interface HostStubGenProcessedAsThrowButSupported {
    String CLASS_INTERNAL_NAME = HostTestUtils.getInternalName(
            HostStubGenProcessedAsThrowButSupported.class);
    String CLASS_DESCRIPTOR = "L" + CLASS_INTERNAL_NAME + ";";

    String reason() default "";
}
Loading