1# File containing standard options to HostStubGen 2 3--debug 4 5# Uncomment below lines to enable each feature. 6 7#--default-method-call-hook 8# com.android.hoststubgen.hosthelper.HostTestUtils.logMethodCall 9#--default-class-load-hook 10# com.android.hoststubgen.hosthelper.HostTestUtils.logClassLoaded 11 12# Standard annotations. 13# Note, each line is a single argument, so we need newlines after each `--xxx-annotation`. 14 15--keep-annotation 16 android.hosttest.annotation.HostSideTestKeep 17 18--keep-class-annotation 19 android.hosttest.annotation.HostSideTestWholeClassKeep 20 21--throw-annotation 22 android.hosttest.annotation.HostSideTestThrow 23 24--remove-annotation 25 android.hosttest.annotation.HostSideTestRemove 26 27--ignore-annotation 28 android.hosttest.annotation.HostSideTestIgnore 29 30--substitute-annotation 31 android.hosttest.annotation.HostSideTestSubstitute 32 33--redirect-annotation 34 android.hosttest.annotation.HostSideTestRedirect 35 36--redirection-class-annotation 37 android.hosttest.annotation.HostSideTestRedirectionClass 38 39--class-load-hook-annotation 40 android.hosttest.annotation.HostSideTestClassLoadHook 41 42--keep-static-initializer-annotation 43 android.hosttest.annotation.HostSideTestStaticInitializerKeep 44