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