Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(60)

Side by Side Diff: chrome/android/webapk/shell_apk/proguard.flags

Issue 1965583002: Move //webapk to //chrome/android/webapk (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # Keep line number information, useful for stack traces. 1 # Keep line number information, useful for stack traces.
2 -keepattributes SourceFile,LineNumberTable 2 -keepattributes SourceFile,LineNumberTable
3 3
4 # Keep the annotations. 4 # Keep the annotations.
5 -keep @interface *** 5 -keep @interface ***
6 6
7 # Disable obfuscation for the following package. 7 # Disable obfuscation for the following package.
8 -keepnames class org.chromium.** { 8 -keepnames class org.chromium.** {
9 *; 9 *;
10 } 10 }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 -dontwarn android.support.** 54 -dontwarn android.support.**
55 55
56 # Everything below this is kept because they are referenced by the test APK. 56 # Everything below this is kept because they are referenced by the test APK.
57 -dontwarn javax.annotation.Nullable 57 -dontwarn javax.annotation.Nullable
58 58
59 # TODO(aurimas): remove this when Google Play Services no longer uses setLatestE ventInfo call 59 # TODO(aurimas): remove this when Google Play Services no longer uses setLatestE ventInfo call
60 # that was deprecated in Android M. It is save to suppress this according to b/1 8510449. 60 # that was deprecated in Android M. It is save to suppress this according to b/1 8510449.
61 -dontwarn android.app.Notification 61 -dontwarn android.app.Notification
62 62
63 -dontwarn android.net.http.SslCertificate 63 -dontwarn android.net.http.SslCertificate
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698