summaryrefslogtreecommitdiff
path: root/android/config.go
diff options
context:
space:
mode:
author Treehugger Robot <android-test-infra-autosubmit@system.gserviceaccount.com> 2025-01-13 22:37:06 -0800
committer Gerrit Code Review <noreply-gerritcodereview@google.com> 2025-01-13 22:37:06 -0800
commit9eb3f2e1779a6c925c7109636133a47cdf4b5d99 (patch)
tree7876c6b27a253c9282e5caf76036b4b5d998d71b /android/config.go
parent3fa68093a5e366437fcfe8feb84428a9d2a9eea1 (diff)
parent8ec5f61a0293330dc75e1a68a4a887dcd0842a5a (diff)
Merge "Add property Optimize.Keep_runtime_invisible_annotations" into main
Diffstat (limited to 'android/config.go')
-rw-r--r--android/config.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/android/config.go b/android/config.go
index 87aacd5cb..407156df6 100644
--- a/android/config.go
+++ b/android/config.go
@@ -2175,6 +2175,10 @@ func (c *config) UseTransitiveJarsInClasspath() bool {
return c.productVariables.GetBuildFlagBool("RELEASE_USE_TRANSITIVE_JARS_IN_CLASSPATH")
}
+func (c *config) UseR8OnlyRuntimeVisibleAnnotations() bool {
+ return c.productVariables.GetBuildFlagBool("RELEASE_R8_ONLY_RUNTIME_VISIBLE_ANNOTATIONS")
+}
+
func (c *config) UseR8StoreStoreFenceConstructorInlining() bool {
return c.productVariables.GetBuildFlagBool("RELEASE_R8_STORE_STORE_FENCE_CONSTRUCTOR_INLINING")
}