OLD | NEW |
(Empty) | |
| 1 # Proguard configuration that is common for all type of tests. |
| 2 |
| 3 -keepattributes Signature,InnerClasses,SourceFile,LineNumberTable |
| 4 -dontwarn io.netty.** |
| 5 -keep class io.netty.** { *; } |
| 6 -keep class org.chromium.net.smoke.ChromiumNativeTestSupport |
| 7 -keep class org.chromium.net.smoke.ChromiumPlatformOnlyTestSupport |
| 8 |
| 9 # TODO(jbudorick): Remove when crbug.com/488192 is fixed. |
| 10 -dontwarn org.apache.http.** |
| 11 |
| 12 -dontwarn android.support.test.runner.MonitoringInstrumentation |
| 13 |
| 14 # These classes should be explicitly kept to avoid failure if |
| 15 # class/merging/horizontal proguard optimization is enabled. |
| 16 # NOTE: make sure that only test classes are added to this list. |
| 17 -keep class org.chromium.base.test.util.** |
| 18 -keep class org.chromium.net.TestFilesInstaller |
| 19 -keep class org.chromium.net.MetricsTestUtil |
OLD | NEW |