Makoto Onuki | 8558e9a | 2023-08-31 10:48:38 -0700 | [diff] [blame] | 1 | # File containing standard options to HostStubGen |
| 2 | |
| 3 | --debug |
| 4 | |
| 5 | # Uncomment below lines to enable each feature. |
Makoto Onuki | 8558e9a | 2023-08-31 10:48:38 -0700 | [diff] [blame] | 6 | |
Makoto Onuki | bf6dd09 | 2023-09-26 16:31:33 -0700 | [diff] [blame] | 7 | #--default-method-call-hook |
| 8 | # com.android.hoststubgen.hosthelper.HostTestUtils.logMethodCall |
| 9 | #--default-class-load-hook |
| 10 | # com.android.hoststubgen.hosthelper.HostTestUtils.logClassLoaded |
Makoto Onuki | 8558e9a | 2023-08-31 10:48:38 -0700 | [diff] [blame] | 11 | |
| 12 | # Standard annotations. |
| 13 | # Note, each line is a single argument, so we need newlines after each `--xxx-annotation`. |
Makoto Onuki | 8558e9a | 2023-08-31 10:48:38 -0700 | [diff] [blame] | 14 | |
| 15 | --keep-annotation |
| 16 | android.hosttest.annotation.HostSideTestKeep |
| 17 | |
Makoto Onuki | 8558e9a | 2023-08-31 10:48:38 -0700 | [diff] [blame] | 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 | |
John Wu | 9834616 | 2024-09-26 22:59:40 +0000 | [diff] [blame] | 27 | --ignore-annotation |
| 28 | android.hosttest.annotation.HostSideTestIgnore |
| 29 | |
Makoto Onuki | 8558e9a | 2023-08-31 10:48:38 -0700 | [diff] [blame] | 30 | --substitute-annotation |
| 31 | android.hosttest.annotation.HostSideTestSubstitute |
| 32 | |
John Wu | 9834616 | 2024-09-26 22:59:40 +0000 | [diff] [blame] | 33 | --redirect-annotation |
| 34 | android.hosttest.annotation.HostSideTestRedirect |
| 35 | |
| 36 | --redirection-class-annotation |
| 37 | android.hosttest.annotation.HostSideTestRedirectionClass |
Makoto Onuki | 8558e9a | 2023-08-31 10:48:38 -0700 | [diff] [blame] | 38 | |
| 39 | --class-load-hook-annotation |
| 40 | android.hosttest.annotation.HostSideTestClassLoadHook |
Jeff Sharkey | 9701499 | 2023-11-01 16:51:35 -0600 | [diff] [blame] | 41 | |
Makoto Onuki | cedc08b | 2023-11-10 10:55:13 -0800 | [diff] [blame] | 42 | --keep-static-initializer-annotation |
| 43 | android.hosttest.annotation.HostSideTestStaticInitializerKeep |